.page-promo {
  color: #ffffff; /* Body background is dark, so text should be light */
}

.page-promo__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  background-color: #000000;
  overflow: hidden;
}

.page-promo__hero-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
}

.page-promo__hero-image {
  width: 100%;
  height: auto;
  max-height: 700px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 30px;
}

.page-promo__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

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

.page-promo__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #F0F0F0;
  line-height: 1.6;
}

.page-promo__hero-cta, .page-promo__cta-button {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 15px 35px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

.page-promo__hero-cta:hover, .page-promo__cta-button:hover {
  background-color: #E0A83F;
}

.page-promo__cta-button--secondary {
  background-color: #444444;
  color: #FFFFFF;
}

.page-promo__cta-button--secondary:hover {
  background-color: #666666;
}

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

.page-promo__section-title {
  font-size: 2.8em;
  color: #FCBC45;
  text-align: center;
  margin-bottom: 25px;
  font-weight: bold;
}

.page-promo__section-intro {
  font-size: 1.1em;
  color: #D0D0D0;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  line-height: 1.7;
}

.page-promo__why-section, .page-promo__claim-section, .page-promo__explore-promos-section, .page-promo__games-section, .page-promo__responsible-gaming-section, .page-promo__faq-section {
  padding: 60px 0;
  background-color: #000000;
}

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

.page-promo__feature-item, .page-promo__step-item, .page-promo__promo-card, .page-promo__game-category {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promo__feature-item:hover, .page-promo__step-item:hover, .page-promo__promo-card:hover, .page-promo__game-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-promo__feature-title, .page-promo__step-title, .page-promo__card-title, .page-promo__category-title {
  font-size: 1.8em;
  color: #FCBC45;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promo__feature-text, .page-promo__step-text, .page-promo__card-text, .page-promo__category-text {
  font-size: 1em;
  color: #B0B0B0;
  line-height: 1.6;
}

.page-promo__image-full-width {
  width: 100%;
  height: auto;
  min-width: 200px;
  min-height: 200px;
  border-radius: 10px;
  margin-top: 50px;
  object-fit: cover;
}

.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-cta, .page-promo__category-cta {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

.page-promo__card-cta:hover, .page-promo__category-cta:hover {
  background-color: #E0A83F;
}

.page-promo__responsible-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

.page-promo__responsible-text {
  flex: 1;
  min-width: 300px;
}

.page-promo__responsible-subtitle {
  font-size: 2em;
  color: #FCBC45;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promo__responsible-description {
  font-size: 1.1em;
  color: #B0B0B0;
  line-height: 1.6;
  margin-bottom: 20px;
}

.page-promo__responsible-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-promo__responsible-list li {
  background: rgba(255, 255, 255, 0.05);
  padding: 10px 15px;
  margin-bottom: 10px;
  border-left: 3px solid #FCBC45;
  border-radius: 5px;
  color: #D0D0D0;
  font-size: 1em;
}

.page-promo__text-link {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
  margin-right: 20px;
  transition: color 0.3s ease;
}

.page-promo__text-link:hover {
  color: #E0A83F;
  text-decoration: underline;
}

.page-promo__responsible-image {
  flex: 1;
  min-width: 400px;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  min-height: 200px;
}

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

.page-promo__faq-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  cursor: pointer;
}

.page-promo__faq-question {
  font-size: 1.4em;
  color: #FCBC45;
  padding: 20px 25px;
  margin: 0;
  position: relative;
  font-weight: bold;
}

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

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

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

.page-promo__faq-item.active .page-promo__faq-answer {
  max-height: 300px; /* Adjust as needed */
  padding-top: 10px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promo__hero-title {
    font-size: 3em;
  }
  .page-promo__section-title {
    font-size: 2.5em;
  }
  .page-promo__responsible-image {
    min-width: 300px;
  }
}

@media (max-width: 768px) {
  .page-promo__hero-section {
    padding-top: var(--header-offset, 80px);
  }
  .page-promo__hero-title {
    font-size: 2.2em;
  }
  .page-promo__hero-description {
    font-size: 1.1em;
  }
  .page-promo__hero-cta {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-promo__section-title {
    font-size: 2em;
  }
  .page-promo__section-intro {
    font-size: 1em;
  }
  .page-promo__features-grid, .page-promo__steps-grid, .page-promo__promo-cards-grid, .page-promo__game-categories-grid {
    grid-template-columns: 1fr;
  }
  .page-promo__responsible-content {
    flex-direction: column;
  }
  .page-promo__responsible-image {
    width: 100%;
    min-width: 200px; /* Enforce minimum size for content images */
    max-width: 100%;
    height: auto;
  }
  .page-promo__image-full-width {
    width: 100%;
    min-width: 200px; /* Enforce minimum size for content images */
    max-width: 100%;
    height: auto;
  }
  .page-promo__card-image {
    width: 100%;
    min-width: 200px; /* Enforce minimum size for card images */
    max-width: 100%;
    height: auto;
  }
  .page-promo__promo-card, .page-promo__feature-item, .page-promo__step-item, .page-promo__game-category {
    padding: 20px;
  }
  .page-promo__feature-title, .page-promo__step-title, .page-promo__card-title, .page-promo__category-title {
    font-size: 1.5em;
  }
  .page-promo__faq-question {
    font-size: 1.2em;
    padding: 15px 20px;
  }
  .page-promo__faq-question::after {
    right: 20px;
  }
  .page-promo__faq-answer {
    padding: 0 20px 15px 20px;
  }
  /* Ensure all images within .page-promo do not cause horizontal scroll */
  .page-promo img {
    max-width: 100%;
    height: auto;
  }
  .page-promo {
    overflow-x: hidden;
  }
}

@media (max-width: 480px) {
  .page-promo__hero-title {
    font-size: 1.8em;
  }
  .page-promo__section-title {
    font-size: 1.8em;
  }
  .page-promo__hero-description {
    font-size: 0.95em;
  }
  .page-promo__hero-cta {
    font-size: 0.9em;
    padding: 10px 25px;
  }
  .page-promo__responsible-subtitle {
    font-size: 1.6em;
  }
  .page-promo__text-link {
    display: block;
    margin-bottom: 10px;
  }
}