.page-vip-club {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure space below fixed header */
}

.page-vip-club__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  min-height: 500px;
  padding: 60px 20px;
  background: linear-gradient(135deg, #1A1A2E 0%, #3a3a5a 100%); /* Dark background for hero */
  color: #ffffff;
}

.page-vip-club__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.3;
}

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

.page-vip-club__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Auxiliary color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-vip-club__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.page-vip-club__section-title {
  font-size: 2.5em;
  color: #1A1A2E;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.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-subtitle {
  font-size: 1.2em;
  color: #555555;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-vip-club__benefits-section,
.page-vip-club__levels-section,
.page-vip-club__cta-section,
.page-vip-club__details-list-section,
.page-vip-club__faq-section,
.page-vip-club__contact-section,
.page-vip-club__about-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

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

.page-vip-club__benefit-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 5px solid #FFD700;
}

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

.page-vip-club__benefit-image {
  width: 100%;
  height: auto;
  max-width: 250px;
  margin: 0 auto 20px auto;
  border-radius: 8px;
  object-fit: cover;
}

.page-vip-club__card-title {
  font-size: 1.6em;
  color: #1A1A2E;
  margin-bottom: 15px;
}

.page-vip-club__card-description {
  font-size: 1em;
  color: #666666;
}

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

.page-vip-club__level-card {
  background-color: #1A1A2E;
  color: #ffffff;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  border-bottom: 5px solid #FFD700;
}

.page-vip-club__level-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-vip-club__level-description {
  font-size: 1em;
  opacity: 0.9;
}

.page-vip-club__learn-more-button {
  display: block;
  width: fit-content;
  margin: 40px auto 0 auto;
  background-color: #1A1A2E;
  color: #FFD700;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 2px solid #FFD700;
}

.page-vip-club__learn-more-button:hover {
  background-color: #FFD700;
  color: #1A1A2E;
}

.page-vip-club__cta-section {
  background: linear-gradient(90deg, #FFD700 0%, #e5c100 100%);
  color: #1A1A2E;
  padding: 80px 20px;
  text-align: center;
  border-radius: 15px;
  margin: 80px auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-vip-club__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #1A1A2E;
}

.page-vip-club__cta-description {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #333333;
}

.page-vip-club__cta-button {
  display: inline-block;
  background-color: #1A1A2E;
  color: #FFD700;
  padding: 18px 40px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  border: none;
}

.page-vip-club__cta-button:hover {
  background-color: #33334d;
  transform: translateY(-5px);
}

.page-vip-club__detail-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  margin-bottom: 25px;
  border-left: 6px solid #FFD700;
}

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

.page-vip-club__detail-title a {
  color: #1A1A2E;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-vip-club__detail-title a:hover {
  color: #FFD700;
}

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

.page-vip-club__detail-button {
  display: inline-block;
  background-color: #1A1A2E;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 0.95em;
  transition: background-color 0.3s ease;
}

.page-vip-club__detail-button:hover {
  background-color: #3a3a5a;
}

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

.page-vip-club__faq-question {
  font-size: 1.4em;
  color: #1A1A2E;
  margin-bottom: 10px;
}

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

.page-vip-club__contact-section {
  text-align: center;
  margin-top: 80px;
  background-color: #f8f8f8;
  padding: 60px 20px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

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

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

.page-vip-club__contact-button--secondary {
  background-color: #1A1A2E;
  color: #FFD700;
}

.page-vip-club__contact-button--secondary:hover {
  background-color: #3a3a5a;
  color: #FFD700;
}

.page-vip-club__about-text {
  font-size: 1.1em;
  color: #444444;
  text-align: justify;
  margin-top: 30px;
  line-height: 1.8;
}

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

@media (max-width: 768px) {
  .page-vip-club {
    padding-top: var(--header-offset, 120px);
  }
  .page-vip-club__hero-title {
    font-size: 2.2em;
  }
  .page-vip-club__hero-description {
    font-size: 1.1em;
  }
  .page-vip-club__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-vip-club__section-title {
    font-size: 1.8em;
  }
  .page-vip-club__section-subtitle {
    font-size: 1em;
  }
  .page-vip-club__benefits-grid,
  .page-vip-club__levels-grid {
    grid-template-columns: 1fr;
  }
  .page-vip-club__cta-title {
    font-size: 2em;
  }
  .page-vip-club__cta-description {
    font-size: 1.1em;
  }
  .page-vip-club__cta-button {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-vip-club__contact-button {
    margin: 10px 0;
    width: 100%;
  }
  /* Ensure images do not overflow on mobile */
  .page-vip-club img {
    max-width: 100%;
    height: auto;
  }
  .page-vip-club__benefit-image {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .page-vip-club__hero-section {
    min-height: 400px;
    padding: 40px 15px;
  }
  .page-vip-club__hero-title {
    font-size: 1.8em;
  }
  .page-vip-club__section-title {
    font-size: 1.6em;
  }
  .page-vip-club__cta-title {
    font-size: 1.8em;
  }
  .page-vip-club__faq-question {
    font-size: 1.2em;
  }
  .page-vip-club__detail-title {
    font-size: 1.5em;
  }
}