.page-vip-club-levels {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: var(--dark-bg-1); /* Inherit from shared.css, assumed dark */
}

.page-vip-club-levels__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.page-vip-club-levels__section {
  padding: 60px 0;
  text-align: center;
}

.page-vip-club-levels__dark-bg {
  background-color: #0056B3; /* Main brand color for dark sections */
  color: #ffffff;
}

.page-vip-club-levels__light-bg {
  background-color: #f8f9fa; /* Light background for contrast */
  color: #333333;
}

/* Hero Section */
.page-vip-club-levels__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  text-align: center;
  overflow: hidden;
}

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

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

.page-vip-club-levels__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
}

.page-vip-club-levels__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-vip-club-levels__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #ffffff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* General Section Styling */
.page-vip-club-levels__section-title {
  font-size: 2.5em;
  margin-bottom: 40px;
  color: inherit;
}

.page-vip-club-levels__introduction .page-vip-club-levels__section-title,
.page-vip-club-levels__how-to-join .page-vip-club-levels__section-title,
.page-vip-club-levels__cta-final .page-vip-club-levels__section-title {
  color: #0056B3; /* Dark blue for light background */
}

.page-vip-club-levels__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.page-vip-club-levels__btn-primary {
  display: inline-block;
  background: #FFD700;
  color: #000000; /* Black text for gold button for contrast */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1.1em;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-vip-club-levels__btn-primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

/* Level Structure Grid */
.page-vip-club-levels__levels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-vip-club-levels__card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  color: #ffffff;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-vip-club-levels__card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.15);
}

.page-vip-club-levels__card-image {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 5px;
}

.page-vip-club-levels__card-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-vip-club-levels__card-description {
  font-size: 1em;
  color: #f0f0f0;
}

/* Detailed Privileges */
.page-vip-club-levels__detailed-privileges .page-vip-club-levels__section-title {
  color: #FFD700;
}

.page-vip-club-levels__privilege-block {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  text-align: left;
  color: #ffffff;
}

.page-vip-club-levels__privilege-title {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-vip-club-levels__privilege-list {
  list-style-type: disc;
  margin-left: 20px;
  padding-left: 0;
}

.page-vip-club-levels__privilege-list li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-vip-club-levels__privilege-list strong {
  color: #FFD700;
}

.page-vip-club-levels__privilege-image {
  width: 100%;
  height: auto;
  max-width: 800px;
  margin-top: 30px;
  border-radius: 10px;
  object-fit: cover;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-vip-club-levels__how-to-join-image {
  width: 100%;
  height: auto;
  max-width: 800px;
  margin-top: 30px;
  border-radius: 10px;
  object-fit: cover;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* FAQ Section */
.page-vip-club-levels__faq-section .page-vip-club-levels__section-title {
  color: #FFD700;
}

.page-vip-club-levels__faq-list {
  max-width: 800px;
  margin: 40px auto 0 auto;
  text-align: left;
}

.page-vip-club-levels__faq-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #ffffff;
}

.page-vip-club-levels__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  background-color: #0056B3; /* Dark blue for question background */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background-color 0.3s ease;
}

.page-vip-club-levels__faq-question:hover {
  background-color: #004a9e;
}

.page-vip-club-levels__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #FFD700;
}

.page-vip-club-levels__faq-item.active .page-vip-club-levels__faq-toggle {
  transform: rotate(45deg);
}

.page-vip-club-levels__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  background-color: rgba(0, 0, 0, 0.2); /* Slightly darker background for answer */
}

.page-vip-club-levels__faq-item.active .page-vip-club-levels__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to contain content */
  padding: 20px 25px;
}

.page-vip-club-levels__faq-answer p {
  margin-bottom: 0;
  font-size: 1.05em;
  color: #f0f0f0;
}

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

  .page-vip-club-levels__hero-section {
    min-height: 400px;
    padding-top: var(--header-offset, 120px) !important;
  }

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

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

  .page-vip-club-levels__section {
    padding: 40px 0;
  }

  .page-vip-club-levels__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-vip-club-levels__text-block {
    font-size: 0.95em;
  }

  .page-vip-club-levels__btn-primary {
    padding: 12px 20px;
    font-size: 1em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-vip-club-levels__levels-grid {
    grid-template-columns: 1fr;
  }

  .page-vip-club-levels__card {
    padding: 20px;
  }

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

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

  .page-vip-club-levels__privilege-list li {
    font-size: 1em;
  }

  .page-vip-club-levels__privilege-image,
  .page-vip-club-levels__how-to-join-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    padding-left: 0;
    padding-right: 0;
  }

  .page-vip-club-levels img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-vip-club-levels__section,
  .page-vip-club-levels__card,
  .page-vip-club-levels__container,
  .page-vip-club-levels__privilege-block,
  .page-vip-club-levels__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-vip-club-levels__faq-question {
    font-size: 1.05em;
    padding: 15px 20px;
  }

  .page-vip-club-levels__faq-answer {
    padding: 15px 20px;
  }

  .page-vip-club-levels__faq-item.active .page-vip-club-levels__faq-answer {
    padding: 15px 20px !important;
  }
}