.page-promo {
  color: #333333; /* Dark text for light body background #FFFFFF */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-promo__hero-section {
  background-color: #000000; /* Dark background for hero content */
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px; /* Ensure hero section has a minimum height */
  padding-top: var(--header-offset, 120px); /* Fixed header offset for PC */
}

.page-promo__hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.page-promo__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4; /* Make image slightly transparent to allow text to stand out */
  z-index: 0;
}

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

.page-promo__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FCBC45; /* Login color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

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

.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;
  cursor: pointer;
  border: none;
}

.page-promo__button--primary {
  background-color: #FCBC45; /* Login color */
  color: #000000;
}

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

.page-promo__button--secondary {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #FCBC45;
}

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

.page-promo__button--link {
  background: none;
  color: #FCBC45;
  padding: 5px 10px;
  font-size: 1em;
  border: none;
  text-decoration: underline;
}

.page-promo__button--link:hover {
  color: #e0a73d;
  text-decoration: none;
}

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

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

.page-promo__featured-promotions, .page-promo__ongoing-offers, .page-promo__how-to-claim, .page-promo__why-a9win, .page-promo__vip-details, .page-promo__terms-responsible-gaming, .page-promo__faq-section, .page-promo__cta-section {
  padding: 60px 0;
}

.page-promo__featured-promotions {
  background-color: #f8f8f8;
}

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

.page-promo__promo-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promo__promo-card-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

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

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

.page-promo__promo-card-title a {
  text-decoration: none;
  color: inherit;
}

.page-promo__promo-card-title a:hover {
  color: #FCBC45;
}

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

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

.page-promo__offer-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
}

.page-promo__offer-item:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

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

.page-promo__offer-description {
  color: #666666;
  font-size: 0.95em;
}

.page-promo__how-to-claim {
  background-color: #000000;
  color: #FFFFFF;
}

.page-promo__how-to-claim .page-promo__section-title {
  color: #FCBC45;
}

.page-promo__how-to-claim .page-promo__section-description {
  color: #e0e0e0;
}

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

.page-promo__step-card {
  background-color: #1a1a1a;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-promo__step-icon {
  background-color: #FCBC45;
  color: #000000;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
}

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

.page-promo__step-description {
  color: #e0e0e0;
  font-size: 0.95em;
  margin-bottom: 20px;
}

.page-promo__why-a9win {
  background-color: #f8f8f8;
}

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

.page-promo__benefit-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promo__benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.page-promo__benefit-icon {
  width: 200px; /* Min size for content images */
  height: 150px; /* Min size for content images */
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

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

.page-promo__benefit-description {
  color: #666666;
  font-size: 0.95em;
}

.page-promo__vip-details {
  background-color: #000000;
  color: #FFFFFF;
}

.page-promo__vip-details .page-promo__section-title {
  color: #FCBC45;
}

.page-promo__vip-details .page-promo__section-description {
  color: #e0e0e0;
}

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

.page-promo__feature-item {
  background-color: #1a1a1a;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

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

.page-promo__feature-description {
  color: #e0e0e0;
  font-size: 0.95em;
}

.page-promo__terms-responsible-gaming {
  background-color: #f8f8f8;
}

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

.page-promo__info-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

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

.page-promo__info-description {
  color: #666666;
  font-size: 0.95em;
}

.page-promo__faq-section {
  padding-bottom: 80px;
}

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

.page-promo__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 25px;
  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;
}

.page-promo__faq-answer {
  color: #666666;
  font-size: 0.95em;
  display: none; /* Hidden by default, toggled by JS */
}

.page-promo__faq-question.active + .page-promo__faq-answer {
  display: block;
}

.page-promo__cta-section {
  background-color: #FCBC45;
  color: #000000;
  text-align: center;
  padding: 80px 0;
}

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

.page-promo__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promo__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.page-promo__cta-buttons .page-promo__button {
  margin: 0;
}

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

@media (max-width: 768px) {
  .page-promo__hero-section {
    min-height: 400px;
    padding-top: var(--header-offset, 120px); /* Ensure mobile also respects offset */
  }
  .page-promo__hero-title {
    font-size: 2.5em;
  }
  .page-promo__hero-description {
    font-size: 1.1em;
  }
  .page-promo__section-title {
    font-size: 2em;
  }
  .page-promo__promo-grid, .page-promo__offers-list, .page-promo__steps-grid, .page-promo__benefits-grid, .page-promo__vip-features, .page-promo__info-grid {
    grid-template-columns: 1fr;
  }
  .page-promo__cta-title {
    font-size: 2em;
  }
  .page-promo__cta-buttons {
    flex-direction: column;
    gap: 20px;
  }
  .page-promo__cta-buttons .page-promo__button {
    margin: 0;
    width: 80%;
  }
  .page-promo__promo-card-image, .page-promo__benefit-icon {
    max-width: 100%;
    height: auto; /* Ensure images scale down */
  }
  .page-promo__hero-image {
    max-width: 100%;
    height: auto; /* Ensure hero image scales down */
  }
  .page-promo__promo-card-image {
    height: 200px; /* Adjust height for mobile */
  }
  .page-promo__benefit-icon {
    width: 200px;
    height: 150px;
  }
}

@media (max-width: 480px) {
  .page-promo__hero-title {
    font-size: 2em;
  }
  .page-promo__hero-description {
    font-size: 1em;
  }
  .page-promo__section-title {
    font-size: 1.8em;
  }
  .page-promo__button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promo__cta-title {
    font-size: 1.8em;
  }
  .page-promo__cta-description {
    font-size: 1em;
  }
}