.page-promo {
  color: #333333; /* Dark text for light body background */
}

.page-promo__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Ensure space below fixed header */
  color: #FFFFFF;
  text-align: center;
  overflow: hidden;
  min-height: 600px; /* Ensure hero section has a minimum height */
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-promo__hero-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  filter: brightness(0.6); /* Slightly darken image for text readability */
}

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

.page-promo__hero-content {
  z-index: 1;
}

.page-promo__hero-title {
  font-size: 3.5em;
  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.3em;
  margin-bottom: 40px;
  max-width: 800px;
  line-height: 1.6;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

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

.page-promo__btn {
  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;
  white-space: nowrap;
  text-align: center;
}

.page-promo__btn--register {
  background-color: #FFFFFF; /* Register button background */
  color: #000000; /* Register button text */
  border: 2px solid #FFFFFF;
}

.page-promo__btn--register:hover {
  background-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-2px);
}

.page-promo__btn--claim,
.page-promo__btn--details,
.page-promo__btn--step-action,
.page-promo__btn--faq-app,
.page-promo__btn--responsible {
  background-color: #FCBC45; /* Login/Claim button background */
  color: #000000; /* Login/Claim button text */
  border: 2px solid #FCBC45;
}

.page-promo__btn--claim:hover,
.page-promo__btn--details:hover,
.page-promo__btn--step-action:hover,
.page-promo__btn--faq-app:hover,
.page-promo__btn--responsible:hover {
  background-color: #e6a73c;
  transform: translateY(-2px);
}

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

.page-promo__section-title {
  font-size: 2.8em;
  color: #000000;
  text-align: center;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.page-promo__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FCBC45;
  border-radius: 2px;
}

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

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

.page-promo__promo-card,
.page-promo__step-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promo__promo-card-image,
.page-promo__step-image {
  width: 100%; /* Ensure images take full width of card */
  max-width: 400px; /* Max width for consistency */
  height: 250px; /* Fixed height for visual consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
  border: 1px solid #eee;
}

.page-promo__promo-card-title,
.page-promo__step-title {
  font-size: 1.6em;
  color: #000000;
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-promo__promo-card-description,
.page-promo__step-description {
  font-size: 1em;
  color: #666666;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-promo__why-list,
.page-promo__terms-list,
.page-promo__faq-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-promo__why-item,
.page-promo__terms-item,
.page-promo__faq-item {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.page-promo__why-item-title,
.page-promo__terms-item-title,
.page-promo__faq-question {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 15px;
  position: relative;
  padding-left: 40px;
}

.page-promo__why-item-title::before,
.page-promo__terms-item-title::before,
.page-promo__faq-question::before {
  content: '⚡'; /* Using an emoji for visual appeal */
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
  color: #FCBC45;
}

.page-promo__why-item-description,
.page-promo__terms-item-description,
.page-promo__faq-answer p {
  font-size: 1em;
  color: #555555;
  line-height: 1.7;
}

.page-promo__faq-question {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.page-promo__faq-question::after {
  content: '+';
  font-size: 1.5em;
  color: #FCBC45;
  transition: transform 0.3s ease;
}

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

.page-promo__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
}

.page-promo__faq-item.active .page-promo__faq-answer {
  max-height: 500px; /* Adjust as needed for content */
  padding-top: 15px;
}

.page-promo__faq-answer .page-promo__btn {
  margin-top: 20px;
}

.page-promo__responsible-gaming-section {
  text-align: center;
  background-color: #f0f0f0;
  padding: 60px 20px;
  border-radius: 15px;
  margin-top: 60px;
}

.page-promo__responsible-gaming-section .page-promo__section-title {
  font-size: 2.5em;
}

.page-promo__responsible-gaming-section .page-promo__section-intro {
  margin-bottom: 30px;
}

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

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

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

  .page-promo__promo-card-title,
  .page-promo__step-title {
    font-size: 1.4em;
  }
}

@media (max-width: 768px) {
  .page-promo__hero-section {
    padding-top: var(--header-offset, 120px);
    min-height: 500px;
  }

  .page-promo__hero-container {
    padding: 60px 15px;
  }

  .page-promo__hero-title {
    font-size: 2.5em;
  }

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

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

  .page-promo__btn {
    width: 100%;
  }

  .page-promo__content-wrapper {
    padding: 30px 15px;
  }

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

  .page-promo__section-intro {
    font-size: 1em;
    margin-bottom: 40px;
  }

  .page-promo__promo-grid,
  .page-promo__steps-grid {
    grid-template-columns: 1fr;
  }

  .page-promo__promo-card-image,
  .page-promo__step-image {
    width: 100%;
    max-width: 100%; /* Ensure content images are responsive */
    height: auto; /* Allow height to adjust proportionally */
    min-height: 200px; /* Enforce minimum height */
  }

  .page-promo__why-item,
  .page-promo__terms-item,
  .page-promo__faq-item {
    padding: 20px;
  }

  .page-promo__why-item-title,
  .page-promo__terms-item-title,
  .page-promo__faq-question {
    font-size: 1.3em;
    padding-left: 30px;
  }

  /* Ensure all images within .page-promo are responsive and not smaller than 200px */
  .page-promo img {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
    object-fit: cover;
  }
}

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

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

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

  .page-promo__promo-card-title,
  .page-promo__step-title {
    font-size: 1.2em;
  }

  .page-promo__why-item-title,
  .page-promo__terms-item-title,
  .page-promo__faq-question {
    font-size: 1.1em;
  }

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