/* style/promo.css */
.page-promo {
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  background-color: #FFFFFF;
  color: #333333;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

/* Hero Section */
.page-promo__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px 40px;
  background-color: #000000; /* Primary brand color for hero background */
  color: #FFFFFF; /* White text for contrast */
  position: relative;
  overflow: hidden;
}

.page-promo__hero-content {
  z-index: 1;
  max-width: 800px;
  margin-bottom: 40px;
}

.page-promo__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
}

.page-promo__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-promo__hero-image {
  width: 1200px;
  height: 675px;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  margin-top: 40px;
  z-index: 0;
  object-fit: cover;
}

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

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

.page-promo__button--download {
  background-color: #FFFFFF; /* Register color */
  color: #000000; /* Dark text for contrast */
}

.page-promo__button--download:hover {
  background-color: #f0f0f0;
}

.page-promo__button--claim {
  background-color: #FCBC45; /* Login color */
  color: #000000; /* Dark text for contrast */
}

.page-promo__button--claim:hover {
  background-color: #e0a530;
}

.page-promo__button--large {
  padding: 18px 40px;
  font-size: 1.3em;
  background-color: #FCBC45;
  color: #000000;
}

.page-promo__button--large:hover {
  background-color: #e0a530;
}

.page-promo__button--small {
  padding: 10px 20px;
  font-size: 0.9em;
  background-color: #000000;
  color: #FFFFFF;
}

.page-promo__button--small:hover {
  background-color: #333333;
}

/* General Section Styles */
.page-promo__overview-section,
.page-promo__bonus-types,
.page-promo__how-to-claim,
.page-promo__why-choose,
.page-promo__faq-section,
.page-promo__cta-section {
  padding: 80px 0;
}

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

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

/* Bonus Types Grid */
.page-promo__bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-promo__bonus-card,
.page-promo__benefit-card {
  background-color: #f8f8f8;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-promo__bonus-card:hover,
.page-promo__benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-promo__bonus-image,
.page-promo__benefit-image {
  width: 400px;
  height: 300px;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 20px;
  object-fit: cover;
}

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

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

/* How to Claim Steps */
.page-promo__claim-steps {
  list-style: none;
  padding: 0;
  margin-top: 50px;
}

.page-promo__step-item {
  background-color: #f8f8f8;
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

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

.page-promo__step-text {
  font-size: 1.1em;
  color: #666666;
  margin-bottom: 20px;
  max-width: 700px;
}

/* Why Choose Benefits Grid */
.page-promo__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

/* FAQ Section */
.page-promo__faq-list {
  margin-top: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promo__faq-item {
  background-color: #f8f8f8;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

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

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

/* Call to Action Section */
.page-promo__cta-section {
  background-color: #000000; /* Dark background for emphasis */
  color: #FFFFFF;
  text-align: center;
  padding: 80px 20px;
}

.page-promo__cta-content {
  max-width: 800px;
}

.page-promo__cta-content .page-promo__section-title {
  color: #FFFFFF;
}

.page-promo__cta-content .page-promo__section-description {
  color: #e0e0e0;
  margin-bottom: 50px;
}

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

@media (max-width: 768px) {
  .page-promo__hero-section {
    padding-top: var(--header-offset, 120px);
    padding: 40px 15px;
  }
  .page-promo__hero-title {
    font-size: 2.2em;
  }
  .page-promo__hero-description {
    font-size: 1em;
  }
  .page-promo__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-promo__button {
    width: 100%;
    max-width: 300px;
  }
  .page-promo__section-title {
    font-size: 1.8em;
  }
  .page-promo__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-promo__bonus-grid,
  .page-promo__benefits-grid {
    grid-template-columns: 1fr;
  }
  .page-promo__bonus-image,
  .page-promo__benefit-image {
    width: 100%; /* Ensure images are responsive */
    height: auto;
    min-width: 200px; /* Minimum size constraint */
    min-height: 200px; /* Minimum size constraint */
  }
  .page-promo__card-title {
    font-size: 1.3em;
  }
  .page-promo__step-title {
    font-size: 1.5em;
  }
  .page-promo__faq-question {
    font-size: 1.1em;
  }
  .page-promo__container {
    padding: 0 15px;
  }
  .page-promo__cta-section {
    padding: 60px 15px;
  }
  /* Ensure no horizontal scroll */
  .page-promo {
    overflow-x: hidden;
  }
}

@media (max-width: 480px) {
  .page-promo__hero-title {
    font-size: 1.8em;
  }
  .page-promo__button--large {
    font-size: 1.1em;
    padding: 15px 30px;
  }
  .page-promo__section-title {
    font-size: 1.6em;
  }
  .page-promo__step-title {
    font-size: 1.3em;
  }
}