.page-promo {
  font-family: Arial, sans-serif;
  color: #333333; /* Dark text for light background */
  background-color: #FFFFFF; /* White background */
  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: 0 20px;
}

.page-promo__section-title {
  font-size: 2.5em;
  color: #000000; /* Primary color for titles */
  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 50px auto;
  color: #555555;
}

.page-promo__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
  font-size: 1.05em;
}

.page-promo__button--register {
  background-color: #000000; /* Black button */
  color: #FFFFFF; /* White text */
  border: 2px solid #000000;
}

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

.page-promo__button--login {
  background-color: #FCBC45; /* Login button color */
  color: #000000; /* Black text */
  border: 2px solid #FCBC45;
  margin-left: 15px;
}

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

.page-promo__button--small {
  padding: 10px 20px;
  font-size: 0.95em;
  background-color: #000000;
  color: #FFFFFF;
  border: none;
  border-radius: 4px;
}

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

.page-promo__button--details {
  padding: 8px 18px;
  font-size: 0.9em;
  background-color: #FCBC45;
  color: #000000;
  border: none;
  border-radius: 4px;
  margin-top: 15px;
}

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

.page-promo__button--large {
  padding: 15px 30px;
  font-size: 1.1em;
  background-color: #000000;
  color: #FFFFFF;
  border: none;
  border-radius: 5px;
  margin-top: 30px;
}

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

/* Hero Section */
.page-promo__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px 0;
  background-color: #f8f8f8;
}

.page-promo__hero-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin-top: 40px;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Enforce minimum image size */
  min-height: 200px;
}

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

.page-promo__hero-title {
  font-size: 3.5em;
  color: #000000;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-promo__hero-description {
  font-size: 1.3em;
  color: #555555;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promo__hero-buttons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

/* Welcome Bonus Section */
.page-promo__welcome-bonus-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

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

.page-promo__bonus-card {
  background-color: #f0f0f0;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.page-promo__bonus-card-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Enforce minimum image size */
  min-height: 200px;
}

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

.page-promo__bonus-card-description {
  font-size: 1em;
  color: #666666;
  margin-bottom: 25px;
  flex-grow: 1;
}

/* Daily Rewards Section */
.page-promo__daily-rewards-section {
  padding: 80px 0;
  background-color: #f8f8f8;
}

.page-promo__promo-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 40px;
}

.page-promo__promo-item {
  display: flex;
  align-items: center;
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.page-promo__promo-item:hover {
  transform: translateY(-8px);
}

.page-promo__promo-item-image {
  width: 40%;
  height: auto;
  object-fit: cover;
  min-width: 200px; /* Enforce minimum image size */
  min-height: 200px;
}

.page-promo__promo-item-content {
  padding: 30px;
  width: 60%;
}

.page-promo__promo-item-title {
  font-size: 2em;
  color: #000000;
  margin-bottom: 15px;
}

.page-promo__promo-item-description {
  font-size: 1.05em;
  color: #666666;
  margin-bottom: 20px;
}

/* VIP Section */
.page-promo__vip-section {
  padding: 80px 0;
  background-color: #FFFFFF;
  text-align: center;
}

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

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

.page-promo__vip-feature-card:hover {
  background-color: #e5e5e5;
}

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

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

/* CTA Section */
.page-promo__cta-section {
  background-color: #000000; /* Black background */
  padding: 80px 20px;
  text-align: center;
  color: #FFFFFF;
}

.page-promo__cta-content {
  max-width: 900px;
}

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

.page-promo__cta-description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 40px;
}

.page-promo__cta-buttons .page-promo__button--register {
  background-color: #FCBC45; /* Yellow for register in CTA */
  color: #000000;
  border-color: #FCBC45;
}

.page-promo__cta-buttons .page-promo__button--register:hover {
  background-color: #e0a53b;
  border-color: #e0a53b;
}

.page-promo__cta-buttons .page-promo__button--login {
  background-color: #FFFFFF; /* White for login in CTA */
  color: #000000;
  border-color: #FFFFFF;
}

.page-promo__cta-buttons .page-promo__button--login:hover {
  background-color: #e5e5e5;
  border-color: #e5e5e5;
}

/* Terms & FAQ Section */
.page-promo__terms-faq-section {
  padding: 60px 0 80px;
  background-color: #f0f0f0;
  text-align: center;
}

.page-promo__links-wrapper {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-promo__text-link {
  color: #000000;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.05em;
  transition: color 0.3s ease;
}

.page-promo__text-link:hover {
  color: #FCBC45;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promo__hero-title {
    font-size: 3em;
  }
  .page-promo__hero-description {
    font-size: 1.1em;
  }
  .page-promo__section-title {
    font-size: 2em;
  }
  .page-promo__promo-item-image {
    width: 35%;
  }
  .page-promo__promo-item-content {
    width: 65%;
  }
  .page-promo__cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-promo {
    padding-top: var(--header-offset, 80px); /* Adjust for mobile header offset */
  }
  .page-promo__hero-section {
    padding: 40px 15px 0;
  }
  .page-promo__hero-title {
    font-size: 2.5em;
  }
  .page-promo__hero-description {
    font-size: 1em;
  }
  .page-promo__hero-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .page-promo__button--login {
    margin-left: 0;
  }
  .page-promo__section-title {
    font-size: 1.8em;
  }
  .page-promo__section-intro {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-promo__bonus-grid {
    grid-template-columns: 1fr;
  }
  .page-promo__promo-item {
    flex-direction: column;
    text-align: center;
  }
  .page-promo__promo-item-image {
    width: 100%;
    height: auto; /* Ensure auto height for responsiveness */
    min-width: 200px; /* Enforce minimum image size */
    min-height: 200px;
  }
  .page-promo__promo-item-content {
    width: 100%;
    padding: 20px;
  }
  .page-promo__promo-item-title {
    font-size: 1.6em;
  }
  .page-promo__vip-features {
    grid-template-columns: 1fr;
  }
  .page-promo__cta-title {
    font-size: 2em;
  }
  .page-promo__cta-description {
    font-size: 1em;
  }
  .page-promo__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .page-promo__cta-buttons .page-promo__button--login {
    margin-left: 0;
  }
  .page-promo__links-wrapper {
    flex-direction: column;
    gap: 15px;
  }

  /* Critical: Ensure all content images in mobile are responsive and not smaller than 200px */
  .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__section-title {
    font-size: 1.5em;
  }
  .page-promo__cta-title {
    font-size: 1.8em;
  }
  .page-promo__button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-promo__button--large {
    padding: 12px 25px;
    font-size: 1em;
  }
}