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

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

.page-promo__hero-section {
  position: relative;
  overflow: hidden;
  padding: 0;
  text-align: center;
  background-color: #000000; /* Dark background for hero text */
  color: #FFFFFF;
}

.page-promo__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 700px; /* Limit hero image height */
  opacity: 0.7;
}

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

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

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

.page-promo__cta-button {
  display: inline-block;
  background-color: #FCBC45; /* Login button color for CTA */
  color: #000000; /* Dark text for light button */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
}

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

.page-promo__section-title {
  font-size: 2.8em;
  color: #000000;
  text-align: center;
  margin: 60px 0 30px;
  position: relative;
}

.page-promo__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FCBC45;
  margin: 15px auto 0;
  border-radius: 2px;
}

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

.page-promo__bonus-card {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 40px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promo__card-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 25px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

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

.page-promo__card-title a {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promo__card-title a:hover {
  color: #FCBC45;
}

.page-promo__card-description {
  font-size: 1.1em;
  color: #555555;
  margin-bottom: 25px;
  line-height: 1.7;
}

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

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

.page-promo__action-button {
  display: block;
  width: fit-content;
  margin: 40px auto 60px;
  background-color: #FCBC45;
  color: #000000;
  padding: 18px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.3em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
}

.page-promo__action-button:hover {
  background-color: #e0a53b;
  transform: translateY(-4px);
}

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

.page-promo__promo-item {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promo__promo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.page-promo__item-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

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

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

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

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

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

.page-promo__step-item {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.page-promo__step-item:hover {
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.page-promo__step-title {
  font-size: 1.6em;
  color: #000000;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promo__step-description {
  font-size: 1em;
  color: #555555;
}

.page-promo__responsible-gaming-section {
  background-color: #f0f0f0;
  padding: 60px 20px;
  text-align: center;
  margin-top: 60px;
}

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

.page-promo__read-more-button:hover {
  background-color: #333333;
  transform: translateY(-2px);
}

.page-promo__faq-section {
  padding: 60px 0;
}

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

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

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

.page-promo__cta-final-section {
  background-color: #000000;
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  margin-top: 60px;
}

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

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

.page-promo__cta-final-button {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 18px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.4em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
}

.page-promo__cta-final-button:hover {
  background-color: #e0a53b;
  transform: translateY(-4px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promo__hero-title {
    font-size: 3em;
  }
  .page-promo__hero-description {
    font-size: 1.1em;
  }
  .page-promo__cta-button {
    padding: 12px 25px;
    font-size: 1.1em;
  }
  .page-promo__section-title {
    font-size: 2.4em;
  }
  .page-promo__card-title {
    font-size: 1.8em;
  }
  .page-promo__action-button {
    padding: 15px 30px;
    font-size: 1.2em;
  }
}

@media (max-width: 768px) {
  .page-promo__hero-image {
    max-height: 500px;
  }
  .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: 20px;
  }
  .page-promo__cta-button {
    padding: 10px 20px;
    font-size: 1em;
  }
  .page-promo__section-title {
    font-size: 2em;
    margin: 40px 0 25px;
  }
  .page-promo__section-intro {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-promo__bonus-card {
    padding: 20px;
    margin-bottom: 30px;
  }
  .page-promo__card-title {
    font-size: 1.6em;
  }
  .page-promo__card-description {
    font-size: 0.95em;
    margin-bottom: 20px;
  }
  .page-promo__card-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-promo__action-button {
    padding: 15px 25px;
    font-size: 1.1em;
    margin: 30px auto 50px;
  }
  .page-promo__grid {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 30px;
  }
  .page-promo__promo-item {
    padding: 20px;
  }
  .page-promo__item-title {
    font-size: 1.6em;
  }
  .page-promo__steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }
  .page-promo__step-title {
    font-size: 1.4em;
  }
  .page-promo__responsible-gaming-section {
    padding: 40px 20px;
    margin-top: 40px;
  }
  .page-promo__read-more-button {
    margin-top: 20px;
  }
  .page-promo__faq-section {
    padding: 40px 0;
  }
  .page-promo__faq-item {
    padding: 15px 20px;
    margin-bottom: 15px;
  }
  .page-promo__faq-question {
    font-size: 1.3em;
  }
  .page-promo__faq-answer {
    font-size: 0.9em;
  }
  .page-promo__cta-final-section {
    padding: 60px 20px;
    margin-top: 40px;
  }
  .page-promo__cta-final-title {
    font-size: 2.2em;
  }
  .page-promo__cta-final-description {
    font-size: 1.1em;
  }
  .page-promo__cta-final-button {
    padding: 15px 30px;
    font-size: 1.2em;
  }
  /* Mobile content area images must not overflow */
  .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.8em;
  }
  .page-promo__card-title {
    font-size: 1.4em;
  }
  .page-promo__item-title {
    font-size: 1.4em;
  }
  .page-promo__step-title {
    font-size: 1.2em;
  }
  .page-promo__faq-question {
    font-size: 1.1em;
  }
  .page-promo__cta-final-title {
    font-size: 1.8em;
  }
  .page-promo__cta-final-description {
    font-size: 1em;
  }
}