.page-promo {
  color: #333333;
}

.page-promo__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px);
  background-color: #f8f8f8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  min-height: 600px;
}

.page-promo__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 15px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  margin-bottom: 30px;
}

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

.page-promo__hero-description {
  font-size: 1.3em;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-promo__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #8B0000;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

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

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

.page-promo__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

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

.page-promo__section-title {
  font-size: 2.8em;
  color: #8B0000;
  text-align: center;
  margin-bottom: 25px;
  font-weight: bold;
}

.page-promo__section-intro {
  font-size: 1.1em;
  color: #666;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

.page-promo__welcome-bonus-section,
.page-promo__daily-rewards-section,
.page-promo__vip-program-section,
.page-promo__terms-section,
.page-promo__faq-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.page-promo__welcome-bonus-section {
  background-color: #fffaf0;
}

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

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

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

.page-promo__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
  max-width: 400px; /* Ensure images are not too small */
  min-width: 200px;
  min-height: 200px;
}

.page-promo__card-title {
  font-size: 1.8em;
  color: #8B0000;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promo__card-text {
  font-size: 1em;
  color: #777;
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 25px;
}

.page-promo__card-button {
  display: inline-block;
  background-color: #FFD700;
  color: #8B0000;
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease;
}

.page-promo__card-button:hover {
  background-color: #e6c200;
}

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

.page-promo__feature-item {
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-promo__feature-item:hover {
  transform: translateY(-5px);
}

.page-promo__feature-icon {
  width: 100%;
  height: 150px;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 10px;
  max-width: 300px; /* Ensure images are not too small */
  min-width: 200px;
  min-height: 200px;
}

.page-promo__feature-title {
  font-size: 1.5em;
  color: #8B0000;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promo__feature-description {
  font-size: 0.95em;
  color: #777;
  line-height: 1.6;
}

.page-promo__cta-button--centered {
  margin-top: 50px;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.page-promo__vip-program-section {
  background-color: #fffaf0;
}

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

.page-promo__vip-card {
  background-color: #333333;
  border-radius: 15px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  padding: 30px;
  text-align: center;
  color: #ffffff;
  transition: transform 0.3s ease;
}

.page-promo__vip-card:hover {
  transform: translateY(-8px);
}

.page-promo__vip-card--bronze {
  background-color: #CD7F32;
}

.page-promo__vip-card--silver {
  background-color: #C0C0C0;
}

.page-promo__vip-card--gold {
  background-color: #FFD700;
  color: #8B0000;
}

.page-promo__vip-title {
  font-size: 2em;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promo__vip-card--gold .page-promo__vip-title {
  color: #8B0000;
}

.page-promo__vip-benefits {
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 20px;
}

.page-promo__vip-icon {
  width: 100%;
  height: 150px;
  object-fit: contain;
  max-width: 200px; /* Ensure images are not too small */
  min-width: 200px;
  min-height: 200px;
}

.page-promo__terms-section {
  background-color: #f0f0f0;
}

.page-promo__terms-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.page-promo__terms-item {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  font-size: 1em;
  color: #555;
  line-height: 1.5;
  position: relative;
  padding-left: 35px;
}

.page-promo__terms-item::before {
  content: '✓';
  position: absolute;
  left: 15px;
  color: #FFD700;
  font-weight: bold;
}

.page-promo__terms-final-note {
  text-align: center;
  font-size: 1.1em;
  color: #666;
  margin-top: 40px;
  line-height: 1.7;
}

.page-promo__terms-buttons {
  text-align: center;
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-promo__secondary-button {
  display: inline-block;
  background-color: #8B0000;
  color: #ffffff;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-promo__secondary-button:hover {
  background-color: #a01010;
}

.page-promo__faq-section {
  background-color: #ffffff;
}

.page-promo__faq-item {
  background-color: #fdfdfd;
  border: 1px solid #eee;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

.page-promo__faq-question {
  font-size: 1.4em;
  color: #8B0000;
  margin-bottom: 10px;
  cursor: pointer;
  font-weight: bold;
  position: relative;
  padding-right: 30px;
}

.page-promo__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-promo__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-promo__faq-answer {
  font-size: 1em;
  color: #666;
  line-height: 1.6;
  display: none;
  padding-top: 15px;
  border-top: 1px solid #eee;
  margin-top: 15px;
}

.page-promo__faq-question.active + .page-promo__faq-answer {
  display: block;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promo__hero-title {
    font-size: 2.8em;
  }
  .page-promo__hero-description {
    font-size: 1.1em;
  }
  .page-promo__section-title {
    font-size: 2.2em;
  }
  .page-promo__bonus-cards, .page-promo__features-grid, .page-promo__vip-tiers {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-promo__hero-section {
    min-height: 500px;
    padding: 40px 15px;
  }
  .page-promo__hero-content {
    padding: 30px 15px;
  }
  .page-promo__hero-title {
    font-size: 2.2em;
  }
  .page-promo__hero-description {
    font-size: 1em;
  }
  .page-promo__cta-button {
    padding: 12px 25px;
    font-size: 1.1em;
  }
  .page-promo__container {
    padding: 30px 15px;
  }
  .page-promo__section-title {
    font-size: 1.8em;
  }
  .page-promo__section-intro {
    font-size: 0.95em;
  }
  .page-promo__bonus-cards, .page-promo__features-grid, .page-promo__vip-tiers {
    grid-template-columns: 1fr;
  }
  .page-promo__terms-list {
    grid-template-columns: 1fr;
  }
  .page-promo__terms-item {
    padding-left: 25px;
  }
  .page-promo__terms-item::before {
    left: 10px;
  }
  .page-promo__terms-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-promo__secondary-button {
    width: 100%;
  }
  /* Ensure content images do not cause horizontal scroll */
  .page-promo img {
    max-width: 100%;
    height: auto;
  }
  /* Specific overrides to ensure min-width of 200px for content images is respected */
  .page-promo__card-image, 
  .page-promo__feature-icon, 
  .page-promo__vip-icon {
    min-width: 200px;
    min-height: 200px;
    width: 100%; /* Allows flexbox to adjust, but max-width: 100% still applies */
    height: auto;
    object-fit: cover;
  }
}

@media (max-width: 480px) {
  .page-promo__hero-title {
    font-size: 1.8em;
  }
  .page-promo__hero-description {
    font-size: 0.9em;
  }
  .page-promo__hero-content {
    width: 95%;
  }
  .page-promo__section-title {
    font-size: 1.5em;
  }
  .page-promo__card-title {
    font-size: 1.5em;
  }
  .page-promo__feature-title {
    font-size: 1.3em;
  }
  .page-promo__vip-title {
    font-size: 1.8em;
  }
  .page-promo__faq-question {
    font-size: 1.2em;
  }
}