.page-vip-program {
  color: #ffffff; /* Text color for dark background */
  background-color: var(--secondary-color); /* Assuming shared.css sets --secondary-color to a dark background */
}

.page-vip-program__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  min-height: 500px;
}

.page-vip-program__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.6); /* Slightly darken image for text readability, not changing color */
}

.page-vip-program__hero-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 40px 20px;
}

.page-vip-program__hero-content {
  position: relative;
  z-index: 3;
  color: #ffffff;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
}

.page-vip-program__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
}

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

.page-vip-program__hero-button,
.page-vip-program__action-button,
.page-vip-program__cta-button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}

.page-vip-program__hero-button {
  background-color: #FCBC45; /* Login color */
  color: #000000; /* Dark text for light button */
  border: none;
}

.page-vip-program__hero-button:hover {
  background-color: #e0a53a;
  transform: translateY(-2px);
}

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

.page-vip-program__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: #FCBC45;
}

.page-vip-program__text-content {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 25px;
  color: #e0e0e0;
  text-align: justify;
}

.page-vip-program__introduction-section {
  background-color: #000000;
  padding: 60px 0;
}

.page-vip-program__tiers-section {
  background-color: #1a1a1a;
  padding: 60px 0;
}

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

.page-vip-program__tier-card {
  background-color: #000000;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-vip-program__tier-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.page-vip-program__tier-image {
  width: 250px;
  height: 200px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 5px;
}

.page-vip-program__card-title {
  font-size: 1.8em;
  color: #FCBC45;
  margin-bottom: 15px;
}

.page-vip-program__card-description {
  font-size: 1em;
  line-height: 1.6;
  color: #cccccc;
  flex-grow: 1;
}

.page-vip-program__action-button {
  background-color: #FCBC45;
  color: #000000;
  border: none;
  margin-top: 30px;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.page-vip-program__action-button:hover {
  background-color: #e0a53a;
  transform: translateY(-2px);
}

.page-vip-program__benefits-overview-section {
  background-color: #000000;
  padding: 60px 0;
}

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

.page-vip-program__benefit-item {
  background-color: #1a1a1a;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.page-vip-program__benefit-icon {
  width: 250px;
  height: 180px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 5px;
}

.page-vip-program__benefit-title {
  font-size: 1.5em;
  color: #FCBC45;
  margin-bottom: 10px;
}

.page-vip-program__benefit-description {
  font-size: 1em;
  line-height: 1.6;
  color: #cccccc;
}

.page-vip-program__how-to-join-section {
  background-color: #1a1a1a;
  padding: 60px 0;
}

.page-vip-program__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-vip-program__step-item {
  background-color: #000000;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  position: relative;
  padding-left: 70px;
}

.page-vip-program__step-item::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #FCBC45;
  color: #000000;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
}

.page-vip-program__step-title {
  font-size: 1.6em;
  color: #FCBC45;
  margin-bottom: 10px;
}

.page-vip-program__step-description {
  font-size: 1em;
  line-height: 1.6;
  color: #cccccc;
}

.page-vip-program__step-description a {
  color: #FCBC45;
  text-decoration: underline;
}

.page-vip-program__step-description a:hover {
  color: #e0a53a;
}

.page-vip-program__faq-section {
  background-color: #000000;
  padding: 60px 0;
}

.page-vip-program__faq-items {
  margin-top: 50px;
}

.page-vip-program__faq-item {
  background-color: #1a1a1a;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.page-vip-program__faq-question {
  font-size: 1.4em;
  color: #FCBC45;
  margin-bottom: 15px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

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

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

.page-vip-program__faq-answer {
  font-size: 1em;
  line-height: 1.6;
  color: #cccccc;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.page-vip-program__faq-answer.open {
  max-height: 200px; /* Adjust as needed */
}

.page-vip-program__cta-section {
  background-color: #1a1a1a;
  padding: 60px 0;
  text-align: center;
}

.page-vip-program__cta-buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-vip-program__cta-button {
  min-width: 180px;
}

.page-vip-program__cta-button--register {
  background-color: #ffffff; /* Register color */
  color: #000000;
  border: 2px solid #ffffff;
}

.page-vip-program__cta-button--register:hover {
  background-color: #e0e0e0;
  border-color: #e0e0e0;
}

.page-vip-program__cta-button--login {
  background-color: #FCBC45; /* Login color */
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-vip-program__cta-button--login:hover {
  background-color: #e0a53a;
  border-color: #e0a53a;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-vip-program__hero-title {
    font-size: 3em;
  }

  .page-vip-program__hero-description {
    font-size: 1.2em;
  }

  .page-vip-program__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-vip-program__hero-section {
    min-height: 400px;
    padding: 30px 15px;
  }

  .page-vip-program__hero-title {
    font-size: 2.2em;
  }

  .page-vip-program__hero-description {
    font-size: 1em;
  }

  .page-vip-program__hero-button,
  .page-vip-program__action-button,
  .page-vip-program__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-vip-program__container {
    padding: 30px 15px;
  }

  .page-vip-program__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-vip-program__text-content {
    font-size: 0.95em;
  }

  .page-vip-program__tier-cards,
  .page-vip-program__benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-vip-program__tier-card,
  .page-vip-program__benefit-item,
  .page-vip-program__faq-item {
    padding: 20px;
  }

  .page-vip-program__tier-image,
  .page-vip-program__benefit-icon {
    width: 100%;
    max-width: 300px; /* Ensure images are not too small */
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }

  .page-vip-program__card-title,
  .page-vip-program__benefit-title {
    font-size: 1.5em;
  }

  .page-vip-program__step-item {
    padding-left: 60px;
  }

  .page-vip-program__step-item::before {
    left: 15px;
    width: 35px;
    height: 35px;
    font-size: 1.2em;
  }

  .page-vip-program__step-title {
    font-size: 1.4em;
  }

  .page-vip-program__faq-question {
    font-size: 1.2em;
  }

  .page-vip-program__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-vip-program__cta-button {
    width: 100%;
    max-width: 300px;
  }

  /* Critical: Ensure all images within page-vip-program are responsive and not smaller than 200px */
  .page-vip-program img {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
    object-fit: contain;
  }
}

@media (max-width: 480px) {
  .page-vip-program__hero-title {
    font-size: 1.8em;
  }

  .page-vip-program__hero-description {
    font-size: 0.9em;
  }

  .page-vip-program__hero-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }

  .page-vip-program__section-title {
    font-size: 1.5em;
  }

  .page-vip-program__text-content {
    font-size: 0.9em;
  }

  .page-vip-program__card-title,
  .page-vip-program__benefit-title {
    font-size: 1.3em;
  }

  .page-vip-program__step-title {
    font-size: 1.2em;
  }

  .page-vip-program__faq-question {
    font-size: 1.1em;
  }
}

/* Set counter for ordered list */
.page-vip-program__how-to-join-section {
  counter-reset: step-counter;
}