:root {
  --page-vip-club-primary-color: #003366;
  --page-vip-club-secondary-color: #FFCC00;
  --page-vip-club-text-light: #ffffff;
  --page-vip-club-text-dark: #333333;
  --page-vip-club-background-dark: #121212; /* Body background from shared */
}

.page-vip-club {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--page-vip-club-text-light); /* Default text color for dark body background */
  background-color: var(--page-vip-club-background-dark);
}

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

/* Hero Section */
.page-vip-club__hero-section {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

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

.page-vip-club__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
}

.page-vip-club__hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 20px;
  color: var(--page-vip-club-text-light);
}

.page-vip-club__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: var(--page-vip-club-secondary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-vip-club__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: var(--page-vip-club-text-light);
}

.page-vip-club__hero-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* General Section Styling */
.page-vip-club__benefits-section,
.page-vip-club__levels-section,
.page-vip-club__how-to-join-section,
.page-vip-club__testimonial-section,
.page-vip-club__faq-section,
.page-vip-club__cta-section {
  padding: 80px 0;
  text-align: center;
}

.page-vip-club__dark-bg {
  background-color: var(--page-vip-club-primary-color);
  color: var(--page-vip-club-text-light);
}

.page-vip-club__light-bg {
  background-color: #f8f9fa;
  color: var(--page-vip-club-text-dark);
}

.page-vip-club__section-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: inherit; /* Inherit from section for contrast */
}

.page-vip-club__section-description {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: inherit; /* Inherit from section for contrast */
}

/* Card Grid Styling */
.page-vip-club__benefits-grid,
.page-vip-club__levels-grid,
.page-vip-club__steps-grid,
.page-vip-club__testimonials-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__level-card,
.page-vip-club__step-card,
.page-vip-club__testimonial-card {
  background-color: rgba(255, 255, 255, 0.08); /* Light transparent background for cards on dark sections */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  color: var(--page-vip-club-text-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-vip-club__light-bg .page-vip-club__benefit-card,
.page-vip-club__light-bg .page-vip-club__level-card,
.page-vip-club__light-bg .page-vip-club__step-card,
.page-vip-club__light-bg .page-vip-club__testimonial-card {
  background-color: #ffffff; /* White background for cards on light sections */
  color: var(--page-vip-club-text-dark);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-vip-club__benefit-card:hover,
.page-vip-club__level-card:hover,
.page-vip-club__step-card:hover,
.page-vip-club__testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-vip-club__benefit-icon,
.page-vip-club__level-icon,
.page-vip-club__testimonial-avatar {
  width: 100%;
  max-width: 250px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  border: 2px solid var(--page-vip-club-secondary-color);
}

.page-vip-club__testimonial-avatar {
  border-radius: 50%;
  max-width: 100px;
  height: 100px;
  object-fit: cover;
}

.page-vip-club__card-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: var(--page-vip-club-secondary-color);
}

.page-vip-club__card-text {
  font-size: 1em;
  line-height: 1.5;
  flex-grow: 1;
}

.page-vip-club__step-number {
  font-size: 2.5em;
  font-weight: bold;
  color: var(--page-vip-club-secondary-color);
  margin-bottom: 15px;
}

.page-vip-club__btn-text {
  color: var(--page-vip-club-secondary-color);
  text-decoration: none;
  font-weight: bold;
  margin-top: 15px;
  display: inline-block;
  transition: color 0.3s ease;
}

.page-vip-club__btn-text:hover {
  color: #fff; /* White on dark background for hover */
}

.page-vip-club__light-bg .page-vip-club__btn-text {
  color: var(--page-vip-club-primary-color);
}

.page-vip-club__light-bg .page-vip-club__btn-text:hover {
  color: var(--page-vip-club-secondary-color);
}

.page-vip-club__testimonial-text {
  font-style: italic;
  margin-bottom: 15px;
}

.page-vip-club__testimonial-author {
  font-weight: bold;
  color: var(--page-vip-club-secondary-color);
}

/* FAQ Section */
.page-vip-club__faq-list {
  max-width: 900px;
  margin: 40px auto 0;
}

.page-vip-club__faq-item {
  background-color: rgba(255, 255, 255, 0.08); /* Light transparent background for dark sections */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-vip-club__light-bg .page-vip-club__faq-item {
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-vip-club__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: var(--page-vip-club-primary-color);
  color: var(--page-vip-club-text-light);
  transition: background-color 0.3s ease;
}

.page-vip-club__light-bg .page-vip-club__faq-question {
  background-color: #f0f0f0;
  color: var(--page-vip-club-text-dark);
}

.page-vip-club__faq-question:hover {
  background-color: #004488;
}

.page-vip-club__light-bg .page-vip-club__faq-question:hover {
  background-color: #e0e0e0;
}

.page-vip-club__faq-title {
  font-size: 1.2em;
  margin: 0;
  color: inherit;
}

.page-vip-club__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.page-vip-club__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  text-align: left;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--page-vip-club-text-light);
  background-color: rgba(255, 255, 255, 0.05);
}

.page-vip-club__light-bg .page-vip-club__faq-answer {
  color: var(--page-vip-club-text-dark);
  background-color: #ffffff;
}

.page-vip-club__faq-answer p {
  padding-bottom: 15px;
  margin: 0;
  color: inherit;
}

.page-vip-club__faq-item.active .page-vip-club__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px 25px !important;
}

.page-vip-club__faq-item.active .page-vip-club__faq-toggle {
  transform: rotate(0deg);
}

/* CTA Section */
.page-vip-club__cta-section {
  padding: 100px 0;
}

.page-vip-club__cta-container {
  max-width: 800px;
}

.page-vip-club__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: var(--page-vip-club-secondary-color);
}

.page-vip-club__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: var(--page-vip-club-text-light);
}

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

/* Buttons */
.page-vip-club__btn-primary,
.page-vip-club__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  max-width: 100%;
}

.page-vip-club__btn-primary {
  background-color: var(--page-vip-club-secondary-color);
  color: var(--page-vip-club-primary-color);
  border: 2px solid var(--page-vip-club-secondary-color);
}

.page-vip-club__btn-primary:hover {
  background-color: #e6b800;
  border-color: #e6b800;
  transform: translateY(-2px);
}

.page-vip-club__btn-secondary {
  background-color: transparent;
  color: var(--page-vip-club-secondary-color);
  border: 2px solid var(--page-vip-club-secondary-color);
}

.page-vip-club__btn-secondary:hover {
  background-color: var(--page-vip-club-secondary-color);
  color: var(--page-vip-club-primary-color);
  transform: translateY(-2px);
}

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

@media (max-width: 768px) {
  .page-vip-club__hero-section {
    height: 60vh;
    min-height: 400px;
    padding-top: var(--header-offset, 120px) !important; /* Mobile fixed header offset */
  }
  .page-vip-club__hero-title {
    font-size: 2.2em;
  }
  .page-vip-club__hero-description {
    font-size: 1em;
  }
  .page-vip-club__hero-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .page-vip-club__btn-primary,
  .page-vip-club__btn-secondary {
    width: 100% !important;
    max-width: 300px !important;
    padding: 12px 20px !important;
    font-size: 1em !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-vip-club__benefits-section,
  .page-vip-club__levels-section,
  .page-vip-club__how-to-join-section,
  .page-vip-club__testimonial-section,
  .page-vip-club__faq-section,
  .page-vip-club__cta-section {
    padding: 60px 0;
  }
  .page-vip-club__section-title {
    font-size: 1.8em;
  }
  .page-vip-club__section-description {
    font-size: 0.9em;
  }
  .page-vip-club__cta-title {
    font-size: 2em;
  }
  .page-vip-club__faq-question {
    padding: 15px 20px;
  }
  .page-vip-club__faq-answer {
    padding: 0 20px;
  }
  .page-vip-club__faq-item.active .page-vip-club__faq-answer {
    padding: 15px 20px !important;
  }
  .page-vip-club img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-vip-club__container,
  .page-vip-club__benefits-grid,
  .page-vip-club__levels-grid,
  .page-vip-club__steps-grid,
  .page-vip-club__testimonials-grid,
  .page-vip-club__faq-list,
  .page-vip-club__cta-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }
  .page-vip-club__hero-section {
    overflow: hidden !important;
  }
  .page-vip-club__hero-content {
    padding: 0 15px;
  }
}

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