.page-vip-program {
  color: #ffffff; /* Text color for dark body background */
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-vip-program__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  background-color: #000000; /* Dark background for hero */
  position: relative;
  overflow: hidden;
}

.page-vip-program__hero-content {
  max-width: 800px;
  z-index: 1;
  position: relative;
}

.page-vip-program__hero-title {
  font-size: 3.5em;
  font-weight: bold;
  margin-bottom: 20px;
  color: #FCBC45; /* Login color for emphasis */
  line-height: 1.2;
}

.page-vip-program__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #ffffff;
  line-height: 1.6;
}

.page-vip-program__hero-button {
  display: inline-block;
  padding: 15px 30px;
  margin: 10px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 2px solid transparent;
}

.page-vip-program__hero-button:first-of-type {
  background-color: #FCBC45; /* Login color */
  color: #000000; /* Main color */
}

.page-vip-program__hero-button:first-of-type:hover {
  background-color: #e0a53b;
}

.page-vip-program__hero-button--secondary {
  background-color: transparent;
  color: #FFFFFF; /* Register color */
  border-color: #FFFFFF;
}

.page-vip-program__hero-button--secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.page-vip-program__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  overflow: hidden;
}

.page-vip-program__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.page-vip-program__about-section,
.page-vip-program__tiers-section,
.page-vip-program__benefits-section,
.page-vip-program__how-to-join-section,
.page-vip-program__faq-section,
.page-vip-program__cta-section {
  padding: 80px 0;
  background-color: #000000; /* Main color as section background */
}

.page-vip-program__section-title {
  font-size: 2.8em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: #FCBC45; /* Login color for emphasis */
}

.page-vip-program__section-subtitle {
  font-size: 1.2em;
  text-align: center;
  margin-bottom: 60px;
  color: #ffffff;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-vip-program__tiers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.page-vip-program__tier-card {
  background-color: rgba(255, 255, 255, 0.05); /* Slightly transparent white on dark background */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-vip-program__tier-card:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.1);
}

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

.page-vip-program__tier-description {
  font-size: 1em;
  color: #cccccc;
  margin-bottom: 20px;
  line-height: 1.6;
}

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

.page-vip-program__tier-benefits-list li {
  font-size: 0.95em;
  color: #ffffff;
  margin-bottom: 8px;
  position: relative;
  padding-left: 25px;
}

.page-vip-program__tier-benefits-list li::before {
  content: '✔';
  color: #FCBC45;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-vip-program__tiers-image-wrapper {
  text-align: center;
  margin-bottom: 40px;
}

.page-vip-program__tiers-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

.page-vip-program__tiers-button,
.page-vip-program__benefits-button,
.page-vip-program__how-to-join-button {
  display: block;
  width: fit-content;
  margin: 40px auto 0 auto;
  padding: 15px 40px;
  background-color: #FCBC45;
  color: #000000;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.page-vip-program__tiers-button:hover,
.page-vip-program__benefits-button:hover,
.page-vip-program__how-to-join-button:hover {
  background-color: #e0a53b;
}

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

.page-vip-program__benefit-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-vip-program__benefit-item:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.1);
}

.page-vip-program__benefit-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

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

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

.page-vip-program__how-to-join-section {
  text-align: center;
}

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

.page-vip-program__step-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background-color 0.3s ease;
}

.page-vip-program__step-card:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.page-vip-program__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #FCBC45;
  color: #000000;
  border-radius: 50%;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
}

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

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

.page-vip-program__disclaimer {
  font-size: 0.9em;
  color: #999999;
  margin-top: 20px;
}

.page-vip-program__faq-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-vip-program__faq-question {
  font-size: 1.4em;
  font-weight: bold;
  color: #FCBC45;
  margin-bottom: 10px;
}

.page-vip-program__faq-answer {
  font-size: 1em;
  color: #cccccc;
  line-height: 1.7;
}

.page-vip-program__cta-section {
  text-align: center;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.page-vip-program__cta-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #ffffff;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  z-index: 1;
  position: relative;
}

.page-vip-program__cta-button {
  display: inline-block;
  padding: 18px 45px;
  background-color: #FCBC45;
  color: #000000;
  font-size: 1.2em;
  font-weight: bold;
  text-decoration: none;
  border-radius: 10px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  z-index: 1;
  position: relative;
  box-shadow: 0 5px 20px rgba(252, 188, 69, 0.4);
}

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

.page-vip-program__cta-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  overflow: hidden;
}

.page-vip-program__cta-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

@media (max-width: 768px) {
  .page-vip-program {
    padding-top: var(--header-offset, 120px); /* Ensure mobile content is not hidden */
  }
  .page-vip-program__hero-section {
    padding: 40px 15px;
  }
  .page-vip-program__hero-title {
    font-size: 2.5em;
  }
  .page-vip-program__hero-description {
    font-size: 1.1em;
  }
  .page-vip-program__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-vip-program__section-title {
    font-size: 2em;
  }
  .page-vip-program__section-subtitle {
    font-size: 1em;
    margin-bottom: 40px;
  }
  .page-vip-program__about-section,
  .page-vip-program__tiers-section,
  .page-vip-program__benefits-section,
  .page-vip-program__how-to-join-section,
  .page-vip-program__faq-section,
  .page-vip-program__cta-section {
    padding: 50px 0;
  }
  .page-vip-program__benefits-grid,
  .page-vip-program__steps-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .page-vip-program__tier-title,
  .page-vip-program__benefit-title,
  .page-vip-program__step-title,
  .page-vip-program__faq-question {
    font-size: 1.4em;
  }
  .page-vip-program__tier-card,
  .page-vip-program__benefit-item,
  .page-vip-program__step-card,
  .page-vip-program__faq-item {
    padding: 20px;
  }
  .page-vip-program__tiers-button,
  .page-vip-program__benefits-button,
  .page-vip-program__how-to-join-button,
  .page-vip-program__cta-button {
    width: 100%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1em;
  }
  .page-vip-program__cta-description {
    font-size: 1.1em;
  }
  /* Ensure images in content sections are responsive and don't overflow */
  .page-vip-program img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-vip-program__hero-title {
    font-size: 2em;
  }
  .page-vip-program__hero-description {
    font-size: 1em;
  }
  .page-vip-program__hero-button {
    width: 100%;
    max-width: 250px;
  }
  .page-vip-program__section-title {
    font-size: 1.8em;
  }
  .page-vip-program__tier-title,
  .page-vip-program__benefit-title,
  .page-vip-program__step-title,
  .page-vip-program__faq-question {
    font-size: 1.2em;
  }
}