/* style/promo.css */
.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); /* Ensure content is not hidden by fixed header */
}

.page-promo__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #1A1A1A; /* Dark background for hero */
  color: #ffffff;
  padding: 80px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-promo__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Subtle overlay for text readability */
  z-index: 0;
}

.page-promo__hero-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.page-promo__hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-promo__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-promo__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

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

.page-promo__button--primary {
  background-color: #FFD700;
  color: #1A1A1A;
}

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

.page-promo__button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-promo__button--secondary:hover {
  background-color: #FFD700;
  color: #1A1A1A;
  transform: translateY(-2px);
}

.page-promo__section-title {
  font-size: 2.5em;
  color: #1A1A1A;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

.page-promo__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 10px auto 0;
}

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

.page-promo__promotions-section,
.page-promo__how-to-claim-section,
.page-promo__vip-section,
.page-promo__responsible-gaming-section,
.page-promo__faq-section,
.page-promo__why-choose-section,
.page-promo__cta-final-section,
.page-promo__details-list-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

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

.page-promo__promo-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.page-promo__promo-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-promo__card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-promo__card-title {
  font-size: 1.6em;
  color: #1A1A1A;
  margin-bottom: 15px;
  flex-grow: 0;
}

.page-promo__card-description {
  font-size: 0.95em;
  color: #666666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promo__button--card {
  margin-top: auto; /* Push button to bottom */
  align-self: flex-start;
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-promo__claim-steps {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.page-promo__step-item {
  background-color: #f9f9f9;
  border-left: 5px solid #FFD700;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-promo__step-title {
  font-size: 1.8em;
  color: #1A1A1A;
  margin-bottom: 10px;
}

.page-promo__step-description {
  color: #555555;
  margin-bottom: 20px;
}

.page-promo__button--step {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-promo__vip-benefits {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.page-promo__benefit-item {
  background-color: #1A1A1A;
  color: #ffffff;
  padding: 20px;
  border-radius: 8px;
  font-size: 1.1em;
  border-left: 4px solid #FFD700;
}

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

.page-promo__button--vip,
.page-promo__button--responsible {
  display: block;
  width: fit-content;
  margin: 40px auto 0;
  padding: 15px 30px;
}

.page-promo__responsible-gaming-text {
  max-width: 900px;
  margin: 20px auto 30px;
  text-align: center;
  color: #555555;
}

.page-promo__faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.page-promo__faq-item {
  background-color: #f9f9f9;
  padding: 25px;
  border-radius: 8px;
  border: 1px solid #eee;
}

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

.page-promo__faq-answer {
  color: #666666;
  margin-bottom: 15px;
}

.page-promo__button--faq {
  padding: 8px 15px;
  font-size: 0.85em;
}

.page-promo__why-choose-section .page-promo__section-text {
  max-width: 900px;
  margin: 20px auto 0;
  text-align: center;
  color: #555555;
}

.page-promo__cta-final-section {
  background-color: #1A1A1A;
  color: #ffffff;
  padding: 60px 20px;
  border-radius: 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

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

.page-promo__cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px;
  color: #f0f0f0;
}

.page-promo__button--cta {
  background-color: #FFD700;
  color: #1A1A1A;
  padding: 18px 40px;
  font-size: 1.2em;
  border-radius: 10px;
}

.page-promo__button--cta:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-promo__cta-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 8px;
  margin-top: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-promo__details-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 30px;
}

.page-promo__detail-card {
  background-color: #f0f0f0;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-promo__detail-title {
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-promo__detail-title a {
  color: #1A1A1A;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promo__detail-title a:hover {
  color: #FFD700;
}

.page-promo__detail-description {
  color: #666666;
  margin-bottom: 20px;
}

.page-promo__button--detail {
  padding: 10px 20px;
  font-size: 0.9em;
}

/* Responsive adjustments */
@media (min-width: 769px) {
  .page-promo__hero-section {
    height: 600px;
  }
  .page-promo__cta-final-section {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
  }
  .page-promo__cta-content {
    max-width: 50%;
    margin: 0;
  }
  .page-promo__cta-image {
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  .page-promo__main-title {
    font-size: 2.2em;
  }
  .page-promo__hero-description {
    font-size: 1em;
  }
  .page-promo__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-promo__button {
    width: 100%;
  }
  .page-promo__section-title {
    font-size: 2em;
  }
  .page-promo__section-intro {
    font-size: 1em;
  }
  .page-promo__promotions-grid {
    grid-template-columns: 1fr;
  }
  .page-promo__vip-benefits {
    grid-template-columns: 1fr;
  }
  .page-promo__faq-grid {
    grid-template-columns: 1fr;
  }
  /* Ensure images do not overflow horizontally */
  .page-promo img {
    max-width: 100%;
    height: auto;
  }
  .page-promo__cta-final-section {
    flex-direction: column;
    text-align: center;
  }
  .page-promo__cta-content {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .page-promo__main-title {
    font-size: 1.8em;
  }
  .page-promo__section-title {
    font-size: 1.8em;
  }
  .page-promo__hero-section,
  .page-promo__promotions-section,
  .page-promo__how-to-claim-section,
  .page-promo__vip-section,
  .page-promo__responsible-gaming-section,
  .page-promo__faq-section,
  .page-promo__why-choose-section,
  .page-promo__cta-final-section,
  .page-promo__details-list-section {
    padding: 0 15px;
  }
  .page-promo__button {
    padding: 12px 25px;
    font-size: 1em;
  }
}