/* style/promo.css */
.page-promo {
  font-family: 'Arial', sans-serif;
  color: #f0f0f0; /* Light text for dark background sections */
  background-color: #0A1931; /* Deep blue background for the page */
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-promo__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  padding: 80px 20px;
  overflow: hidden; /* Prevent image overflow */
}

.page-promo__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.3; /* Overlay for text readability */
}

.page-promo__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.page-promo__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main title */
  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.4em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.page-promo__button--primary {
  background-color: #FFD700; /* Gold */
  color: #0A1931; /* Deep blue text */
}

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

.page-promo__button--secondary {
  background-color: #E02B2B; /* Bright Red */
  color: #ffffff;
  border: 2px solid #E02B2B;
}

.page-promo__button--secondary:hover {
  background-color: #c72626;
  transform: translateY(-2px);
}

.page-promo__section-title {
  font-size: 2.8em;
  color: #FFD700;
  text-align: center;
  margin: 60px 0 30px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

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

.page-promo__why-section,
.page-promo__current-promos-section,
.page-promo__how-to-claim-section,
.page-promo__terms-section,
.page-promo__maximise-section,
.page-promo__vip-section,
.page-promo__security-section,
.page-promo__mobile-app-section,
.page-promo__faq-section,
.page-promo__final-cta-section {
  padding: 60px 20px;
  background-color: #1a2a47; /* Slightly lighter deep blue for sections */
  margin-bottom: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.page-promo__why-section {
  background-color: #0A1931;
  margin-top: 40px;
}

.page-promo__feature-grid,
.page-promo__promo-grid,
.page-promo__steps-grid,
.page-promo__info-grid,
.page-promo__vip-features,
.page-promo__security-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promo__feature-card,
.page-promo__info-card,
.page-promo__vip-item,
.page-promo__security-item {
  background-color: rgba(255, 255, 255, 0.08); /* Semi-transparent white */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-promo__feature-card:hover,
.page-promo__info-card:hover,
.page-promo__vip-item:hover,
.page-promo__security-item:hover {
  transform: translateY(-5px);
}

.page-promo__feature-title,
.page-promo__info-title,
.page-promo__vip-item-title,
.page-promo__security-item-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-promo__feature-text,
.page-promo__info-text,
.page-promo__vip-item-text,
.page-promo__security-item-text {
  font-size: 1em;
  color: #f0f0f0;
}

.page-promo__promo-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

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

.page-promo__promo-text {
  font-size: 1em;
  color: #f0f0f0;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promo__promo-features {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-promo__promo-features li {
  color: #a0a0a0;
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

.page-promo__promo-features li::before {
  content: '✔';
  color: #FFD700;
  position: absolute;
  left: 0;
}

.page-promo__steps-grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.page-promo__step-card {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-promo__step-icon {
  font-size: 2.5em;
  color: #FFD700;
  font-weight: bold;
  margin-bottom: 15px;
  background-color: #E02B2B;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

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

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

.page-promo__cta-banner {
  background: linear-gradient(45deg, #E02B2B, #FFD700);
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  margin-top: 60px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  color: #0A1931;
}

.page-promo__cta-title {
  font-size: 2.5em;
  color: #0A1931;
  margin-bottom: 15px;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
}

.page-promo__cta-text {
  font-size: 1.2em;
  color: #333333;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-promo__read-more-text {
  text-align: center;
  margin-top: 40px;
  font-size: 1.1em;
  color: #f0f0f0;
}

.page-promo__text-link {
  color: #FFD700;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-promo__text-link:hover {
  color: #E02B2B;
}

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

.page-promo__tips-list li {
  background-color: rgba(255, 255, 255, 0.08);
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border-left: 5px solid #FFD700;
}

.page-promo__tips-item-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-promo__tips-list p {
  color: #f0f0f0;
  font-size: 1em;
}

.page-promo__app-cta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
  background-color: rgba(255, 215, 0, 0.1);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #FFD700;
}

.page-promo__app-image {
  width: 400px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-promo__app-content {
  flex-grow: 1;
}

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

.page-promo__app-text {
  font-size: 1.1em;
  color: #f0f0f0;
  margin-bottom: 30px;
}

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

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

.page-promo__faq-question {
  font-size: 1.4em;
  color: #FFD700;
  padding: 20px 25px;
  cursor: pointer;
  margin: 0;
  position: relative;
  transition: background-color 0.3s ease;
}

.page-promo__faq-question::after {
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-promo__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-promo__faq-answer {
  font-size: 1em;
  color: #f0f0f0;
  padding: 0 25px 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-promo__faq-question.active + .page-promo__faq-answer {
  max-height: 200px; /* Adjust as needed */
  padding: 0 25px 20px;
}

.page-promo__final-cta-section {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #0A1931, #1a2a47);
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
  color: #ffffff;
}

.page-promo__final-cta-buttons {
  display: flex;
  gap: 25px;
  justify-content: center;
  margin-top: 40px;
}

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

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

  .page-promo__app-cta {
    flex-direction: column;
    text-align: center;
  }

  .page-promo__app-image {
    width: 100%;
    max-width: 400px;
  }
}

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

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

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

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

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

  .page-promo__section-intro {
    font-size: 1em;
  }

  .page-promo__feature-grid,
  .page-promo__promo-grid,
  .page-promo__steps-grid,
  .page-promo__info-grid,
  .page-promo__vip-features,
  .page-promo__security-features {
    grid-template-columns: 1fr;
  }

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

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

  .page-promo__cta-text {
    font-size: 1em;
  }

  .page-promo__app-image {
    max-width: 300px;
  }

  .page-promo__final-cta-buttons {
    flex-direction: column;
  }

  /* Critical: Prevent content overflow on mobile */
  .page-promo img {
    max-width: 100%;
    height: auto;
  }

  .page-promo__promo-card,
  .page-promo__feature-card,
  .page-promo__step-card,
  .page-promo__info-card,
  .page-promo__vip-item,
  .page-promo__security-item,
  .page-promo__app-cta,
  .page-promo__faq-item {
    width: auto;
    margin-left: 0;
    margin-right: 0;
  }
}

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

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

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

  .page-promo__button {
    padding: 12px 20px;
    font-size: 1em;
  }
}