.page-promo {
  font-family: Arial, sans-serif;
  color: #333333; /* Dark text for light background */
  background-color: #FFFFFF; /* Page background as specified */
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

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

.page-promo__section-title {
  font-size: 2.8em;
  color: #000000; /* Main brand color for titles */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

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

.page-promo__button {
  display: inline-block;
  padding: 14px 28px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  text-align: center;
  min-width: 200px; /* Ensure button minimum width */
}

.page-promo__button--register {
  background-color: #000000; /* Main brand color for background */
  color: #FFFFFF; /* Register text color as specified */
  border: 2px solid #000000;
}

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

.page-promo__button--claim,
.page-promo__button--view,
.page-promo__button--action,
.page-promo__button--read-more,
.page-promo__button--support {
  background-color: #FCBC45; /* Login color for general actions */
  color: #000000; /* Dark text for contrast */
  border: 2px solid #FCBC45;
}

.page-promo__button--claim:hover,
.page-promo__button--view:hover,
.page-promo__button--action:hover,
.page-promo__button--read-more:hover,
.page-promo__button--support:hover {
  background-color: #e0a53a;
  transform: translateY(-2px);
}

.page-promo__button--register-large,
.page-promo__button--login-large {
  padding: 16px 32px;
  font-size: 1.2em;
  border-radius: 10px;
  min-width: 240px;
}

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

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

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

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

/* Hero Section */
.page-promo__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px 80px;
  gap: 40px;
}

.page-promo__hero-content {
  max-width: 800px;
}

.page-promo__hero-title {
  font-size: 3.5em;
  color: #000000;
  margin-bottom: 25px;
  line-height: 1.1;
  font-weight: 900;
}

.page-promo__hero-description {
  font-size: 1.3em;
  color: #555555;
  margin-bottom: 40px;
  line-height: 1.5;
}

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

.page-promo__hero-image-wrapper {
  width: 100%;
  max-width: 1000px;
  margin-top: 40px;
}

.page-promo__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Why DDDJILI Section */
.page-promo__why-dddjili-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

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

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

.page-promo__feature-card:hover {
  transform: translateY(-8px);
}

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

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

/* Offer Overview Section */
.page-promo__offer-overview-section {
  padding: 80px 0;
}

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

.page-promo__promo-card {
  background-color: #FFFFFF;
  border: 1px solid #eeeeee;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-promo__promo-card:hover {
  transform: translateY(-5px);
}

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

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

.page-promo__promo-text {
  font-size: 0.95em;
  color: #666666;
  padding: 0 20px 25px;
  line-height: 1.6;
}

.page-promo__promo-card .page-promo__button {
  margin-bottom: 25px;
}

/* Details Section */
.page-promo__details-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.page-promo__detail-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 50px;
}

.page-promo__detail-item {
  background-color: #FFFFFF;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
  text-align: left;
}

.page-promo__detail-title {
  font-size: 1.8em;
  margin-bottom: 10px;
}

.page-promo__detail-title a {
  color: #000000;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

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

.page-promo__detail-description {
  font-size: 1em;
  color: #666666;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* How to Claim Section */
.page-promo__how-to-claim-section {
  padding: 80px 0;
}

.page-promo__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 50px;
  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 20px rgba(0, 0, 0, 0.08);
  text-align: left;
  position: relative;
  counter-increment: step-counter;
}

.page-promo__step-item::before {
  content: "0" counter(step-counter);
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 3em;
  font-weight: bold;
  color: #FCBC45;
  opacity: 0.2;
}

.page-promo__step-title {
  font-size: 1.8em;
  color: #000000;
  margin: 0 0 15px;
  padding-left: 60px; /* Make space for the step number */
  font-weight: bold;
}

.page-promo__step-text {
  font-size: 1em;
  color: #666666;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* FAQ Section */
.page-promo__faq-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.page-promo__faq-list {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-promo__faq-item {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

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

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

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

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

.page-promo__faq-answer.active {
  max-height: 200px; /* Adjust based on expected content height */
  padding: 0 25px 20px;
}

.page-promo__faq-cta {
  text-align: center;
  margin-top: 40px;
}

.page-promo__faq-cta-text {
  font-size: 1.2em;
  color: #555555;
  margin-bottom: 25px;
}

/* Responsible Gaming Section */
.page-promo__responsible-gaming-section {
  padding: 80px 0;
  text-align: center;
}

.page-promo__responsible-gaming-section .page-promo__button {
  margin-top: 30px;
}

/* Final Call to Action Section */
.page-promo__final-call-to-action-section {
  padding: 80px 0;
  background-color: #000000; /* Dark background for strong CTA */
  color: #FFFFFF;
  text-align: center;
}

.page-promo__final-call-to-action-section .page-promo__section-title {
  color: #FFFFFF;
}

.page-promo__final-call-to-action-section .page-promo__section-description {
  color: #f0f0f0;
}

.page-promo__cta-buttons {
  display: flex;
  gap: 25px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-promo__cta-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 50px auto 0 auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

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

  .page-promo__hero-section {
    padding-bottom: 60px;
  }
}

@media (max-width: 768px) {
  .page-promo__hero-section {
    flex-direction: column;
    padding: 40px 15px 60px;
  }

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

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

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

  .page-promo__button {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

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

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

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

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

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

  .page-promo__faq-question {
    font-size: 1.1em;
  }

  .page-promo__faq-answer.active {
    max-height: 300px; /* Increased for mobile content */
  }

  .page-promo__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-promo__hero-image,
  .page-promo__promo-image,
  .page-promo__cta-image {
    max-width: 100%;
    height: auto;
  }

  /* Enforce minimum image display size for content area */
  .page-promo img {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }
}

@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.6em;
  }

  .page-promo__feature-title,
  .page-promo__promo-title,
  .page-promo__detail-title,
  .page-promo__step-title {
    font-size: 1.4em;
    padding-left: 0; /* Remove left padding for smaller screens */
  }

  .page-promo__step-item::before {
    font-size: 2.5em;
    top: 15px;
    left: 15px;
  }

  .page-promo__button {
    min-width: unset;
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-promo__button--register-large,
  .page-promo__button--login-large {
    min-width: unset;
    padding: 14px 25px;
    font-size: 1.1em;
  }

  .page-promo__faq-question {
    padding: 15px 20px;
  }

  .page-promo__faq-answer {
    padding: 0 20px 15px;
  }

  .page-promo__faq-answer.active {
    padding: 0 20px 15px;
  }
}