.page-promo {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Fixed header offset for desktop */
}

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

.page-promo__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #000000; /* Dark background for hero content area */
  padding: 0;
  margin-bottom: 40px;
}

.page-promo__hero-image {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.6; /* Slightly dim the background image for text readability */
}

.page-promo__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #FFFFFF;
  max-width: 900px;
  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: 15px;
  color: #FCBC45; /* Login color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

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

.page-promo__hero-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin: 0 10px;
}

.page-promo__hero-button--register {
  background-color: #FFFFFF;
  color: #000000;
}

.page-promo__hero-button--register:hover {
  background-color: #f0f0f0;
  transform: translateY(-3px);
}

.page-promo__hero-button--login {
  background-color: #FCBC45;
  color: #000000;
}

.page-promo__hero-button--login:hover {
  background-color: #e0a030;
  transform: translateY(-3px);
}

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

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

.page-promo__welcome-bonus-section,
.page-promo__daily-rewards-section,
.page-promo__vip-section,
.page-promo__terms-faq-section,
.page-promo__cta-section,
.page-promo__security-section,
.page-promo__download-app-section,
.page-promo__contact-section {
  padding: 60px 0;
  margin-bottom: 40px;
  background-color: #f9f9f9; /* Light grey background for sections */
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.page-promo__welcome-bonus-section {
  background-color: #FFFFFF;
}

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

.page-promo__card {
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promo__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.page-promo__card-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Ensure images are not too small */
  min-height: 200px;
  object-fit: cover;
}

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

.page-promo__card-description {
  font-size: 1em;
  color: #555555;
  margin-bottom: 25px;
}

.page-promo__card-button {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

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

.page-promo__terms-note {
  text-align: center;
  font-style: italic;
  color: #777777;
  margin-top: 30px;
  font-size: 0.9em;
}

.page-promo__daily-rewards-section {
  background-color: #000000; /* Dark section for contrast */
  color: #FFFFFF;
}

.page-promo__daily-rewards-section .page-promo__section-title {
  color: #FCBC45;
}

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

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

.page-promo__grid-item {
  background-color: #1a1a1a;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promo__grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.page-promo__grid-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
  min-width: 200px; /* Ensure images are not too small */
  min-height: 200px;
  object-fit: cover;
}

.page-promo__grid-title {
  font-size: 1.6em;
  color: #FCBC45;
  margin-bottom: 10px;
}

.page-promo__grid-description {
  font-size: 0.95em;
  color: #cccccc;
  margin-bottom: 20px;
}

.page-promo__grid-button {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-promo__grid-button:hover {
  background-color: #e0a030;
}

.page-promo__vip-section {
  background-color: #FFFFFF;
}

.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__vip-item {
  background-color: #f0f0f0;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.page-promo__vip-icon {
  width: 200px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 15px;
  min-width: 200px; /* Ensure images are not too small */
  min-height: 200px;
}

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

.page-promo__vip-item-description {
  font-size: 0.9em;
  color: #666666;
}

.page-promo__vip-button {
  display: inline-block;
  background-color: #000000;
  color: #FFFFFF;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 40px;
  transition: background-color 0.3s ease;
}

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

.page-promo__terms-faq-section {
  background-color: #f9f9f9;
}

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

.page-promo__faq-item {
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  padding: 25px;
}

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

.page-promo__faq-answer {
  font-size: 0.95em;
  color: #555555;
}

.page-promo__terms-button {
  display: inline-block;
  background-color: #000000;
  color: #FFFFFF;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 30px;
  margin-right: 15px;
  transition: background-color 0.3s ease;
}

.page-promo__terms-button:hover {
  background-color: #333333;
}

.page-promo__cta-section {
  text-align: center;
  background-color: #FCBC45; /* Login color as background for CTA */
  color: #000000;
}

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

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

.page-promo__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin: 0 15px 20px 15px;
}

.page-promo__cta-button--register {
  background-color: #000000;
  color: #FFFFFF;
}

.page-promo__cta-button--register:hover {
  background-color: #333333;
  transform: translateY(-3px);
}

.page-promo__cta-button--login {
  background-color: #FFFFFF;
  color: #000000;
}

.page-promo__cta-button--login:hover {
  background-color: #f0f0f0;
  transform: translateY(-3px);
}

.page-promo__security-section {
  background-color: #000000;
  color: #FFFFFF;
}

.page-promo__security-section .page-promo__section-title {
  color: #FCBC45;
}

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

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

.page-promo__security-item {
  background-color: #1a1a1a;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.page-promo__security-icon {
  width: 200px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 15px;
  min-width: 200px; /* Ensure images are not too small */
  min-height: 200px;
}

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

.page-promo__security-item-description {
  font-size: 0.9em;
  color: #cccccc;
}

.page-promo__security-button {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 30px;
  margin-right: 15px;
  transition: background-color 0.3s ease;
}

.page-promo__security-button:hover {
  background-color: #e0a030;
}

.page-promo__download-app-section {
  background-color: #FFFFFF;
}

.page-promo__app-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}

.page-promo__app-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Ensure images are not too small */
  min-height: 200px;
}

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

.page-promo__app-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-promo__app-button--android {
  background-color: #000000;
  color: #FFFFFF;
}

.page-promo__app-button--android:hover {
  background-color: #333333;
  transform: translateY(-3px);
}

.page-promo__app-button--ios {
  background-color: #FCBC45;
  color: #000000;
}

.page-promo__app-button--ios:hover {
  background-color: #e0a030;
  transform: translateY(-3px);
}

.page-promo__contact-section {
  background-color: #f9f9f9;
  text-align: center;
}

.page-promo__contact-button {
  display: inline-block;
  background-color: #000000;
  color: #FFFFFF;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 30px;
  margin-right: 15px;
  transition: background-color 0.3s ease;
}

.page-promo__contact-button:hover {
  background-color: #333333;
}

@media (max-width: 768px) {
  .page-promo {
    padding-top: var(--header-offset, 80px); /* Adjust for mobile header offset */
  }

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

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

  .page-promo__hero-button {
    padding: 12px 20px;
    font-size: 1em;
    margin: 0 5px 15px 5px;
  }

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

  .page-promo__promo-cards,
  .page-promo__promo-grid,
  .page-promo__vip-features,
  .page-promo__faq-grid,
  .page-promo__security-features {
    grid-template-columns: 1fr;
  }

  .page-promo__card,
  .page-promo__grid-item,
  .page-promo__vip-item,
  .page-promo__faq-item,
  .page-promo__security-item {
    padding: 20px;
  }

  .page-promo__card-title,
  .page-promo__grid-title,
  .page-promo__vip-item-title,
  .page-promo__faq-question,
  .page-promo__security-item-title {
    font-size: 1.4em;
  }

  .page-promo__terms-button,
  .page-promo__vip-button,
  .page-promo__security-button,
  .page-promo__contact-button {
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
    padding: 12px 0;
  }

  .page-promo__app-cta {
    flex-direction: column;
  }

  .page-promo__app-image {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .page-promo__app-buttons {
    flex-direction: column;
    width: 100%;
  }

  .page-promo__app-button {
    width: 100%;
  }

  .page-promo__cta-button {
    width: calc(100% - 30px);
    margin: 0 15px 15px 15px;
  }

  /* Ensure all images within .page-promo are responsive and do not cause horizontal scrolling */
  .page-promo img {
    max-width: 100%;
    height: auto;
    object-fit: cover; /* Maintain aspect ratio and fill space */
  }
  
  .page-promo__card-image, 
  .page-promo__grid-image, 
  .page-promo__vip-icon, 
  .page-promo__security-icon, 
  .page-promo__app-image {
    min-width: 200px; /* Enforce minimum size even on mobile */
    min-height: 200px;
  }
}