.page-promo {
  color: #ffffff; /* Light text for dark body background */
  background-color: transparent; /* Body background from shared.css */
}

.page-promo__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  padding-bottom: 60px;
  overflow: hidden;
}

.page-promo__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.4); /* Darken image slightly for text readability */
}

.page-promo__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
}

.page-promo__hero-title {
  font-size: 3.5em;
  color: #FFFFFF;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-promo__hero-description {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-promo__hero-cta-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-promo__btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
}

.page-promo__btn--primary {
  background-color: #FCBC45; /* Login button color for primary action */
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-promo__btn--primary:hover {
  background-color: #e0a53a;
  transform: translateY(-2px);
}

.page-promo__btn--secondary {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.page-promo__btn--secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

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

.page-promo__section-title {
  font-size: 2.8em;
  color: #FCBC45;
  text-align: center;
  margin-bottom: 25px;
  padding-top: 60px;
  position: relative;
}

.page-promo__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FCBC45;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-promo__section-intro {
  font-size: 1.1em;
  color: #e0e0e0;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

.page-promo__welcome-offer-section, .page-promo__weekly-promotions-section, .page-promo__vip-rewards-section, .page-promo__how-to-claim-section, .page-promo__why-choose-section, .page-promo__responsible-gaming-section, .page-promo__faq-section {
  padding: 80px 0;
  background-color: #000000; /* Use body background for sections */
}

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

.page-promo__offer-card {
  background-color: rgba(255, 255, 255, 0.08); /* Slightly transparent white for cards */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.page-promo__offer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.page-promo__offer-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.page-promo__card-description {
  font-size: 1em;
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 25px;
}

.page-promo__btn--small {
  padding: 10px 20px;
  font-size: 0.95em;
}

.page-promo__section-footer {
  font-size: 1.1em;
  color: #e0e0e0;
  text-align: center;
  margin-top: 50px;
}

.page-promo__text-link {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-promo__text-link:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

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

.page-promo__promo-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.page-promo__promo-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-promo__promo-details {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promo__promo-title {
  font-size: 1.6em;
  color: #FCBC45;
  margin-bottom: 10px;
}

.page-promo__promo-title a {
  color: #FCBC45;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promo__promo-title a:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

.page-promo__promo-description {
  font-size: 1em;
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 20px;
}

.page-promo__vip-image {
  width: 100%;
  max-width: 900px;
  height: auto;
  display: block;
  margin: 40px auto 50px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 2px solid #FCBC45;
}

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

.page-promo__feature-item {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-promo__feature-title {
  font-size: 1.5em;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.page-promo__feature-description {
  color: #cccccc;
  line-height: 1.6;
}

.page-promo__how-to-claim-section .page-promo__section-title, .page-promo__how-to-claim-section .page-promo__section-intro {
  margin-bottom: 30px;
}

.page-promo__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.page-promo__step-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-left: 5px solid #FCBC45;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-promo__step-description {
  color: #cccccc;
  line-height: 1.6;
}

.page-promo__benefits-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-promo__benefit-item {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-promo__benefit-title {
  font-size: 1.5em;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.page-promo__benefit-description {
  color: #cccccc;
  line-height: 1.6;
}

.page-promo__responsible-tips {
  list-style: disc;
  color: #cccccc;
  max-width: 800px;
  margin: 40px auto 0;
  padding-left: 20px;
  font-size: 1.1em;
  line-height: 1.8;
}

.page-promo__responsible-tips li {
  margin-bottom: 10px;
}

.page-promo__faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
}

.page-promo__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.page-promo__faq-question {
  font-size: 1.4em;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.page-promo__faq-answer {
  color: #cccccc;
  line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-promo__hero-title {
    font-size: 3em;
  }

  .page-promo__section-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-promo__hero-section {
    padding-top: var(--header-offset, 120px); /* Ensure mobile header offset */
    padding-bottom: 40px;
  }

  .page-promo__hero-image {
    max-width: 100%;
    height: auto;
  }

  .page-promo__hero-title {
    font-size: 2.5em;
  }

  .page-promo__hero-description {
    font-size: 1em;
  }

  .page-promo__hero-cta-group {
    flex-direction: column;
    gap: 15px;
  }

  .page-promo__btn {
    width: 100%;
    max-width: 300px;
  }

  .page-promo__section-title {
    font-size: 2em;
    padding-top: 40px;
  }

  .page-promo__section-intro {
    font-size: 0.95em;
    margin-bottom: 30px;
  }

  .page-promo__offer-grid, .page-promo__promo-list, .page-promo__vip-features, .page-promo__steps-list, .page-promo__benefits-list {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .page-promo__offer-image, .page-promo__promo-image {
    height: 200px;
  }

  .page-promo__card-title, .page-promo__promo-title, .page-promo__feature-title, .page-promo__step-title, .page-promo__benefit-title, .page-promo__faq-question {
    font-size: 1.3em;
  }

  .page-promo__card-description, .page-promo__promo-description, .page-promo__feature-description, .page-promo__step-description, .page-promo__benefit-description, .page-promo__responsible-tips, .page-promo__faq-answer {
    font-size: 0.9em;
  }

  .page-promo__welcome-offer-section, .page-promo__weekly-promotions-section, .page-promo__vip-rewards-section, .page-promo__how-to-claim-section, .page-promo__why-choose-section, .page-promo__responsible-gaming-section, .page-promo__faq-section {
    padding: 60px 0;
  }

  /* Critical: Mobile image overflow prevention */
  .page-promo img {
    max-width: 100%;
    height: auto;
  }

  .page-promo {
    overflow-x: hidden;
  }
}

@media (max-width: 480px) {
  .page-promo__hero-title {
    font-size: 2em;
  }

  .page-promo__section-title {
    font-size: 1.8em;
  }

  .page-promo__btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-promo__offer-card, .page-promo__promo-item, .page-promo__feature-item, .page-promo__step-item, .page-promo__benefit-item, .page-promo__faq-item {
    padding: 20px;
  }
}