/* style/promo.css */
.page-promo {
  color: #ffffff; /* Light text for dark body background */
  background-color: transparent; /* Body background from shared.css */
  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__hero-section {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 0; /* Adjusting padding as hero image handles visual space */
}

.page-promo__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly darken image for text readability */
}

.page-promo__hero-container {
  position: relative;
}

.page-promo__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: #ffffff;
  max-width: 800px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text */
  border-radius: 10px;
}

.page-promo__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold primary color */
  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: 30px;
  line-height: 1.6;
}

.page-promo__section-title {
  font-size: 2.8em;
  color: #FFD700;
  text-align: center;
  margin: 60px 0 30px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

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

.page-promo__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Primary gold color */
  color: #1A202C; /* Dark text for gold button */
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-promo__cta-button:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-3px);
}

.page-promo__cta-button--large {
  padding: 18px 45px;
  font-size: 1.4em;
}

.page-promo__cta-button--final {
  background-color: #FF4500; /* Orange-red for final CTA */
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(255, 69, 0, 0.4);
}

.page-promo__cta-button--final:hover {
  background-color: #cc3700;
}

/* Why Choose Section */
.page-promo__why-choose-section,
.page-promo__types-section,
.page-promo__how-to-claim-section,
.page-promo__featured-section,
.page-promo__responsible-gaming-section,
.page-promo__faq-section,
.page-promo__download-app-section,
.page-promo__final-cta-section {
  padding: 60px 0;
}

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

.page-promo__benefit-card {
  background-color: #1A202C; /* Auxiliary dark blue */
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

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

.page-promo__benefit-icon {
  width: 100%; /* Ensure image is not smaller than 200px */
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-promo__benefit-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

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

/* Promotion Types Section */
.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: #1A202C;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.page-promo__promo-image {
  width: 100%;
  height: 250px;
  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: 2em;
  color: #FFD700;
  margin-bottom: 15px;
}

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

.page-promo__promo-content .page-promo__cta-button {
  margin-top: auto;
  align-self: flex-start;
}

/* How to Claim Section */
.page-promo__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promo__step-card {
  background-color: rgba(255, 215, 0, 0.1);
  border: 2px solid #FFD700;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
}

.page-promo__step-title {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 15px;
}

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

/* Featured Details Section */
.page-promo__detail-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 40px;
}

.page-promo__detail-item {
  background-color: #1A202C;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-promo__detail-title {
  font-size: 2em;
  margin-bottom: 15px;
}

.page-promo__detail-title a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promo__detail-title a:hover {
  color: #e6c200;
  text-decoration: underline;
}

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

.page-promo__button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A202C;
  padding: 10px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease;
}

.page-promo__button:hover {
  background-color: #e6c200;
}

/* Responsible Gaming Section */
.page-promo__responsible-gaming-section a {
  color: #FFD700;
  text-decoration: underline;
}

.page-promo__responsible-gaming-section a:hover {
  color: #e6c200;
}

/* FAQ Section */
.page-promo__faq-list {
  margin-top: 40px;
}

.page-promo__faq-item {
  background-color: #1A202C;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-promo__faq-question {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-promo__faq-answer {
  font-size: 1em;
  line-height: 1.6;
  color: #e0e0e0;
}

/* Download App Section */
.page-promo__download-app-section {
  text-align: center;
}

.page-promo__app-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  margin: 40px auto;
  display: block;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* 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: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-promo__hero-content {
    max-width: 90%;
    padding: 15px;
  }
  .page-promo__hero-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }
  .page-promo__hero-description {
    font-size: 0.95em;
    margin-bottom: 20px;
  }
  .page-promo__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promo__cta-button--large {
    padding: 15px 35px;
    font-size: 1.2em;
  }
  .page-promo__section-title {
    font-size: 1.8em;
    margin: 40px 0 20px;
  }
  .page-promo__section-intro {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-promo__benefits-grid,
  .page-promo__promo-grid,
  .page-promo__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-promo__promo-image {
    height: 200px;
  }
  .page-promo__promo-title {
    font-size: 1.6em;
  }
  .page-promo__benefit-icon,
  .page-promo__app-image {
    max-width: 100%;
  }
  .page-promo__faq-question {
    font-size: 1.3em;
  }
  .page-promo__detail-title {
    font-size: 1.6em;
  }
  /* Mobile content area images must not overflow */
  .page-promo img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-promo__hero-title {
    font-size: 1.8em;
  }
  .page-promo__hero-description {
    font-size: 0.9em;
  }
  .page-promo__cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-promo__cta-button--large {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promo__section-title {
    font-size: 1.5em;
  }
  .page-promo__promo-title {
    font-size: 1.4em;
  }
  .page-promo__benefit-title,
  .page-promo__step-title,
  .page-promo__faq-question,
  .page-promo__detail-title {
    font-size: 1.4em;
  }
}