.page-promo {
  color: #333333; /* Dark text on light background */
  padding-top: var(--header-offset, 120px); /* Account for fixed header */
}

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

.page-promo__hero-section {
  background-color: #000000; /* Main color for hero background */
  padding: 0;
  position: relative;
  overflow: hidden;
}

.page-promo__hero-image {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.7; /* Slightly dim image to make text pop */
  object-fit: cover;
  min-height: 400px; /* Ensure image is not too small */
}

.page-promo__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #FFFFFF; /* White text on dark background */
  max-width: 900px;
  width: 90%;
  z-index: 1;
  padding: 20px;
}

.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.5);
  color: #FFFFFF;
}

.page-promo__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  line-height: 1.5;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  color: #FFFFFF;
}

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

.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: #f0f0f0;
  transform: translateY(-2px);
}

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

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

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

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

.page-promo__overview-section, .page-promo__vip-section, .page-promo__tournaments-section, .page-promo__why-choose-section, .page-promo__cta-section, .page-promo__responsible-gambling-section, .page-promo__faq-section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

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

.page-promo__promo-card {
  background-color: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promo__promo-card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-promo__promo-card-title {
  font-size: 1.8em;
  color: #000000;
  margin: 0 20px 15px;
  line-height: 1.3;
}

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

.page-promo__button--card {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
  padding: 12px 25px;
  font-size: 1em;
}

.page-promo__button--card:hover {
  background-color: #333333;
  border-color: #333333;
}

.page-promo__vip-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
  text-align: center;
}

.page-promo__vip-feature {
  background-color: #f0f0f0;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-promo__vip-icon {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 20px;
}

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

.page-promo__vip-feature-description {
  font-size: 1em;
  color: #666666;
}

.page-promo__button--primary {
  display: block;
  width: fit-content;
  margin: 40px auto 0;
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
  padding: 15px 35px;
  font-size: 1.1em;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

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

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

.page-promo__benefit-item {
  background-color: #f0f0f0;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-promo__benefit-icon {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 20px;
}

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

.page-promo__benefit-description {
  font-size: 1em;
  color: #666666;
}

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

.page-promo__cta-section .page-promo__section-title {
  color: #FFFFFF;
  padding-top: 0;
}

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

.page-promo__button--large {
  background-color: #FCBC45; /* Login color */
  color: #000000;
  border: 2px solid #FCBC45;
  padding: 18px 45px;
  font-size: 1.3em;
  border-radius: 10px;
  display: inline-block;
  margin-top: 30px;
}

.page-promo__button--large:hover {
  background-color: #e0a53b;
  border-color: #e0a53b;
  transform: translateY(-3px);
}

.page-promo__responsible-gambling-section {
  background-color: #f0f0f0;
}

.page-promo__button--secondary {
  display: block;
  width: fit-content;
  margin: 40px auto 0;
  background-color: transparent;
  color: #000000;
  border: 2px solid #000000;
  padding: 15px 35px;
  font-size: 1.1em;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

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

.page-promo__faq-section {
  padding-bottom: 80px;
}

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

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

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

.page-promo__faq-answer a {
  color: #FCBC45;
  text-decoration: none;
}

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

/* 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;
  }
  .page-promo__promo-card-title {
    font-size: 1.5em;
  }
  .page-promo__vip-icon, .page-promo__benefit-icon {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 768px) {
  .page-promo__hero-title {
    font-size: 2.2em;
  }
  .page-promo__hero-description {
    font-size: 1em;
  }
  .page-promo__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-promo__button {
    width: 100%;
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-promo__section-title {
    font-size: 1.8em;
    padding-top: 40px;
  }
  .page-promo__section-intro {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-promo__promo-grid, .page-promo__vip-features, .page-promo__benefits-grid {
    grid-template-columns: 1fr;
  }
  .page-promo__promo-card-image, .page-promo__vip-icon, .page-promo__benefit-icon {
    max-width: 100%;
    height: auto; /* Ensure images scale down */
    min-width: 200px;
    min-height: 200px;
  }
  .page-promo__promo-card-image {
    height: 200px;
  }
  .page-promo__hero-image {
    min-height: 300px;
  }
  .page-promo__overview-section, .page-promo__vip-section, .page-promo__tournaments-section, .page-promo__why-choose-section, .page-promo__cta-section, .page-promo__responsible-gambling-section, .page-promo__faq-section {
    padding: 40px 0;
  }
  .page-promo__faq-question {
    font-size: 1.2em;
  }
  /* Ensure all content area images are at least 200px wide */
  .page-promo img {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }
}