.page-vip-club {
  /* Default body background is light, so use dark text */
  color: #333333;
}

.page-vip-club__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  background-color: #0A2463;
  overflow: hidden; /* Ensure image doesn't overflow */
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
}

.page-vip-club__hero-container {
  position: relative;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}

.page-vip-club__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.6); /* Darken image slightly for text readability, not changing color */
}

.page-vip-club__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff;
  max-width: 900px;
  padding: 20px;
  z-index: 10;
}

.page-vip-club__main-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-vip-club__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A2463;
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

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

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

.page-vip-club__section-title {
  font-size: 2.8em;
  color: #0A2463;
  text-align: center;
  margin-bottom: 30px;
  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-intro {
  font-size: 1.1em;
  line-height: 1.7;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  color: #555555;
}

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

.page-vip-club__benefit-card,
.page-vip-club__tier-card,
.page-vip-club__step-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 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;
  align-items: center;
}

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

.page-vip-club__benefit-image,
.page-vip-club__tier-image {
  width: 100%;
  max-width: 400px; /* Ensure images are not too small */
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

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

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

.page-vip-club__step-button {
  display: inline-block;
  background-color: #0A2463;
  color: #ffffff;
  padding: 10px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1em;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

.page-vip-club__step-button:hover {
  background-color: #FFD700;
  color: #0A2463;
}

.page-vip-club__join-note {
  text-align: center;
  font-style: italic;
  color: #777777;
  margin-top: 50px;
  font-size: 0.95em;
}

.page-vip-club__faq-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
}

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

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

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

.page-vip-club__cta-bottom-section {
  background-color: #0A2463;
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.page-vip-club__cta-bottom-content .page-vip-club__section-title {
  color: #FFD700;
}

.page-vip-club__cta-bottom-content .page-vip-club__section-title::after {
  background-color: #ffffff;
}

.page-vip-club__cta-bottom-content .page-vip-club__section-intro {
  color: #f0f0f0;
}

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

.page-vip-club__secondary-cta-button {
  display: inline-block;
  background-color: transparent;
  color: #FFD700;
  padding: 15px 35px;
  border: 2px solid #FFD700;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.page-vip-club__secondary-cta-button:hover {
  background-color: #FFD700;
  color: #0A2463;
  transform: translateY(-2px);
}

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

  .page-vip-club__intro-description {
    font-size: 1.1em;
  }

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

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

  .page-vip-club__hero-content {
    max-width: 100%;
    padding: 15px;
  }

  .page-vip-club__main-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }

  .page-vip-club__intro-description {
    font-size: 1em;
    margin-bottom: 25px;
  }

  .page-vip-club__cta-button,
  .page-vip-club__secondary-cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

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

  .page-vip-club__section-intro {
    font-size: 0.95em;
    margin-bottom: 30px;
  }

  .page-vip-club__benefits-grid,
  .page-vip-club__tiers-grid,
  .page-vip-club__steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-vip-club__benefit-card,
  .page-vip-club__tier-card,
  .page-vip-club__step-card {
    padding: 25px;
  }

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

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

  .page-vip-club__faq-item {
    padding: 20px;
  }

  .page-vip-club__cta-buttons {
    flex-direction: column;
  }

  .page-vip-club__cta-bottom-section {
    padding: 60px 15px;
  }

  /* Mobile content area images must not cause horizontal scrolling */
  .page-vip-club img {
    max-width: 100%;
    height: auto;
  }

  /* Ensure content area images are not smaller than 200px */
  .page-vip-club__benefit-image,
  .page-vip-club__tier-image {
    min-width: 200px;
    min-height: 150px; /* Adjusted to maintain aspect ratio */
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .page-vip-club__main-title {
    font-size: 1.8em;
  }
  .page-vip-club__intro-description {
    font-size: 0.9em;
  }
  .page-vip-club__section-title {
    font-size: 1.6em;
  }
  .page-vip-club__cta-button,
  .page-vip-club__secondary-cta-button {
    width: 100%;
  }
}