.page-vip-club-privileges-levels {
  font-family: 'Arial', sans-serif;
  color: #ffffff; /* Default text color for dark body background */
  background-color: transparent; /* Body background is handled by shared.css */
}

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

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

.page-vip-club-privileges-levels__dark-bg {
  background-color: #1a1a1a; /* Slightly lighter than body background for contrast */
  color: #ffffff;
}

.page-vip-club-privileges-levels__section-title {
  font-size: 38px;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-vip-club-privileges-levels__text-block {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-vip-club-privileges-levels__hero-section {
  position: relative;
  width: 100%;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  padding-top: var(--header-offset, 120px); /* Ensure content is below header */
}

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

.page-vip-club-privileges-levels__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-privileges-levels__hero-content {
  position: relative;
  z-index: 3;
  color: #ffffff;
  max-width: 900px;
  padding: 0 20px;
}

.page-vip-club-privileges-levels__hero-title {
  font-size: 52px;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-vip-club-privileges-levels__hero-description {
  font-size: 20px;
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-vip-club-privileges-levels__btn-primary {
  display: inline-block;
  background-color: #26A9E0;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

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

.page-vip-club-privileges-levels__benefits-grid,
.page-vip-club-privileges-levels__levels-grid,
.page-vip-club-privileges-levels__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-vip-club-privileges-levels__benefit-card,
.page-vip-club-privileges-levels__level-card,
.page-vip-club-privileges-levels__step-card {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%; /* Ensure cards have equal height */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.page-vip-club-privileges-levels__benefit-card:hover,
.page-vip-club-privileges-levels__level-card:hover,
.page-vip-club-privileges-levels__step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-vip-club-privileges-levels__benefit-image,
.page-vip-club-privileges-levels__level-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-vip-club-privileges-levels__card-title {
  font-size: 24px;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-vip-club-privileges-levels__card-description {
  font-size: 16px;
  line-height: 1.6;
  color: #f0f0f0;
  flex-grow: 1;
}

.page-vip-club-privileges-levels__note {
  text-align: center;
  margin-top: 40px;
  font-size: 16px;
  color: #cccccc;
}

.page-vip-club-privileges-levels__note a {
  color: #26A9E0;
  text-decoration: none;
  font-weight: bold;
}

.page-vip-club-privileges-levels__note a:hover {
  text-decoration: underline;
}

.page-vip-club-privileges-levels__cta-area {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background-color: rgba(38, 169, 224, 0.1);
  border-radius: 12px;
}

.page-vip-club-privileges-levels__cta-text {
  font-size: 22px;
  margin-bottom: 30px;
  font-weight: bold;
  color: #ffffff;
}

.page-vip-club-privileges-levels__btn-large {
  padding: 18px 40px;
  font-size: 20px;
}

.page-vip-club-privileges-levels__faq-list {
  margin-top: 40px;
}

.page-vip-club-privileges-levels__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-vip-club-privileges-levels__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: rgba(38, 169, 224, 0.2);
  transition: background-color 0.3s ease;
}

.page-vip-club-privileges-levels__faq-question:hover {
  background-color: rgba(38, 169, 224, 0.3);
}

.page-vip-club-privileges-levels__faq-title {
  font-size: 20px;
  color: #ffffff;
  margin: 0;
  font-weight: bold;
}

.page-vip-club-privileges-levels__faq-toggle {
  font-size: 28px;
  color: #26A9E0;
  font-weight: bold;
  line-height: 1;
  transition: transform 0.3s ease;
}

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

.page-vip-club-privileges-levels__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: rgba(255, 255, 255, 0.05);
}

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

.page-vip-club-privileges-levels__faq-answer p {
  font-size: 16px;
  line-height: 1.6;
  color: #f0f0f0;
  margin: 0;
}

.page-vip-club-privileges-levels__faq-answer a {
  color: #26A9E0;
  text-decoration: none;
  font-weight: bold;
}

.page-vip-club-privileges-levels__faq-answer a:hover {
  text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-vip-club-privileges-levels__hero-title {
    font-size: 44px;
  }

  .page-vip-club-privileges-levels__hero-description {
    font-size: 18px;
  }

  .page-vip-club-privileges-levels__section-title {
    font-size: 32px;
  }

  .page-vip-club-privileges-levels__benefit-image,
  .page-vip-club-privileges-levels__level-image {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .page-vip-club-privileges-levels__hero-section {
    height: 500px;
    padding-top: var(--header-offset, 120px) !important; /* Ensure mobile padding-top */
  }

  .page-vip-club-privileges-levels__hero-title {
    font-size: 36px;
  }

  .page-vip-club-privileges-levels__hero-description {
    font-size: 16px;
  }

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

  .page-vip-club-privileges-levels__section-title {
    font-size: 28px;
  }

  .page-vip-club-privileges-levels__text-block {
    font-size: 15px;
  }

  .page-vip-club-privileges-levels__benefits-grid,
  .page-vip-club-privileges-levels__levels-grid,
  .page-vip-club-privileges-levels__steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-vip-club-privileges-levels__benefit-card,
  .page-vip-club-privileges-levels__level-card,
  .page-vip-club-privileges-levels__step-card {
    padding: 25px;
  }

  .page-vip-club-privileges-levels__card-title {
    font-size: 20px;
  }

  .page-vip-club-privileges-levels__card-description {
    font-size: 14px;
  }

  .page-vip-club-privileges-levels__cta-text {
    font-size: 18px;
  }

  .page-vip-club-privileges-levels__btn-primary,
  .page-vip-club-privileges-levels__btn-large {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-vip-club-privileges-levels__cta-buttons,
  .page-vip-club-privileges-levels__button-group,
  .page-vip-club-privileges-levels__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }

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

  .page-vip-club-privileges-levels__container,
  .page-vip-club-privileges-levels__section,
  .page-vip-club-privileges-levels__card,
  .page-vip-club-privileges-levels__cta-area {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

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

  .page-vip-club-privileges-levels__faq-title {
    font-size: 18px;
  }

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

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

@media (max-width: 480px) {
  .page-vip-club-privileges-levels__hero-title {
    font-size: 30px;
  }

  .page-vip-club-privileges-levels__hero-description {
    font-size: 15px;
  }

  .page-vip-club-privileges-levels__section-title {
    font-size: 24px;
  }

  .page-vip-club-privileges-levels__btn-primary,
  .page-vip-club-privileges-levels__btn-large {
    font-size: 16px;
    padding: 12px 20px;
  }

  .page-vip-club-privileges-levels__faq-title {
    font-size: 16px;
  }
}