.page-promo {
  color: #ffffff; /* Light text for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

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

.page-promo__hero-section {
  position: relative;
  text-align: center;
  padding: 0;
  overflow: hidden;
  background-color: #0A192F;
}

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

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

.page-promo__hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-promo__hero-description {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-promo__hero-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A192F;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-promo__hero-button:hover {
  background-color: #e0b800;
  color: #000000;
}

.page-promo__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 30px;
  padding-top: 40px;
}

.page-promo__section-intro {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-promo__section-footer {
  font-size: 1em;
  text-align: center;
  margin-top: 40px;
  color: #cccccc;
}

.page-promo__welcome-section, .page-promo__daily-weekly-section, .page-promo__sports-casino-section, .page-promo__vip-section, .page-promo__how-to-claim-section, .page-promo__terms-section, .page-promo__faq-section, .page-promo__cta-section {
  padding: 60px 0;
  background-color: #1a1a1a; /* Dark background from shared.css */
}

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

.page-promo__offer-card {
  background-color: #0A192F;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 450px;
}

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

.page-promo__card-title {
  font-size: 1.6em;
  color: #FFD700;
  margin: 0 15px 10px;
}

.page-promo__card-text {
  font-size: 1em;
  color: #cccccc;
  margin: 0 15px 20px;
  flex-grow: 1;
}

.page-promo__card-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A192F;
  padding: 10px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-promo__card-button:hover {
  background-color: #e0b800;
  color: #000000;
}

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

.page-promo__feature-item {
  background-color: #0A192F;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promo__feature-icon {
  width: 200px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
}

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

.page-promo__feature-text {
  font-size: 1em;
  color: #cccccc;
}

.page-promo__vip-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A192F;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  margin-top: 50px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-promo__vip-button:hover {
  background-color: #e0b800;
  color: #000000;
}

.page-promo__claim-steps {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  counter-reset: step-counter;
}

.page-promo__step-item {
  background-color: #0A192F;
  border-left: 5px solid #FFD700;
  margin-bottom: 20px;
  padding: 20px 30px;
  border-radius: 5px;
  position: relative;
  padding-left: 80px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-promo__step-item::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #FFD700;
  color: #0A192F;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2em;
}

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

.page-promo__step-text {
  font-size: 1em;
  color: #cccccc;
}

.page-promo__how-to-claim-button {
  display: block;
  width: fit-content;
  margin: 50px auto 0;
  background-color: #FFD700;
  color: #0A192F;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-promo__how-to-claim-button:hover {
  background-color: #e0b800;
  color: #000000;
}

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

.page-promo__terms-item {
  background-color: #0A192F;
  margin-bottom: 15px;
  padding: 15px 20px;
  border-radius: 5px;
  color: #cccccc;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-promo__terms-item strong {
  color: #FFD700;
}

.page-promo__terms-button {
  display: block;
  width: fit-content;
  margin: 50px auto 0;
  background-color: transparent;
  border: 2px solid #FFD700;
  color: #FFD700;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-promo__terms-button:hover {
  background-color: #FFD700;
  color: #0A192F;
}

.page-promo__faq-item {
  background-color: #0A192F;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

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

.page-promo__faq-answer {
  font-size: 1em;
  color: #cccccc;
}

.page-promo__faq-button {
  display: block;
  width: fit-content;
  margin: 50px auto 0;
  background-color: transparent;
  border: 2px solid #FFD700;
  color: #FFD700;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-promo__faq-button:hover {
  background-color: #FFD700;
  color: #0A192F;
}

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

.page-promo__cta-title {
  font-size: 3em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-promo__cta-description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promo__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A192F;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.4em;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-promo__cta-button:hover {
  background-color: #e0b800;
  color: #000000;
}

/* Responsive Design */
@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: 2em;
  }
  .page-promo__cta-title {
    font-size: 2.5em;
  }
}

@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: 1em;
    margin-bottom: 25px;
  }
  .page-promo__hero-button, .page-promo__card-button, .page-promo__vip-button, .page-promo__how-to-claim-button, .page-promo__terms-button, .page-promo__faq-button, .page-promo__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promo__section-title {
    font-size: 1.8em;
    margin-bottom: 25px;
  }
  .page-promo__section-intro {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-promo__offers-grid, .page-promo__vip-features {
    grid-template-columns: 1fr;
  }
  .page-promo__offer-card {
    min-height: auto;
  }
  .page-promo__offer-image {
    height: 200px;
  }
  .page-promo__card-title {
    font-size: 1.4em;
  }
  .page-promo__feature-icon {
    width: 150px;
    height: 100px;
  }
  .page-promo__feature-title {
    font-size: 1.3em;
  }
  .page-promo__step-item {
    padding-left: 70px;
  }
  .page-promo__step-item::before {
    width: 35px;
    height: 35px;
    font-size: 1.1em;
    left: 15px;
  }
  .page-promo__step-title {
    font-size: 1.3em;
  }
  .page-promo__faq-question {
    font-size: 1.2em;
  }
  .page-promo__cta-title {
    font-size: 2em;
  }
  .page-promo__cta-description {
    font-size: 1em;
  }
  /* Ensure images do not overflow on mobile */
  .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__section-title {
    font-size: 1.5em;
  }
  .page-promo__cta-title {
    font-size: 1.8em;
  }
}