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

.page-promo__hero-section {
  background: linear-gradient(135deg, #1E90FF, #0028ff);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

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

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

.page-promo__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
}

.page-promo__hero-image-container {
  max-width: 100%;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-promo__hero-image {
  width: 100%;
  height: auto;
  display: block;
  min-width: 200px;
  min-height: 200px;
}

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

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

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

.page-promo__current-promotions,
.page-promo__new-player-welcome,
.page-promo__reload-cashback,
.page-promo__vip-program,
.page-promo__how-to-claim,
.page-promo__faq,
.page-promo__cta-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

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

.page-promo__promo-card,
.page-promo__feature-item,
.page-promo__step-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promo__promo-card-image,
.page-promo__feature-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-promo__promo-card-title,
.page-promo__feature-item h3 {
  font-size: 1.5em;
  color: #1E90FF;
  margin-bottom: 10px;
}

.page-promo__promo-card-text {
  font-size: 1em;
  color: #666666;
  margin-bottom: 20px;
}

.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;
  font-size: 1.1em;
  text-align: center;
}

.page-promo__button--primary {
  background-color: #FFD700;
  color: #1E90FF;
  border: 2px solid #FFD700;
}

.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: #1E90FF;
  transform: translateY(-2px);
}

.page-promo__new-player-welcome .page-promo__welcome-offer-details,
.page-promo__vip-program .page-promo__vip-details {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-promo__new-player-welcome .page-promo__welcome-offer-details:nth-child(even) {
  flex-direction: row-reverse;
}

.page-promo__welcome-image,
.page-promo__vip-image {
  flex: 1;
  max-width: 50%;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

.page-promo__welcome-text,
.page-promo__vip-text {
  flex: 1;
  text-align: left;
}

.page-promo__welcome-text h3,
.page-promo__vip-text h3 {
  font-size: 1.8em;
  color: #1E90FF;
  margin-bottom: 15px;
}

.page-promo__welcome-text ul,
.page-promo__vip-text ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-promo__welcome-text li,
.page-promo__vip-text li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  color: #555555;
}

.page-promo__welcome-text li::before,
.page-promo__vip-text li::before {
  content: '✔️';
  position: absolute;
  left: 0;
  color: #FFD700;
}

.page-promo__step-number {
  background-color: #FFD700;
  color: #1E90FF;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  margin: 0 auto 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-promo__step-item h3 {
  font-size: 1.4em;
  color: #1E90FF;
  margin-bottom: 10px;
}

.page-promo__step-item p {
  color: #666666;
}

.page-promo__faq-list {
  margin-top: 40px;
}

.page-promo__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-promo__faq-question {
  background-color: #1E90FF;
  color: #ffffff;
  padding: 18px 25px;
  margin: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-promo__faq-question:hover {
  background-color: #0028ff;
}

.page-promo__faq-question::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-promo__faq-item.active .page-promo__faq-question::after {
  transform: rotate(45deg);
}

.page-promo__faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  background-color: #ffffff;
  color: #333333;
}

.page-promo__faq-item.active .page-promo__faq-answer {
  max-height: 300px; /* Adjust based on content */
  padding: 15px 25px;
}

.page-promo__cta-section {
  background-color: #FFD700;
  color: #1E90FF;
  padding: 60px 20px;
  text-align: center;
  border-radius: 10px;
  margin-bottom: 60px;
}

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

.page-promo__cta-section .page-promo__section-title::after {
  background-color: #1E90FF;
}

.page-promo__cta-section .page-promo__section-description {
  color: #333333;
  margin-bottom: 30px;
}

.page-promo__action-center {
  text-align: center;
  margin-top: 40px;
}

.page-promo__action-center .page-promo__button {
  margin: 0 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promo__hero-title {
    font-size: 2.8em;
  }
  .page-promo__hero-description {
    font-size: 1.1em;
  }
  .page-promo__new-player-welcome .page-promo__welcome-offer-details,
  .page-promo__vip-program .page-promo__vip-details {
    flex-direction: column;
  }
  .page-promo__welcome-image,
  .page-promo__vip-image {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-promo__hero-section {
    padding: 60px 15px;
  }
  .page-promo__hero-title {
    font-size: 2.2em;
  }
  .page-promo__hero-description {
    font-size: 1em;
  }
  .page-promo__section-title {
    font-size: 2em;
  }
  .page-promo__section-description {
    font-size: 0.95em;
  }
  .page-promo__promo-grid,
  .page-promo__features-grid,
  .page-promo__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-promo__promo-card-image,
  .page-promo__feature-image,
  .page-promo__welcome-image,
  .page-promo__vip-image {
    max-width: 100%;
    height: auto; /* Ensure images scale down */
    min-width: 200px;
    min-height: 200px;
  }
  .page-promo__button {
    padding: 10px 20px;
    font-size: 1em;
  }
  .page-promo__action-center .page-promo__button {
    margin: 10px 0;
    display: block;
  }
  .page-promo__new-player-welcome .page-promo__welcome-offer-details,
  .page-promo__vip-program .page-promo__vip-details {
    gap: 20px;
  }
  /* Ensure no horizontal overflow */
  .page-promo {
    overflow-x: hidden;
  }
  .page-promo__promo-card img, .page-promo__feature-item img, .page-promo__new-player-welcome img, .page-promo__vip-program img {
    max-width: 100% !important;
    height: auto !important;
  }
}

@media (max-width: 480px) {
  .page-promo__hero-title {
    font-size: 1.8em;
  }
  .page-promo__section-title {
    font-size: 1.8em;
  }
  .page-promo__promo-card,
  .page-promo__feature-item,
  .page-promo__step-item {
    padding: 20px;
  }
  .page-promo__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-promo__faq-answer {
    padding: 10px 20px;
  }
}