.page-vip-program {
  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 */
}

@media (max-width: 768px) {
  .page-vip-program {
    overflow-x: hidden; /* Prevent horizontal scroll on mobile */
  }
}

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

.page-vip-program__hero-section {
  position: relative;
  text-align: center;
  color: #ffffff;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden; /* Ensure image doesn't overflow */
}

.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); /* Darken image for text readability */
}

.page-vip-program__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.page-vip-program__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  font-weight: bold;
}

.page-vip-program__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #f0f0f0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.page-vip-program__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold */
  color: #8B0000; /* Dark Red */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  min-width: 200px; /* Ensure button is not too small */
  text-align: center;
}

.page-vip-program__cta-button:hover {
  background-color: #e0b800;
  color: #5a0000;
}

.page-vip-program__cta-button--secondary {
  background-color: #8B0000; /* Dark Red */
  color: #FFD700; /* Gold */
  margin-left: 20px;
}

.page-vip-program__cta-button--secondary:hover {
  background-color: #6a0000;
  color: #fff;
}

.page-vip-program__section-title {
  font-size: 2.5em;
  color: #8B0000; /* Dark Red */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 40px;
}

.page-vip-program__text-content {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-vip-program__text-content--center {
  text-align: center;
}

.page-vip-program__content-image {
  display: block;
  margin: 40px auto;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Enforce min width */
  min-height: 200px; /* Enforce min height */
}

/* Tier Section */
.page-vip-program__tiers-section {
  background-color: #f8f8f8;
  padding: 60px 0;
}

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

.page-vip-program__tier-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-vip-program__tier-image {
  max-width: 150px;
  height: auto;
  margin: 0 auto 20px;
  min-width: 200px; /* Enforce min width */
  min-height: 200px; /* Enforce min height */
}

.page-vip-program__tier-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold */
  margin-bottom: 15px;
}

.page-vip-program__tier-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.page-vip-program__tier-benefits li {
  margin-bottom: 10px;
  font-size: 1em;
  color: #555555;
  position: relative;
  padding-left: 25px;
}

.page-vip-program__tier-benefits li::before {
  content: '✔';
  color: #8B0000; /* Dark Red */
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* How to Join Section */
.page-vip-program__how-to-join-section, .page-vip-program__exclusive-promos-section, .page-vip-program__service-support-section, .page-vip-program__responsible-gaming-section, .page-vip-program__why-choose-section {
  padding: 60px 0;
}

.page-vip-program__join-steps {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
  margin-top: 40px;
}

.page-vip-program__join-steps li {
  counter-increment: step-counter;
  font-size: 1.15em;
  margin-bottom: 15px;
  padding-left: 40px;
  position: relative;
}

.page-vip-program__join-steps li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  background-color: #8B0000; /* Dark Red */
  color: #FFD700; /* Gold */
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9em;
}

.page-vip-program__promo-list, .page-vip-program__service-list, .page-vip-program__why-list {
  list-style: disc;
  margin: 40px 0 20px 20px;
  font-size: 1.1em;
  color: #333333;
}

.page-vip-program__promo-list li, .page-vip-program__service-list li, .page-vip-program__why-list li {
  margin-bottom: 10px;
}

.page-vip-program__text-link {
  color: #8B0000;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
  display: block;
  text-align: center;
  margin-top: 20px;
}

.page-vip-program__text-link:hover {
  color: #FFD700;
}

/* FAQ Section */
.page-vip-program__faq-section {
  background-color: #f8f8f8;
  padding: 60px 0;
}

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

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

.page-vip-program__faq-question {
  font-size: 1.4em;
  color: #8B0000; /* Dark Red */
  margin-bottom: 10px;
}

.page-vip-program__faq-answer {
  font-size: 1em;
  color: #555555;
}

/* Final CTA Section */
.page-vip-program__cta-final-section {
  padding: 80px 0;
  background-color: #8B0000; /* Dark Red */
  color: #ffffff;
  text-align: center;
}

.page-vip-program__cta-final-content .page-vip-program__section-title {
  color: #FFD700; /* Gold */
}

.page-vip-program__cta-final-content .page-vip-program__text-content {
  color: #f0f0f0;
  max-width: 800px;
  margin: 0 auto 40px;
}

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

/* Responsive adjustments */
@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-title {
    font-size: 2.5em;
  }
  .page-vip-program__hero-description {
    font-size: 1em;
  }
  .page-vip-program__cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  .page-vip-program__cta-button--secondary {
    margin-left: 0;
  }
  .page-vip-program__hero-section {
    padding: 60px 20px;
  }
  .page-vip-program__tier-grid {
    grid-template-columns: 1fr;
  }
  .page-vip-program__content-image, .page-vip-program__tier-image {
    max-width: 100%;
    height: auto; /* Ensure images are responsive */
    min-width: 200px; /* Enforce min width */
    min-height: 200px; /* Enforce min height */
  }
  .page-vip-program__hero-image img,
  .page-vip-program__introduction-section img,
  .page-vip-program__how-to-join-section img,
  .page-vip-program__exclusive-promos-section img,
  .page-vip-program__service-support-section img,
  .page-vip-program__responsible-gaming-section img,
  .page-vip-program__why-choose-section img {
    max-width: 100% !important;
    height: auto !important;
  }
}

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