.page-promo {
  color: #333333; /* Default text color for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  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;
}

/* Hero Section */
.page-promo__hero-section {
  background-color: #000000; /* Main color as section background */
  color: #FFFFFF;
  padding: 80px 20px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-promo__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.3;
}

.page-promo__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-promo__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.page-promo__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FCBC45; /* Login button color for emphasis */
}

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

.page-promo__cta-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, color 0.3s ease;
  margin: 10px;
  min-width: 200px; /* Ensure buttons are not too small */
  text-align: center;
}

.page-promo__cta-button--register {
  background-color: #FFFFFF; /* Register button color */
  color: #000000;
  border: 2px solid #FFFFFF;
}

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

.page-promo__cta-button--login {
  background-color: #FCBC45; /* Login button color */
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-promo__cta-button--login:hover {
  background-color: transparent;
  color: #FCBC45;
}

/* General Section Styling */
.page-promo__introduction-section,
.page-promo__featured-bonuses-section,
.page-promo__how-to-claim-section,
.page-promo__tongitsgo-spotlight-section,
.page-promo__terms-section,
.page-promo__responsible-gaming-section,
.page-promo__faq-section,
.page-promo__cta-final-section {
  padding: 60px 0;
  background-color: #FFFFFF; /* Auxiliary color as section background */
}

.page-promo__introduction-section {
  background-color: #f8f8f8;
}

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

.page-promo__text-content {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #333333;
  text-align: justify;
}

/* Bonus Grid */
.page-promo__bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

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

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

.page-promo__bonus-card-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

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

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

.page-promo__bonus-card-button {
  display: inline-block;
  padding: 12px 25px;
  background-color: #FCBC45;
  color: #000000;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease;
  border: 2px solid #FCBC45;
}

.page-promo__bonus-card-button:hover {
  background-color: #e0a53b;
  color: #FFFFFF;
}

/* How to Claim Section */
.page-promo__how-to-claim-section {
  background-color: #000000;
  color: #FFFFFF;
}

.page-promo__how-to-claim-section .page-promo__section-title {
  color: #FCBC45;
}

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

.page-promo__step-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-promo__step-icon {
  width: 60px;
  height: 60px;
  background-color: #FCBC45;
  color: #000000;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
}

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

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

.page-promo__step-button {
  display: inline-block;
  padding: 12px 25px;
  background-color: #FFFFFF;
  color: #000000;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease;
  border: 2px solid #FFFFFF;
}

.page-promo__step-button:hover {
  background-color: #FCBC45;
  color: #000000;
  border-color: #FCBC45;
}

/* Tongits Go Spotlight Section */
.page-promo__tongitsgo-spotlight-section {
  background-color: #f8f8f8;
}

.page-promo__spotlight-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.page-promo__spotlight-text {
  flex: 1;
  min-width: 300px;
}

.page-promo__spotlight-image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-promo__spotlight-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

.page-promo__learn-more-button {
  display: inline-block;
  padding: 12px 25px;
  background-color: #000000;
  color: #FFFFFF;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
  transition: background-color 0.3s ease;
  border: 2px solid #000000;
}

.page-promo__learn-more-button:hover {
  background-color: #FCBC45;
  color: #000000;
  border-color: #FCBC45;
}

/* Terms & Responsible Gaming Sections */
.page-promo__terms-section,
.page-promo__responsible-gaming-section {
  background-color: #FFFFFF;
}

/* FAQ Section */
.page-promo__faq-section {
  background-color: #f8f8f8;
}

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

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

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

/* Final CTA Section */
.page-promo__cta-final-section {
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
}

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

.page-promo__cta-final-section .page-promo__text-content {
  color: #CCCCCC;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promo__hero-title {
    font-size: 3em;
  }

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

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

@media (max-width: 768px) {
  .page-promo__hero-section {
    padding: 60px 20px 30px;
  }

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

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

  .page-promo__cta-button {
    padding: 12px 25px;
    font-size: 1em;
    min-width: unset;
    width: 100%;
    margin: 5px 0;
  }

  .page-promo__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .page-promo__bonus-grid,
  .page-promo__steps-grid {
    grid-template-columns: 1fr;
  }

  .page-promo__spotlight-content {
    flex-direction: column;
  }

  .page-promo__spotlight-image {
    order: -1; /* Image appears before text on mobile */
  }

  .page-promo__text-content {
    font-size: 1em;
  }

  .page-promo__bonus-card-image,
  .page-promo__spotlight-image {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure images remain at least 200px wide */
    min-height: 200px; /* Ensure images remain at least 200px high */
  }
  
  /* IMPORTANT: All images within .page-promo must be responsive and not cause overflow */
  .page-promo img {
    max-width: 100%;
    height: auto;
    display: block;
  }
}

@media (max-width: 480px) {
  .page-promo__hero-title {
    font-size: 2em;
  }

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

  .page-promo__bonus-card-title {
    font-size: 1.4em;
  }

  .page-promo__step-title {
    font-size: 1.3em;
  }
}