/* style/promo.css */
.page-promo {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Default text color for dark body background */
  background-color: #0A0A0A; /* Matches body background from shared.css */
}

.page-promo__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.page-promo__dark-bg {
  background-color: #0A0A0A;
  color: #FFF6D6;
}

.page-promo__light-bg {
  background-color: #111111; /* Card BG color for light sections */
  color: #FFF6D6;
}

.page-promo__card {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #FFF6D6;
}

.page-promo__section-title {
  font-size: 2.5em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: #F2C14E;
  line-height: 1.2;
}

.page-promo__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #FFF6D6;
}

.page-promo__hero-section {
  padding-top: var(--header-offset, 120px);
  padding-bottom: 60px;
  background: linear-gradient(135deg, #0A0A0A 0%, #1a1a1a 100%); /* Darker gradient for hero */
  position: relative;
  overflow: hidden;
}

.page-promo__hero-section .page-promo__container {
  display: flex;
  flex-direction: column; /* Image above text */
  align-items: center;
  gap: 40px;
}

.page-promo__hero-image-wrapper {
  width: 100%;
  max-width: 1000px; /* Adjust as needed */
  margin-top: 20px;
}

.page-promo__hero-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-promo__hero-content {
  text-align: center;
  max-width: 800px;
}

.page-promo__hero-title {
  font-size: clamp(2.2em, 5vw, 3.5em);
  font-weight: 900;
  color: #FFD36B; /* Glow */
  margin-bottom: 15px;
  text-shadow: 0 0 10px rgba(255, 211, 107, 0.5);
  line-height: 1.2;
}

.page-promo__hero-description {
  font-size: 1.2em;
  color: #FFF6D6;
  margin-bottom: 30px;
}

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

.page-promo__btn-primary,
.page-promo__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-promo__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #0A0A0A;
  border: none;
}

.page-promo__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 211, 107, 0.4);
}

.page-promo__btn-secondary {
  background: #111111;
  color: #FFD36B;
  border: 2px solid #F2C14E;
}

.page-promo__btn-secondary:hover {
  transform: translateY(-3px);
  background: #0A0A0A;
  color: #F2C14E;
  box-shadow: 0 8px 20px rgba(242, 193, 78, 0.2);
}

.page-promo__overview-section,
.page-promo__exclusive-offers-section,
.page-promo__how-to-claim-section,
.page-promo__vip-cta-section,
.page-promo__featured-games-section,
.page-promo__faq-section,
.page-promo__cta-final-section {
  padding: 80px 0;
}

.page-promo__features-grid,
.page-promo__offer-grid,
.page-promo__steps-grid,
.page-promo__games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-promo__feature-card,
.page-promo__offer-card,
.page-promo__step-card,
.page-promo__game-card {
  text-align: center;
}

.page-promo__card-title {
  font-size: 1.5em;
  color: #F2C14E;
  margin-top: 15px;
  margin-bottom: 10px;
}

.page-promo__card-text {
  font-size: 1em;
  color: #FFF6D6;
}

.page-promo__offer-card .page-promo__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 15px;
}

.page-promo__offer-card .page-promo__card-content {
  padding: 0 10px;
}

.page-promo__offer-card .page-promo__btn-primary,
.page-promo__offer-card .page-promo__btn-secondary {
  margin-top: 20px;
}

.page-promo__step-number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background-color: #F2C14E;
  color: #0A0A0A;
  border-radius: 50%;
  font-size: 1.8em;
  font-weight: bold;
  margin: 0 auto 20px auto;
}

.page-promo__step-image {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: cover;
  border-radius: 6px;
  margin-top: 20px;
}

.page-promo__vip-cta-section {
  text-align: center;
  background: linear-gradient(90deg, #1a1a1a 0%, #F2C14E 50%, #1a1a1a 100%);
  color: #FFF6D6;
}

.page-promo__vip-cta-section .page-promo__section-title {
  color: #0A0A0A;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.page-promo__vip-cta-section .page-promo__section-description {
  color: #0A0A0A;
}

.page-promo__vip-cta-section .page-promo__btn-primary {
  margin-top: 30px;
  background: #0A0A0A;
  color: #FFD36B;
  border: 2px solid #FFD36B;
}

.page-promo__vip-cta-section .page-promo__btn-primary:hover {
  background: #111111;
  color: #FFF6D6;
  box-shadow: 0 8px 20px rgba(255, 211, 107, 0.4);
}

.page-promo__game-link {
  text-decoration: none;
  color: inherit;
}

.page-promo__game-card .page-promo__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 15px;
}

.page-promo__game-card .page-promo__card-title {
  color: #FFD36B;
}

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

.page-promo__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-promo__faq-item {
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-promo__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: #111111;
  color: #F2C14E;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

.page-promo__faq-question:hover {
  background-color: #1a1a1a;
}

.page-promo__faq-question h3 {
  margin: 0;
  color: #F2C14E;
}

.page-promo__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #FFD36B;
}

.page-promo__faq-item.active .page-promo__faq-toggle {
  transform: rotate(45deg);
}

.page-promo__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #FFF6D6;
}

.page-promo__faq-item.active .page-promo__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px 25px;
}

.page-promo__faq-answer p {
  margin: 0;
}

.page-promo__faq-more-btn {
  margin-top: 40px;
}

.page-promo__cta-final-section {
  text-align: center;
}

.page-promo__cta-final-section .page-promo__cta-buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-promo__hero-section .page-promo__container {
    flex-direction: column;
  }

  .page-promo__hero-image-wrapper {
    order: -1; /* Image appears above content on smaller screens */
  }
}

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

  .page-promo__section-description {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-promo__hero-title {
    font-size: clamp(1.8em, 7vw, 2.8em);
  }

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

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

  .page-promo__btn-primary,
  .page-promo__btn-secondary {
    width: 100%;
    padding: 12px 20px;
    font-size: 1em;
  }

  /* Images responsive */
  .page-promo img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  /* All containers responsive */
  .page-promo__section,
  .page-promo__card,
  .page-promo__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-promo__hero-section {
    padding-top: var(--header-offset, 120px) !important;
    padding-bottom: 40px;
  }

  .page-promo__overview-section,
  .page-promo__exclusive-offers-section,
  .page-promo__how-to-claim-section,
  .page-promo__vip-cta-section,
  .page-promo__featured-games-section,
  .page-promo__faq-section,
  .page-promo__cta-final-section {
    padding: 50px 0;
  }

  .page-promo__features-grid,
  .page-promo__offer-grid,
  .page-promo__steps-grid,
  .page-promo__games-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .page-promo__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-promo__faq-answer {
    padding: 0 20px;
  }

  .page-promo__faq-item.active .page-promo__faq-answer {
    padding: 15px 20px;
  }

  .page-promo__cta-final-section .page-promo__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .page-promo__section-title {
    font-size: 1.8em;
  }
  .page-promo__hero-title {
    font-size: clamp(1.6em, 8vw, 2.5em);
  }
}