.page-promo {
  background-color: #FFFFFF;
  color: #333333;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-promo__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  color: #FFFFFF; /* Text on hero image should be light */
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  overflow: hidden;
}

.page-promo__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-promo__hero-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-promo__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFFFFF;
}

.page-promo__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 800px;
  color: #F0F0F0;
}

.page-promo__cta-button {
  display: inline-block;
  padding: 15px 30px;
  margin: 10px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-promo__cta-button--register {
  background-color: #FFFFFF;
  color: #000000;
}

.page-promo__cta-button--register:hover {
  background-color: #e0e0e0;
  transform: translateY(-2px);
}

.page-promo__cta-button--login {
  background-color: #FCBC45;
  color: #000000;
}

.page-promo__cta-button--login:hover {
  background-color: #e8a732;
  transform: translateY(-2px);
}

.page-promo__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-promo__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promo__section-subtitle {
  font-size: 1.1em;
  color: #555555;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promo__welcome-bonus-section, .page-promo__daily-weekly-section, .page-promo__loyalty-vip-section, .page-promo__how-to-claim-section, .page-promo__faq-section, .page-promo__cta-banner, .page-promo__responsible-gaming-link {
  padding: 60px 0;
}

.page-promo__welcome-bonus-section {
  background-color: #F8F8F8;
}

.page-promo__promo-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
}

.page-promo__promo-card--reverse {
  flex-direction: row-reverse;
}

.page-promo__promo-image {
  width: 50%;
  height: auto;
  object-fit: cover;
  display: block;
  min-width: 200px; /* Enforce min-width */
  min-height: 200px; /* Enforce min-height */
}

.page-promo__card-content {
  padding: 30px;
  width: 50%;
}

.page-promo__card-title {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promo__card-text {
  font-size: 1em;
  color: #444444;
  margin-bottom: 20px;
}

.page-promo__bonus-features, .page-promo__vip-benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.page-promo__bonus-features li, .page-promo__vip-benefits li {
  margin-bottom: 10px;
  font-size: 1em;
  color: #333333;
  display: flex;
  align-items: center;
}

.page-promo__feature-icon {
  color: #FCBC45;
  margin-right: 10px;
  font-size: 1.2em;
}

.page-promo__claim-button {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-promo__claim-button:hover {
  background-color: #e8a732;
  transform: translateY(-2px);
}

.page-promo__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-promo__promo-grid .page-promo__promo-card {
  flex-direction: column;
  text-align: center;
}

.page-promo__promo-grid .page-promo__promo-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
  min-width: 200px;
  min-height: 200px;
}

.page-promo__promo-grid .page-promo__card-content {
  width: 100%;
  padding: 25px;
}

.page-promo__how-to-claim-section {
  background-color: #F0F0F0;
}

.page-promo__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promo__step-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease;
  border: 1px solid #e0e0e0;
}

.page-promo__step-card:hover {
  transform: translateY(-5px);
}

.page-promo__step-image {
  width: 100%;
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-promo__step-title {
  font-size: 1.4em;
  color: #000000;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promo__step-text {
  font-size: 0.95em;
  color: #555555;
}

.page-promo__cta-button--start {
  background-color: #FCBC45;
  color: #000000;
  margin-top: 40px;
  padding: 15px 35px;
  font-size: 1.2em;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.page-promo__cta-button--start:hover {
  background-color: #e8a732;
  transform: translateY(-2px);
}

.page-promo__faq-section {
  background-color: #FFFFFF;
}

.page-promo__faq-item {
  margin-bottom: 25px;
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 20px;
}

.page-promo__faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.page-promo__faq-question {
  font-size: 1.25em;
  color: #000000;
  cursor: pointer;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promo__faq-answer {
  font-size: 1em;
  color: #555555;
  line-height: 1.8;
  display: none;
}

.page-promo__faq-question.active + .page-promo__faq-answer {
  display: block;
}

.page-promo__view-all-faq-button {
  display: block;
  width: fit-content;
  margin: 40px auto 0 auto;
  background-color: #000000;
  color: #FFFFFF;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-promo__view-all-faq-button:hover {
  background-color: #333333;
  transform: translateY(-2px);
}

.page-promo__cta-banner {
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
  padding: 80px 20px;
}

.page-promo__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFFFFF;
}

.page-promo__cta-text {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #F0F0F0;
}

.page-promo__cta-button--final {
  background-color: #FCBC45;
  color: #000000;
  padding: 18px 45px;
  font-size: 1.3em;
}

.page-promo__cta-button--final:hover {
  background-color: #e8a732;
  transform: translateY(-2px);
}

.page-promo__responsible-gaming-link {
  text-align: center;
  padding: 30px 20px;
  background-color: #F8F8F8;
  border-top: 1px solid #eeeeee;
}

.page-promo__responsible-gaming-text {
  font-size: 0.9em;
  color: #777777;
}

.page-promo__responsible-gaming-anchor {
  color: #000000;
  text-decoration: underline;
  font-weight: bold;
}

.page-promo__responsible-gaming-anchor:hover {
  color: #FCBC45;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promo__hero-title {
    font-size: 2.8em;
  }
  .page-promo__hero-description {
    font-size: 1.1em;
  }
  .page-promo__section-title {
    font-size: 2em;
  }
  .page-promo__promo-card {
    flex-direction: column;
  }
  .page-promo__promo-card--reverse {
    flex-direction: column;
  }
  .page-promo__promo-image,
  .page-promo__card-content {
    width: 100%;
  }
  .page-promo__promo-image {
    border-radius: 12px 12px 0 0;
  }
  .page-promo__promo-grid {
    grid-template-columns: 1fr;
  }
  .page-promo__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-promo__cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-promo__hero-section {
    min-height: 400px;
    padding-top: var(--header-offset, 120px);
  }
  .page-promo__hero-title {
    font-size: 2.2em;
  }
  .page-promo__hero-description {
    font-size: 1em;
  }
  .page-promo__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promo__section-title {
    font-size: 1.8em;
  }
  .page-promo__section-subtitle {
    font-size: 0.95em;
  }
  .page-promo__promo-card {
    margin-bottom: 30px;
  }
  .page-promo__promo-image {
    min-width: 200px; /* Enforce min-width */
    min-height: 200px; /* Enforce min-height */
    max-width: 100%;
    height: auto;
  }
  .page-promo__card-content {
    padding: 20px;
  }
  .page-promo__card-title {
    font-size: 1.5em;
  }
  .page-promo__card-text {
    font-size: 0.9em;
  }
  .page-promo__claim-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-promo__step-card {
    padding: 20px;
  }
  .page-promo__step-image {
    min-width: 200px; /* Enforce min-width */
    min-height: 200px; /* Enforce min-height */
    max-width: 100%;
    height: auto;
  }
  .page-promo__step-title {
    font-size: 1.2em;
  }
  .page-promo__faq-question {
    font-size: 1.1em;
  }
  .page-promo__faq-answer {
    font-size: 0.9em;
  }
  .page-promo__cta-title {
    font-size: 2em;
  }
  .page-promo__cta-text {
    font-size: 1em;
  }
  .page-promo__cta-button--final {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  /* Ensure all images within .page-promo are responsive and don't overflow */
  .page-promo img {
    max-width: 100%;
    height: auto;
  }
}