/* style/promo.css */
.page-promo {
  color: #ffffff; /* Light text for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
}

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

.page-promo__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-promo__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #FFD700;
}

.page-promo__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px auto;
  color: rgba(255, 255, 255, 0.8);
}

/* Hero Section */
.page-promo__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  text-align: center;
  overflow: hidden;
  padding: 60px 20px;
}

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

.page-promo__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 30px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
}

.page-promo__hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-promo__hero-description {
  font-size: 1.4em;
  color: #ffffff;
  margin-bottom: 40px;
}

.page-promo__hero-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A192F;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-promo__hero-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

/* Overview Section */
.page-promo__overview-section {
  padding: 80px 0;
  background-color: #0A192F;
}

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

.page-promo__promo-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-promo__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-promo__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

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

.page-promo__card-description {
  font-size: 1em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-promo__card-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A192F;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-promo__card-button:hover {
  background-color: #e6c200;
}

/* How to Claim Section */
.page-promo__how-to-claim-section {
  padding: 80px 0;
  background-color: #0A192F;
}

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

.page-promo__step-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-promo__step-number {
  font-size: 3em;
  color: #FFD700;
  font-weight: bold;
  margin-bottom: 15px;
  display: block;
}

.page-promo__step-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-promo__step-description {
  font-size: 1em;
  color: rgba(255, 255, 255, 0.7);
}

.page-promo__cta-wrapper {
  text-align: center;
}

.page-promo__main-cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A192F;
  padding: 18px 35px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.3em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-promo__main-cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

/* Terms & FAQ Section */
.page-promo__terms-faq-section {
  padding: 80px 0;
  background-color: #0A192F;
}

.page-promo__terms-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 40px auto;
  max-width: 800px;
}

.page-promo__terms-item {
  background: rgba(255, 255, 255, 0.05);
  border-left: 3px solid #FFD700;
  padding: 15px 20px;
  margin-bottom: 10px;
  font-size: 1.1em;
  color: rgba(255, 255, 255, 0.9);
}

.page-promo__link-button {
  display: block;
  width: fit-content;
  margin: 0 auto 60px auto;
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  border: 1px solid #FFD700;
  padding: 10px 25px;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-promo__link-button:hover {
  background-color: #FFD700;
  color: #0A192F;
}

.page-promo__section-title--faq {
  margin-top: 60px;
}

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

.page-promo__faq-item {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-promo__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  padding: 20px;
  cursor: pointer;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-promo__faq-question::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

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

.page-promo__faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  color: rgba(255, 255, 255, 0.7);
}

.page-promo__faq-item.active .page-promo__faq-answer {
  max-height: 200px; /* Adjust based on content */
  padding-bottom: 20px;
}

/* CTA Section */
.page-promo__cta-section {
  padding: 80px 0;
  background-color: #0A192F;
}

.page-promo__cta-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px;
}

.page-promo__cta-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 30px;
  min-width: 200px;
  min-height: 200px;
}

.page-promo__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-promo__cta-description {
  font-size: 1.2em;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  max-width: 700px;
}

.page-promo__cta-button,
.page-promo__cta-secondary-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin: 0 10px;
}

.page-promo__cta-button {
  background-color: #FFD700;
  color: #0A192F;
}

.page-promo__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-promo__cta-secondary-button {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-promo__cta-secondary-button:hover {
  background-color: #FFD700;
  color: #0A192F;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promo__hero-title {
    font-size: 2.8em;
  }
  .page-promo__hero-description {
    font-size: 1.2em;
  }
  .page-promo__section-title {
    font-size: 2em;
  }
  .page-promo__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-promo__hero-section {
    min-height: 400px;
    padding: 40px 15px;
  }
  .page-promo__hero-title {
    font-size: 2.2em;
  }
  .page-promo__hero-description {
    font-size: 1em;
  }
  .page-promo__hero-button {
    padding: 12px 25px;
    font-size: 1.1em;
  }
  .page-promo__promo-grid,
  .page-promo__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-promo__section-title {
    font-size: 1.8em;
  }
  .page-promo__section-intro {
    font-size: 0.95em;
    margin-bottom: 40px;
  }
  .page-promo__card-title {
    font-size: 1.5em;
  }
  .page-promo__step-title {
    font-size: 1.4em;
  }
  .page-promo__main-cta-button {
    font-size: 1.1em;
    padding: 15px 30px;
  }
  .page-promo__cta-title {
    font-size: 1.8em;
  }
  .page-promo__cta-description {
    font-size: 1em;
  }
  .page-promo__cta-button,
  .page-promo__cta-secondary-button {
    font-size: 1em;
    padding: 12px 25px;
    margin: 10px 0;
  }
  .page-promo__cta-card {
    padding: 20px;
  }
  .page-promo__faq-question {
    font-size: 1.1em;
  }

  /* Mobile content area images must not overflow */
  .page-promo img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-promo__hero-title {
    font-size: 1.8em;
  }
  .page-promo__hero-description {
    font-size: 0.9em;
  }
  .page-promo__hero-button {
    font-size: 1em;
    padding: 10px 20px;
  }
  .page-promo__section-title {
    font-size: 1.5em;
  }
  .page-promo__promo-card {
    padding: 15px;
  }
  .page-promo__card-title {
    font-size: 1.3em;
  }
  .page-promo__step-title {
    font-size: 1.2em;
  }
  .page-promo__cta-title {
    font-size: 1.5em;
  }
  .page-promo__cta-button,
  .page-promo__cta-secondary-button {
    display: block;
    width: 100%;
    margin: 10px 0;
  }
  .page-promo__faq-question {
    font-size: 1em;
    padding: 15px;
  }
}