.page-promo-vip-program {
  color: #ffffff; /* Light text for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: transparent; /* Body background from shared.css */
}

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

.page-promo-vip-program__hero-section {
  position: relative;
  text-align: center;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  overflow: hidden;
}

.page-promo-vip-program__hero-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

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

.page-promo-vip-program__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  max-width: 800px;
  padding: 30px;
  background: rgba(26, 26, 46, 0.8); /* #1A1A2E with transparency */
  border-radius: 10px;
}

.page-promo-vip-program__hero-title {
  font-size: 3.5em;
  color: #E9B000; /* Auxiliary color for emphasis */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}

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

.page-promo-vip-program__hero-button,
.page-promo-vip-program__cta-button {
  display: inline-block;
  background-color: #E9B000; /* Auxiliary color for buttons */
  color: #1A1A2E;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(233, 176, 0, 0.4);
}

.page-promo-vip-program__hero-button:hover,
.page-promo-vip-program__cta-button:hover {
  background-color: #ffc81a;
  transform: translateY(-3px);
}

.page-promo-vip-program__section-title {
  font-size: 2.5em;
  color: #E9B000;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 40px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-promo-vip-program__introduction-section,
.page-promo-vip-program__benefits-section,
.page-promo-vip-program__how-to-join-section,
.page-promo-vip-program__faq-section,
.page-promo-vip-program__cta-final-section {
  padding: 60px 0;
}

.page-promo-vip-program__text-content {
  font-size: 1.1em;
  color: #f0f0f0;
  max-width: 900px;
  margin: 0 auto 30px auto;
  text-align: center;
}

.page-promo-vip-program__tiers-section {
  background-color: rgba(26, 26, 46, 0.6); /* #1A1A2E with transparency */
  padding: 80px 0;
}

.page-promo-vip-program__tier-grid,
.page-promo-vip-program__benefits-grid,
.page-promo-vip-program__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promo-vip-program__tier-card,
.page-promo-vip-program__benefit-card,
.page-promo-vip-program__step-card {
  background-color: rgba(255, 255, 255, 0.08); /* Slightly transparent white for cards */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-promo-vip-program__tier-card:hover,
.page-promo-vip-program__benefit-card:hover,
.page-promo-vip-program__step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(233, 176, 0, 0.4);
}

.page-promo-vip-program__tier-image,
.page-promo-vip-program__benefit-icon {
  width: 100%;
  max-width: 400px; /* Ensure images are not too small or too large */
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  min-width: 200px; /* Minimum size requirement */
  min-height: 200px; /* Minimum size requirement */
}

.page-promo-vip-program__tier-title,
.page-promo-vip-program__benefit-title,
.page-promo-vip-program__step-title {
  font-size: 1.8em;
  color: #E9B000;
  margin-bottom: 15px;
}

.page-promo-vip-program__tier-benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  text-align: left;
  width: 100%;
  flex-grow: 1;
}

.page-promo-vip-program__tier-benefits li {
  color: #f0f0f0;
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.page-promo-vip-program__tier-benefits li::before {
  content: '★';
  color: #E9B000;
  position: absolute;
  left: 0;
  font-size: 1.2em;
  line-height: 1;
}

.page-promo-vip-program__tier-button,
.page-promo-vip-program__step-button {
  display: inline-block;
  background-color: #1A1A2E;
  color: #E9B000;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin-top: auto; /* Push button to bottom */
}

.page-promo-vip-program__tier-button:hover,
.page-promo-vip-program__step-button:hover {
  background-color: #E9B000;
  color: #1A1A2E;
}

.page-promo-vip-program__benefit-description {
  color: #cccccc;
  font-size: 0.95em;
}

.page-promo-vip-program__cta-container {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background: linear-gradient(90deg, #1A1A2E, rgba(233, 176, 0, 0.1));
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-promo-vip-program__cta-text {
  font-size: 1.5em;
  color: #E9B000;
  margin-bottom: 25px;
  font-weight: bold;
}

.page-promo-vip-program__how-to-join-section {
  background-color: rgba(26, 26, 46, 0.4); /* #1A1A2E with transparency */
}

.page-promo-vip-program__step-description {
  color: #cccccc;
  font-size: 0.95em;
  flex-grow: 1;
}

.page-promo-vip-program__faq-section {
  padding-bottom: 80px;
}

.page-promo-vip-program__faq-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promo-vip-program__faq-question {
  font-size: 1.3em;
  color: #E9B000;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-promo-vip-program__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-promo-vip-program__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-promo-vip-program__faq-answer {
  color: #f0f0f0;
  font-size: 1em;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  padding-top: 0;
}

.page-promo-vip-program__faq-answer.active {
  max-height: 200px; /* Adjust as needed */
  padding-top: 15px;
}

.page-promo-vip-program__cta-final-section {
  background-color: #1A1A2E;
  text-align: center;
  padding: 80px 0;
}

.page-promo-vip-program__cta-button--large {
  padding: 18px 40px;
  font-size: 1.3em;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-promo-vip-program__hero-title {
    font-size: 2.8em;
  }
  .page-promo-vip-program__hero-description {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-promo-vip-program__hero-title {
    font-size: 2em;
  }
  .page-promo-vip-program__hero-description {
    font-size: 1em;
  }
  .page-promo-vip-program__hero-content {
    width: 90%;
    padding: 20px;
  }
  .page-promo-vip-program__section-title {
    font-size: 2em;
  }
  .page-promo-vip-program__text-content {
    font-size: 1em;
  }
  .page-promo-vip-program__tier-grid,
  .page-promo-vip-program__benefits-grid,
  .page-promo-vip-program__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-promo-vip-program__tier-image,
  .page-promo-vip-program__benefit-icon,
  .page-promo-vip-program__hero-image {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }
  /* Ensure all images in content area are responsive and not smaller than 200px */
  .page-promo-vip-program img {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }
  .page-promo-vip-program__hero-section {
    padding-top: var(--header-offset, 120px);
  }
  .page-promo-vip-program__cta-text {
    font-size: 1.2em;
  }
  .page-promo-vip-program__cta-button--large {
    font-size: 1.1em;
    padding: 15px 30px;
  }
}

@media (max-width: 480px) {
  .page-promo-vip-program__hero-title {
    font-size: 1.8em;
  }
  .page-promo-vip-program__hero-description {
    font-size: 0.9em;
  }
  .page-promo-vip-program__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promo-vip-program__section-title {
    font-size: 1.8em;
  }
  .page-promo-vip-program__faq-question {
    font-size: 1.1em;
  }
  .page-promo-vip-program__cta-text {
    font-size: 1em;
  }
  .page-promo-vip-program__cta-button--large {
    font-size: 1em;
    padding: 12px 25px;
  }
}