.page-vip-club {
  color: #333333; /* Default text color for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-bottom: 60px; /* Ensure space above footer */
}

.page-vip-club__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 500px; /* Ensures hero section has minimum height */
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
}

.page-vip-club__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, not changing color */
}

.page-vip-club__hero-content {
  position: relative;
  z-index: 1;
  color: #ffffff;
  max-width: 900px;
  padding: 20px;
}

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

.page-vip-club__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.page-vip-club__hero-button,
.page-vip-club__primary-button,
.page-vip-club__secondary-button {
  display: inline-block;
  padding: 15px 30px;
  background-color: #FFD700; /* Gold button */
  color: #003366; /* Deep blue text */
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-vip-club__hero-button:hover,
.page-vip-club__primary-button:hover,
.page-vip-club__secondary-button:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-2px);
}

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

.page-vip-club__introduction-section,
.page-vip-club__tiers-section,
.page-vip-club__exclusive-benefits-section,
.page-vip-club__how-to-join-section,
.page-vip-club__faq-section,
.page-vip-club__details-list-section,
.page-vip-club__cta-section {
  padding: 60px 0;
  text-align: center;
}

.page-vip-club__introduction-section {
  background-color: #f8f8f8;
}

.page-vip-club__section-title {
  font-size: 2.8em;
  color: #003366; /* Deep blue for titles */
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.page-vip-club__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-vip-club__section-text {
  font-size: 1.1em;
  color: #555555;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.page-vip-club__section-text--small {
  font-size: 0.95em;
  margin-top: 30px;
  margin-bottom: 0;
}

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

.page-vip-club__tier-card,
.page-vip-club__benefit-card,
.page-vip-club__step-card,
.page-vip-club__detail-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #eee;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-vip-club__tier-card:hover,
.page-vip-club__benefit-card:hover,
.page-vip-club__step-card:hover,
.page-vip-club__detail-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-vip-club__tier-image,
.page-vip-club__benefit-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Ensure image is at least 200px */
  min-height: 200px; /* Ensure image is at least 200px */
}

.page-vip-club__tier-title,
.page-vip-club__benefit-title,
.page-vip-club__step-title,
.page-vip-club__detail-title {
  font-size: 1.8em;
  color: #003366;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-vip-club__tier-title a,
.page-vip-club__detail-title a {
  color: #003366;
  text-decoration: none;
}

.page-vip-club__tier-title a:hover,
.page-vip-club__detail-title a:hover {
  color: #FFD700;
  text-decoration: underline;
}

.page-vip-club__tier-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  text-align: left;
  flex-grow: 1;
}

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

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

.page-vip-club__benefit-description,
.page-vip-club__step-description,
.page-vip-club__detail-description {
  font-size: 1em;
  color: #666666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-vip-club__secondary-button,
.page-vip-club__detail-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #003366; /* Deep blue button */
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: normal;
  font-size: 0.9em;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-vip-club__secondary-button:hover,
.page-vip-club__detail-button:hover {
  background-color: #004488; /* Slightly lighter blue on hover */
}

.page-vip-club__faq-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
  padding: 25px;
  text-align: left;
}

.page-vip-club__faq-question {
  font-size: 1.5em;
  color: #003366;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-vip-club__faq-answer {
  font-size: 1em;
  color: #555555;
  margin-bottom: 0;
}

.page-vip-club__cta-section {
  background-color: #003366; /* Deep blue background */
  color: #ffffff;
  padding: 80px 20px;
}

.page-vip-club__cta-title {
  font-size: 3em;
  color: #FFD700; /* Gold for CTA title */
  margin-bottom: 20px;
}

.page-vip-club__cta-text {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

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

@media (max-width: 768px) {
  .page-vip-club__hero-section {
    min-height: 400px;
    padding: 40px 15px;
  }
  .page-vip-club__hero-title {
    font-size: 2.2em;
  }
  .page-vip-club__hero-description {
    font-size: 1.1em;
  }
  .page-vip-club__hero-button,
  .page-vip-club__primary-button,
  .page-vip-club__secondary-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-vip-club__introduction-section,
  .page-vip-club__tiers-section,
  .page-vip-club__exclusive-benefits-section,
  .page-vip-club__how-to-join-section,
  .page-vip-club__faq-section,
  .page-vip-club__details-list-section,
  .page-vip-club__cta-section {
    padding: 40px 0;
  }
  .page-vip-club__section-title {
    font-size: 1.8em;
  }
  .page-vip-club__section-text {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-vip-club__tiers-grid,
  .page-vip-club__benefits-grid,
  .page-vip-club__steps-grid,
  .page-vip-club__details-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-vip-club__tier-card,
  .page-vip-club__benefit-card,
  .page-vip-club__step-card,
  .page-vip-club__detail-card {
    padding: 25px;
  }
  .page-vip-club__tier-image,
  .page-vip-club__benefit-image {
    height: 250px;
  }
  .page-vip-club__tier-title,
  .page-vip-club__benefit-title,
  .page-vip-club__step-title,
.page-vip-club__detail-title {
    font-size: 1.5em;
  }
  .page-vip-club__faq-question {
    font-size: 1.3em;
  }
  .page-vip-club__cta-title {
    font-size: 2em;
  }
  .page-vip-club__cta-text {
    font-size: 1.1em;
  }
  /* Mobile content area images must be constrained */
  .page-vip-club img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-vip-club__hero-title {
    font-size: 1.8em;
  }
  .page-vip-club__hero-description {
    font-size: 1em;
  }
  .page-vip-club__section-title {
    font-size: 1.6em;
  }
  .page-vip-club__cta-title {
    font-size: 1.8em;
  }
}