:root {
  --primary-color: #0A2463;
  --secondary-color: #FFD700;
  --text-light: #ffffff;
  --text-dark: #333333;
  --background-dark: #0a0a0a;
  --background-light: #f8f9fa;
  --card-background-dark: rgba(255, 255, 255, 0.1);
  --card-background-light: #ffffff;
  --border-color: #e0e0e0;
}

/* Base styles for the page content, ensuring contrast with body background */
.page-vip-club-levels-benefits {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Body background is dark (#0a0a0a), so use light text */
  background-color: var(--background-dark);
  padding-top: 120px; /* Desktop: Adjust for fixed header */
}

/* Main container for content sections */
.page-vip-club-levels-benefits__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Section styling */
.page-vip-club-levels-benefits__hero-section,
.page-vip-club-levels-benefits__intro-section,
.page-vip-club-levels-benefits__levels-section,
.page-vip-club-levels-benefits__how-to-join-section,
.page-vip-club-levels-benefits__faq-section,
.page-vip-club-levels-benefits__conclusion-section {
  padding: 80px 0;
  text-align: center;
}

/* Dark background section */
.page-vip-club-levels-benefits__dark-section {
  background-color: var(--primary-color);
  color: var(--text-light);
}

/* Light background section */
.page-vip-club-levels-benefits__light-bg {
  background-color: var(--background-light);
  color: var(--text-dark);
}

/* Titles */
.page-vip-club-levels-benefits__main-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: var(--secondary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-vip-club-levels-benefits__subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-vip-club-levels-benefits__section-title {
  font-size: 2.5em;
  margin-bottom: 40px;
  color: var(--secondary-color);
  position: relative;
  padding-bottom: 15px;
}

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

.page-vip-club-levels-benefits__light-bg .page-vip-club-levels-benefits__section-title {
  color: var(--primary-color);
}

.page-vip-club-levels-benefits__light-bg .page-vip-club-levels-benefits__section-title::after {
  background-color: var(--primary-color);
}

.page-vip-club-levels-benefits__level-title,
.page-vip-club-levels-benefits__feature-title,
.page-vip-club-levels-benefits__step-title {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.page-vip-club-levels-benefits__light-bg .page-vip-club-levels-benefits__level-title,
.page-vip-club-levels-benefits__light-bg .page-vip-club-levels-benefits__feature-title,
.page-vip-club-levels-benefits__light-bg .page-vip-club-levels-benefits__step-title {
  color: var(--primary-color);
}

/* Text blocks */
.page-vip-club-levels-benefits__text-block {
  font-size: 1.1em;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.page-vip-club-levels-benefits__cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.page-vip-club-levels-benefits__btn-primary,
.page-vip-club-levels-benefits__btn-secondary,
.page-vip-club-levels-benefits__step-button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: none;
  cursor: pointer;
}

.page-vip-club-levels-benefits__btn-primary {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.page-vip-club-levels-benefits__btn-primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

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

.page-vip-club-levels-benefits__btn-secondary:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.page-vip-club-levels-benefits__step-button {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 5px;
  box-shadow: none;
  margin-top: 15px;
}

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

/* Card styles */
.page-vip-club-levels-benefits__card {
  background-color: var(--card-background-light);
  color: var(--text-dark);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%; /* Ensure equal height in grids */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.page-vip-club-levels-benefits__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-vip-club-levels-benefits__dark-section .page-vip-club-levels-benefits__card {
  background-color: var(--card-background-dark);
  color: var(--text-light);
}

.page-vip-club-levels-benefits__dark-section .page-vip-club-levels-benefits__card .page-vip-club-levels-benefits__level-title {
  color: var(--secondary-color);
}

/* Image styles */
.page-vip-club-levels-benefits img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.page-vip-club-levels-benefits__feature-icon,
.page-vip-club-levels-benefits__level-icon,
.page-vip-club-levels-benefits__step-icon {
  width: 120px; /* Larger icons for content display */
  height: 120px;
  object-fit: contain;
  margin-bottom: 20px;
}

/* Feature Grid */
.page-vip-club-levels-benefits__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

/* VIP Levels Grid */
.page-vip-club-levels-benefits__levels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-vip-club-levels-benefits__level-description {
  font-size: 1em;
  margin-bottom: 20px;
}

.page-vip-club-levels-benefits__level-benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  flex-grow: 1; /* Pushes content to the bottom */
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.page-vip-club-levels-benefits__level-benefits-list li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  font-size: 0.95em;
}

.page-vip-club-levels-benefits__level-benefits-list li::before {
  content: '✓';
  color: var(--secondary-color);
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
}

/* Promotion CTA */
.page-vip-club-levels-benefits__promotion-cta {
  margin-top: 60px;
  padding: 40px;
  background-color: var(--card-background-dark);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-vip-club-levels-benefits__promotion-text {
  font-size: 1.4em;
  margin-bottom: 30px;
  font-weight: bold;
  color: var(--text-light);
}

/* How to Join Steps */
.page-vip-club-levels-benefits__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

/* FAQ Section */
.page-vip-club-levels-benefits__faq-list {
  max-width: 900px;
  margin: 50px auto 0 auto;
  text-align: left;
}

.page-vip-club-levels-benefits__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
  color: var(--text-dark);
}

.page-vip-club-levels-benefits__dark-section .page-vip-club-levels-benefits__faq-item {
  color: var(--text-light);
}

.page-vip-club-levels-benefits__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: var(--card-background-light);
  border: 1px solid var(--border-color);
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-vip-club-levels-benefits__dark-section .page-vip-club-levels-benefits__faq-question {
  background: var(--card-background-dark);
  border-color: rgba(255, 255, 255, 0.2);
}

.page-vip-club-levels-benefits__faq-question:hover {
  background: #f0f0f0;
  border-color: #d0d0d0;
}

.page-vip-club-levels-benefits__dark-section .page-vip-club-levels-benefits__faq-question:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.page-vip-club-levels-benefits__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 1.1em;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: inherit;
}

.page-vip-club-levels-benefits__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: var(--primary-color);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.page-vip-club-levels-benefits__dark-section .page-vip-club-levels-benefits__faq-toggle {
  color: var(--secondary-color);
}

.page-vip-club-levels-benefits__faq-item.active .page-vip-club-levels-benefits__faq-toggle {
  transform: rotate(180deg);
  color: var(--secondary-color);
}

.page-vip-club-levels-benefits__dark-section .page-vip-club-levels-benefits__faq-item.active .page-vip-club-levels-benefits__faq-toggle {
  color: var(--secondary-color);
}

.page-vip-club-levels-benefits__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 20px;
  opacity: 0;
  font-size: 1em;
}

.page-vip-club-levels-benefits__dark-section .page-vip-club-levels-benefits__faq-answer {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-light);
}

.page-vip-club-levels-benefits__faq-item.active .page-vip-club-levels-benefits__faq-answer {
  max-height: 2000px !important;
  padding: 20px !important;
  opacity: 1;
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
}

.page-vip-club-levels-benefits__dark-section .page-vip-club-levels-benefits__faq-item.active .page-vip-club-levels-benefits__faq-answer {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-light);
}

/* Final CTA */
.page-vip-club-levels-benefits__cta-final {
  margin-top: 50px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-vip-club-levels-benefits__main-title {
    font-size: 2.8em;
  }
  .page-vip-club-levels-benefits__section-title {
    font-size: 2em;
  }
  .page-vip-club-levels-benefits__feature-icon,
  .page-vip-club-levels-benefits__level-icon,
  .page-vip-club-levels-benefits__step-icon {
    width: 100px;
    height: 100px;
  }
  .page-vip-club-levels-benefits__promotion-text {
    font-size: 1.2em;
  }
}

@media (max-width: 768px) {
  .page-vip-club-levels-benefits {
    padding-top: 100px !important; /* Mobile: Adjust for fixed header */
  }
  .page-vip-club-levels-benefits__hero-section,
  .page-vip-club-levels-benefits__intro-section,
  .page-vip-club-levels-benefits__levels-section,
  .page-vip-club-levels-benefits__how-to-join-section,
  .page-vip-club-levels-benefits__faq-section,
  .page-vip-club-levels-benefits__conclusion-section {
    padding: 60px 0;
  }
  .page-vip-club-levels-benefits__main-title {
    font-size: 2.2em;
  }
  .page-vip-club-levels-benefits__subtitle {
    font-size: 1.1em;
    margin-bottom: 30px;
  }
  .page-vip-club-levels-benefits__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-vip-club-levels-benefits__level-title,
  .page-vip-club-levels-benefits__feature-title,
  .page-vip-club-levels-benefits__step-title {
    font-size: 1.5em;
  }
  .page-vip-club-levels-benefits__text-block {
    font-size: 1em;
  }
  .page-vip-club-levels-benefits__cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-vip-club-levels-benefits__btn-primary,
  .page-vip-club-levels-benefits__btn-secondary,
  .page-vip-club-levels-benefits__step-button {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 25px;
    font-size: 1em;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-vip-club-levels-benefits__feature-grid,
  .page-vip-club-levels-benefits__levels-grid,
  .page-vip-club-levels-benefits__steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-vip-club-levels-benefits__card {
    padding: 25px;
  }
  .page-vip-club-levels-benefits__feature-icon,
  .page-vip-club-levels-benefits__level-icon,
  .page-vip-club-levels-benefits__step-icon {
    width: 80px;
    height: 80px;
  }
  .page-vip-club-levels-benefits__promotion-cta {
    padding: 30px;
  }
  .page-vip-club-levels-benefits__promotion-text {
    font-size: 1.1em;
  }
  .page-vip-club-levels-benefits__faq-question {
    padding: 15px;
  }
  .page-vip-club-levels-benefits__faq-question h3 {
    font-size: 1em;
  }
  .page-vip-club-levels-benefits__faq-toggle {
    font-size: 20px;
    width: 24px;
    height: 24px;
  }
  .page-vip-club-levels-benefits__faq-answer {
    padding: 0 15px;
  }
  .page-vip-club-levels-benefits__faq-item.active .page-vip-club-levels-benefits__faq-answer {
    padding: 15px !important;
  }
  /* Ensure all images are responsive and don't overflow */
  .page-vip-club-levels-benefits img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-vip-club-levels-benefits__container,
  .page-vip-club-levels-benefits__hero-section,
  .page-vip-club-levels-benefits__intro-section,
  .page-vip-club-levels-benefits__levels-section,
  .page-vip-club-levels-benefits__how-to-join-section,
  .page-vip-club-levels-benefits__faq-section,
  .page-vip-club-levels-benefits__conclusion-section,
  .page-vip-club-levels-benefits__feature-grid,
  .page-vip-club-levels-benefits__levels-grid,
  .page-vip-club-levels-benefits__steps-grid,
  .page-vip-club-levels-benefits__promotion-cta,
  .page-vip-club-levels-benefits__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Ensure no horizontal scroll */
  }
}

@media (max-width: 480px) {
  .page-vip-club-levels-benefits__main-title {
    font-size: 1.8em;
  }
  .page-vip-club-levels-benefits__section-title {
    font-size: 1.5em;
  }
  .page-vip-club-levels-benefits__feature-title,
  .page-vip-club-levels-benefits__level-title,
  .page-vip-club-levels-benefits__step-title {
    font-size: 1.3em;
  }
  .page-vip-club-levels-benefits__feature-icon,
  .page-vip-club-levels-benefits__level-icon,
  .page-vip-club-levels-benefits__step-icon {
    width: 60px;
    height: 60px;
  }
  .page-vip-club-levels-benefits__promotion-text {
    font-size: 1em;
  }
}