.page-vip-club {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Body background is dark #1a1a2e, so use light text */
  background-color: #1a1a2e;
}

.page-vip-club__dark-section {
  background-color: #4A148C; /* Brand primary color */
  color: #ffffff;
}

.page-vip-club__section-title--light,
.page-vip-club__section-intro--light {
  color: #ffffff;
}

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

.page-vip-club__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  min-height: 500px;
  overflow: hidden;
  color: #ffffff;
  background-color: #4A148C;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

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

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

.page-vip-club__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-vip-club__btn-primary {
  display: inline-block;
  background-color: #FFD700; /* Gold accent for primary button */
  color: #4A148C; /* Dark text for gold button for contrast */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1em;
}

.page-vip-club__btn-primary:hover {
  background-color: #e6c200;
  color: #33106e;
}

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

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

.page-vip-club__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 20px;
  color: #FFD700;
}

.page-vip-club__section-intro {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  color: #f0f0f0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-vip-club__levels-grid,
.page-vip-club__privileges-grid,
.page-vip-club__steps-grid,
.page-vip-club__comparison-cards {
  display: grid;
  gap: 30px;
  margin-bottom: 40px;
}

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

.page-vip-club__level-card,
.page-vip-club__privilege-card,
.page-vip-club__step-card,
.page-vip-club__comparison-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-vip-club__level-card:hover,
.page-vip-club__privilege-card:hover,
.page-vip-club__step-card:hover,
.page-vip-club__comparison-card:hover {
  transform: translateY(-10px);
}

.page-vip-club__level-title,
.page-vip-club__privilege-title,
.page-vip-club__step-title,
.page-vip-club__comparison-card-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-vip-club__level-description,
.page-vip-club__privilege-list,
.page-vip-club__step-description,
.page-vip-club__comparison-list {
  font-size: 1em;
  color: #e0e0e0;
  text-align: left;
}

.page-vip-club__privilege-list li,
.page-vip-club__comparison-list li {
  margin-bottom: 10px;
  list-style: none;
  position: relative;
  padding-left: 25px;
}

.page-vip-club__privilege-list li::before {
  content: '★';
  color: #FFD700;
  position: absolute;
  left: 0;
}

.page-vip-club__comparison-list li.page-vip-club__comparison-list li::before {
  font-weight: bold;
  position: absolute;
  left: 0;
  color: #FFD700;
}

.page-vip-club__comparison-list li.page-vip-club__comparison-list li::before {
  content: '✅';
  color: #32CD32; /* Green checkmark */
}

.page-vip-club__comparison-list li:first-child::before {
  content: '✅';
}

.page-vip-club__comparison-card ul li:nth-child(1)::before { content: '✅'; color: #32CD32; }
.page-vip-club__comparison-card ul li:nth-child(2)::before { content: '✅'; color: #32CD32; }
.page-vip-club__comparison-card ul li:nth-child(3)::before { content: '✅'; color: #32CD32; }
.page-vip-club__comparison-card ul li:nth-child(4)::before { content: '✅'; color: #32CD32; }
.page-vip-club__comparison-card ul li:nth-child(5)::before { content: '✅'; color: #32CD32; }
.page-vip-club__comparison-card ul li:nth-child(6)::before { content: '✅'; color: #32CD32; }

.page-vip-club__comparison-card:last-child ul li:nth-child(1)::before { content: '❌'; color: #FF4500; }
.page-vip-club__comparison-card:last-child ul li:nth-child(2)::before { content: '❌'; color: #FF4500; }
.page-vip-club__comparison-card:last-child ul li:nth-child(3)::before { content: '❌'; color: #FF4500; }
.page-vip-club__comparison-card:last-child ul li:nth-child(4)::before { content: '❌'; color: #FF4500; }
.page-vip-club__comparison-card:last-child ul li:nth-child(5)::before { content: '❌'; color: #FF4500; }
.page-vip-club__comparison-card:last-child ul li:nth-child(6)::before { content: '❌'; color: #FF4500; }

.page-vip-club__privileges-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.page-vip-club__steps-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.page-vip-club__step-card a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-vip-club__step-card a:hover {
  text-decoration: underline;
}

.page-vip-club__cta-wrapper {
  text-align: center;
  margin-top: 50px;
}

.page-vip-club__btn-large {
  padding: 18px 40px;
  font-size: 1.1em;
}

.page-vip-club__comparison-cards {
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.page-vip-club__faq-container {
  max-width: 900px;
  margin: 0 auto 40px auto;
  border-radius: 10px;
  overflow: hidden;
}

.page-vip-club__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  margin-bottom: 10px;
  border-radius: 8px;
  overflow: hidden;
  transition: background-color 0.3s ease;
}

.page-vip-club__faq-item:last-child {
  margin-bottom: 0;
}

.page-vip-club__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.05);
  transition: background-color 0.3s ease;
}

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

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

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

.page-vip-club__faq-item.active .page-vip-club__faq-toggle {
  transform: rotate(45deg); /* Plus sign becomes an X or minus */
}

.page-vip-club__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  color: #e0e0e0;
}

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

.page-vip-club__faq-answer p {
  margin: 0;
  padding-bottom: 10px;
  color: #e0e0e0;
}

.page-vip-club__faq-answer a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-vip-club__faq-answer a:hover {
  text-decoration: underline;
}

/* Image Styling */
.page-vip-club img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-vip-club__hero-image,
.page-vip-club__level-image,
.page-vip-club__privilege-image,
.page-vip-club__join-image,
.page-vip-club__comparison-image,
.page-vip-club__faq-image {
  filter: none; /* Ensure no CSS filter changes original image color */
}

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

@media (max-width: 768px) {
  .page-vip-club {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-vip-club__hero-section {
    padding: 60px 15px;
    padding-top: var(--header-offset, 120px) !important;
  }

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

  .page-vip-club__hero-description {
    font-size: 1em;
  }

  .page-vip-club__btn-primary {
    padding: 12px 25px;
    font-size: 0.9em;
  }

  .page-vip-club__content-area {
    padding: 30px 15px;
  }

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

  .page-vip-club__section-intro {
    font-size: 0.95em;
  }

  .page-vip-club__levels-grid,
  .page-vip-club__privileges-grid,
  .page-vip-club__steps-grid,
  .page-vip-club__comparison-cards {
    grid-template-columns: 1fr;
  }

  .page-vip-club__level-card,
  .page-vip-club__privilege-card,
  .page-vip-club__step-card,
  .page-vip-club__comparison-card {
    padding: 25px;
  }

  .page-vip-club__level-title,
  .page-vip-club__privilege-title,
  .page-vip-club__step-title,
  .page-vip-club__comparison-card-title {
    font-size: 1.5em;
  }

  .page-vip-club__cta-wrapper {
    margin-top: 30px;
  }

  .page-vip-club__btn-large {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 15px;
  }

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

  .page-vip-club__faq-title {
    font-size: 1.1em;
  }

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

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

  /* Mobile image responsiveness */
  .page-vip-club img {
    max-width: 100% !important;
    height: auto !important;
    width: 100% !important;
    box-sizing: border-box !important;
    margin: 20px auto;
  }

  .page-vip-club__hero-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-vip-club__hero-image {
    width: 100% !important;
    height: auto !important;
  }

  .page-vip-club__faq-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 15px;
  }

  .page-vip-club__faq-item {
    width: 100%;
  }
}