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

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

.page-promo__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6; /* Slightly dim the image to make text stand out */
  z-index: 0;
}

.page-promo__hero-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-promo__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 20px;
}

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

.page-promo__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.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: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
}

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

.page-promo__button--register:hover {
  background-color: transparent;
  color: #FFFFFF;
  transform: translateY(-3px);
}

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

.page-promo__button--claim:hover {
  background-color: transparent;
  color: #FCBC45;
  transform: translateY(-3px);
}

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

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

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

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

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

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

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

.page-promo__benefit-icon {
  width: 100%; /* Ensure images are responsive within card */
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
  display: block; /* Ensure no extra space below img */
}

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

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

.page-promo__featured-promos {
  padding: 60px 0;
}

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

.page-promo__promo-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 20px 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(-10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

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

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

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

.page-promo__promo-text {
  font-size: 1em;
  color: #555555;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promo__how-to-claim {
  background-color: #f0f0f0;
  padding: 60px 0;
}

.page-promo__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-promo__step-item {
  background-color: #FFFFFF;
  border-left: 5px solid #FCBC45;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

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

.page-promo__step-text a {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
}

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

.page-promo__how-to-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

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

.page-promo__button--login:hover {
  background-color: transparent;
  color: #FCBC45;
  transform: translateY(-3px);
}

.page-promo__terms-section {
  padding: 60px 0;
}

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

.page-promo__terms-item {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.page-promo__terms-subtitle {
  font-size: 1.4em;
  color: #000000;
  margin-bottom: 10px;
  font-weight: bold;
}

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

.page-promo__full-terms-link {
  text-align: center;
  margin-top: 30px;
  font-size: 1.1em;
  color: #555555;
}

.page-promo__full-terms-link a {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
}

.page-promo__full-terms-link a:hover {
  text-decoration: underline;
}

.page-promo__vip-section {
  background-color: #000000;
  padding: 60px 0;
  color: #FFFFFF;
}

.page-promo__vip-section .page-promo__section-title,
.page-promo__vip-section .page-promo__section-intro {
  color: #FFFFFF;
}

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

.page-promo__vip-feature-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-promo__vip-feature-card:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.15);
}

.page-promo__vip-icon {
  width: 100%; /* Responsive within card */
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
  display: block;
}

.page-promo__vip-feature-title {
  font-size: 1.5em;
  color: #FCBC45;
  margin-bottom: 10px;
}

.page-promo__vip-feature-text {
  font-size: 1em;
  color: #f0f0f0;
  line-height: 1.6;
}

.page-promo__button--vip {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
  margin-top: 40px;
}

.page-promo__button--vip:hover {
  background-color: transparent;
  color: #FCBC45;
  transform: translateY(-3px);
}

.page-promo__responsible-gaming-section {
  padding: 60px 0;
  background-color: #f8f8f8;
}

.page-promo__responsible-gaming-text {
  font-size: 1em;
  color: #666666;
  line-height: 1.6;
  max-width: 900px;
  margin: 20px auto;
  text-align: center;
}

.page-promo__button--responsible {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
  margin-top: 30px;
}

.page-promo__button--responsible:hover {
  background-color: transparent;
  color: #000000;
  transform: translateY(-3px);
}

.page-promo__faq-section {
  padding: 60px 0;
}

.page-promo__faq-accordion {
  margin-top: 40px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}

.page-promo__faq-item {
  border-bottom: 1px solid #e0e0e0;
}

.page-promo__faq-item:last-child {
  border-bottom: none;
}

.page-promo__faq-question {
  font-size: 1.4em;
  color: #000000;
  padding: 20px 25px;
  cursor: pointer;
  background-color: #FFFFFF;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
}

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

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

.page-promo__faq-answer {
  padding: 0 25px;
  background-color: #fdfdfd;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-promo__faq-answer p {
  padding-bottom: 20px;
  font-size: 1em;
  color: #666666;
  line-height: 1.6;
}

.page-promo__faq-question.active + .page-promo__faq-answer {
  max-height: 300px; /* Adjust as needed for content */
  padding-top: 15px;
  padding-bottom: 15px;
}

.page-promo__button--faq {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
  margin-top: 40px;
}

.page-promo__button--faq:hover {
  background-color: transparent;
  color: #000000;
  transform: translateY(-3px);
}

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

.page-promo__cta-section .page-promo__section-title {
  color: #000000;
}

.page-promo__cta-section .page-promo__section-intro {
  color: #333333;
}

.page-promo__button--join-now {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
  margin-top: 40px;
}

.page-promo__button--join-now:hover {
  background-color: transparent;
  color: #000000;
  transform: translateY(-3px);
}

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

@media (max-width: 768px) {
  .page-promo__hero-section {
    min-height: 500px;
    padding: 30px 15px;
  }
  .page-promo__hero-title {
    font-size: 2.5em;
  }
  .page-promo__hero-description {
    font-size: 1.1em;
  }
  .page-promo__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-promo__button {
    width: 80%;
    max-width: 300px;
  }
  .page-promo__container {
    padding: 30px 15px;
  }
  .page-promo__section-title {
    font-size: 1.8em;
  }
  .page-promo__section-intro {
    font-size: 0.95em;
  }
  .page-promo__promo-grid,
  .page-promo__benefits-grid,
  .page-promo__vip-features {
    grid-template-columns: 1fr;
  }
  .page-promo__promo-image,
  .page-promo__benefit-icon,
  .page-promo__vip-icon {
    height: 250px; /* Adjust height for better mobile display */
    max-width: 100%;
    width: auto; /* Allow image to scale down */
  }
  .page-promo__faq-question,
  .page-promo__faq-answer p {
    padding: 15px 20px;
  }
  /* Ensure all content area images are responsive and not smaller than 200px */
  .page-promo__hero-image,
  .page-promo__benefit-icon,
  .page-promo__promo-image,
  .page-promo__vip-icon {
    max-width: 100%;
    height: auto; /* Ensure aspect ratio is maintained */
    min-width: 200px; /* Min width for content images */
    min-height: 200px; /* Min height for content images */
  }
}

@media (max-width: 480px) {
  .page-promo__hero-title {
    font-size: 2em;
  }
  .page-promo__hero-description {
    font-size: 1em;
  }
  .page-promo__button {
    width: 90%;
  }
  .page-promo__section-title {
    font-size: 1.5em;
  }
  .page-promo__benefit-title,
  .page-promo__promo-title,
  .page-promo__step-title,
  .page-promo__terms-subtitle,
  .page-promo__vip-feature-title,
  .page-promo__faq-question {
    font-size: 1.2em;
  }
  .page-promo__benefit-icon,
  .page-promo__promo-image,
  .page-promo__vip-icon {
    height: 200px; /* Further adjust height for smaller screens */
  }
}