.page-promo {
  color: #333333; /* Dark text on light body background */
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  background-color: #FFFFFF;
}

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

.page-promo__hero-section {
  background-color: #000000; /* Dark background for hero */
  color: #FFFFFF;
  text-align: center;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-promo__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.3;
}

.page-promo__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

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

.page-promo__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  line-height: 1.6;
}

.page-promo__hero-actions {
  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, color 0.3s ease, transform 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.page-promo__button--register {
  background-color: #FFFFFF;
  color: #000000;
}

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

.page-promo__button--login {
  background-color: #FCBC45;
  color: #000000;
  border-color: #FCBC45;
}

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

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

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

.page-promo__why-choose-section {
  padding: 80px 0;
  background-color: #f8f8f8;
}

.page-promo__feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

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

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

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

.page-promo__feature-text {
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
}

.page-promo__types-section {
  padding: 80px 0;
}

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

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

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

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

.page-promo__card-title {
  font-size: 1.6em;
  color: #000000;
  padding: 20px 20px 10px;
  font-weight: 600;
}

.page-promo__card-text {
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
  padding: 0 20px 20px;
  flex-grow: 1;
}

.page-promo__button--claim, .page-promo__button--refer, .page-promo__button--explore {
  background-color: #FCBC45;
  color: #000000;
  border-color: #FCBC45;
  margin: 0 20px 20px;
  text-align: center;
}

.page-promo__button--claim:hover, .page-promo__button--refer:hover, .page-promo__button--explore:hover {
  background-color: #e0a53b;
  transform: translateY(-2px);
}

.page-promo__how-to-claim-section {
  padding: 80px 0;
  background-color: #f8f8f8;
}

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

.page-promo__step-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  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: 1em;
  line-height: 1.6;
  color: #555555;
}

.page-promo__call-to-action-text {
  text-align: center;
  font-size: 1.1em;
  margin-top: 40px;
  color: #333333;
}

.page-promo__vip-section {
  padding: 80px 0;
}

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

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

.page-promo__vip-subtitle {
  font-size: 1.8em;
  color: #000000;
  margin-top: 20px;
  margin-bottom: 15px;
}

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

.page-promo__vip-perk-item {
  font-size: 1.1em;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
  color: #333333;
}

.page-promo__vip-perk-item::before {
  content: '✓';
  color: #FCBC45;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-promo__vip-image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-promo__vip-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-promo__button--learn-more {
  background-color: #000000;
  color: #FFFFFF;
  border-color: #000000;
}

.page-promo__button--learn-more:hover {
  background-color: #333333;
  transform: translateY(-2px);
}

.page-promo__terms-section, .page-promo__responsible-gambling-section {
  padding: 80px 0;
  background-color: #f8f8f8;
}

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

.page-promo__terms-item, .page-promo__responsible-item {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
  color: #333333;
}

.page-promo__terms-item::before, .page-promo__responsible-item::before {
  content: '•';
  color: #FCBC45;
  position: absolute;
  left: 0;
  font-size: 1.5em;
  line-height: 1;
}

.page-promo__button--read-terms {
  background-color: #000000;
  color: #FFFFFF;
  border-color: #000000;
  display: block;
  width: fit-content;
  margin: 30px auto 0 auto;
}

.page-promo__button--read-terms:hover {
  background-color: #333333;
  transform: translateY(-2px);
}

.page-promo__app-promo-section {
  padding: 80px 0;
}

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

.page-promo__app-image-wrapper {
  flex: 1;
  min-width: 250px;
  text-align: center;
}

.page-promo__app-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-promo__app-text-content {
  flex: 2;
  min-width: 300px;
}

.page-promo__app-subtitle {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 20px;
}

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

.page-promo__app-feature-item {
  font-size: 1.1em;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
  color: #333333;
}

.page-promo__app-feature-item::before {
  content: '★';
  color: #FCBC45;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-promo__button--download {
  background-color: #FCBC45;
  color: #000000;
  border-color: #FCBC45;
  display: block;
  width: fit-content;
}

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

.page-promo__faq-section {
  padding: 80px 0;
  background-color: #f8f8f8;
}

.page-promo__accordion {
  max-width: 900px;
  margin: 40px auto;
}

.page-promo__accordion-item {
  background-color: #FFFFFF;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.page-promo__accordion-header {
  width: 100%;
  background-color: #000000;
  color: #FFFFFF;
  padding: 20px;
  font-size: 1.2em;
  font-weight: 600;
  text-align: left;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-promo__accordion-header:hover {
  background-color: #333333;
}

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

.page-promo__accordion-header.active::after {
  content: '-';
  transform: rotate(0deg); /* Explicitly set to 0 for consistency */
}

.page-promo__accordion-content {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-promo__accordion-content p {
  padding: 20px 0;
  line-height: 1.7;
  color: #555555;
}

.page-promo__accordion-header.active + .page-promo__accordion-content {
  max-height: 500px; /* Adjust as needed for content */
  padding: 20px;
}

.page-promo__faq-section a {
  color: #FCBC45;
  text-decoration: none;
  font-weight: 600;
}

.page-promo__faq-section a:hover {
  text-decoration: underline;
}

.page-promo__final-cta-section {
  padding: 80px 0;
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
}

.page-promo__final-cta-section .page-promo__section-title {
  color: #FFFFFF;
}

.page-promo__final-cta-section .page-promo__section-description {
  color: #f0f0f0;
}

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

.page-promo__button--explore {
  background-color: #FFFFFF;
  color: #000000;
  border-color: #FFFFFF;
}

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

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

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

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

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

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

  .page-promo__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

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

  .page-promo__section-title {
    font-size: 1.8em;
    padding-top: 40px;
  }

  .page-promo__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }

  .page-promo__why-choose-section, .page-promo__types-section, .page-promo__how-to-claim-section, .page-promo__vip-section, .page-promo__terms-section, .page-promo__responsible-gambling-section, .page-promo__app-promo-section, .page-promo__faq-section, .page-promo__final-cta-section {
    padding: 60px 0;
  }

  .page-promo__feature-item, .page-promo__promo-card, .page-promo__step-item {
    padding: 20px;
  }

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

  .page-promo__vip-content, .page-promo__app-content {
    flex-direction: column;
    gap: 30px;
  }

  .page-promo__vip-image, .page-promo__app-image {
    width: 100%;
  }

  .page-promo__accordion-header {
    font-size: 1em;
    padding: 15px;
  }

  .page-promo__accordion-content p {
    padding: 15px 0;
  }

  /* Ensure all images within .page-promo are responsive and don't overflow */
  .page-promo img {
    max-width: 100%;
    height: auto;
    display: block;
  }
}

@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;
  }
}