.page-vip-club-privileges-levels {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --card-bg-color: #11271B;
  --background-color-dark: #08160F;
  --text-main-color: #F2FFF6;
  --text-secondary-color: #A7D9B8;
  --border-color: #2E7A4E;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green-color: #0A4B2C;

  font-family: 'Arial', sans-serif;
  color: var(--text-main-color); /* Default text color for the page, assuming dark body background */
  background-color: var(--background-color-dark);
}

.page-vip-club-privileges-levels__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-bottom: 60px;
  overflow: hidden;
}

.page-vip-club-privileges-levels__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7);
}

.page-vip-club-privileges-levels__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  max-width: 900px;
  padding: 20px;
  box-sizing: border-box;
  color: var(--text-main-color);
}

.page-vip-club-privileges-levels__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--gold-color);
  margin-bottom: 15px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(87, 227, 141, 0.5);
}

.page-vip-club-privileges-levels__hero-description {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--text-secondary-color);
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-vip-club-privileges-levels__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-vip-club-privileges-levels__cta-buttons--center {
  margin-top: 40px;
}

.page-vip-club-privileges-levels__btn-primary,
.page-vip-club-privileges-levels__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-vip-club-privileges-levels__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-vip-club-privileges-levels__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.page-vip-club-privileges-levels__btn-secondary {
  background: transparent;
  color: var(--glow-color);
  border: 2px solid var(--glow-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-vip-club-privileges-levels__btn-secondary:hover {
  background: var(--glow-color);
  color: var(--background-color-dark);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

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

.page-vip-club-privileges-levels__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--gold-color);
  text-align: center;
  margin-bottom: 30px;
  text-shadow: 0 0 8px rgba(87, 227, 141, 0.3);
}

.page-vip-club-privileges-levels__sub-title {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  color: var(--glow-color);
  text-align: center;
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-vip-club-privileges-levels__text-block {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary-color);
  margin-bottom: 20px;
  text-align: justify;
}

.page-vip-club-privileges-levels__text-block a {
  color: var(--glow-color);
  text-decoration: none;
}

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

.page-vip-club-privileges-levels__introduction-section {
  padding: 60px 0;
  background-color: var(--background-color-dark);
}

.page-vip-club-privileges-levels__levels-overview {
  padding: 60px 0;
  background-color: var(--card-bg-color);
}

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

.page-vip-club-privileges-levels__level-card {
  background-color: var(--background-color-dark);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-vip-club-privileges-levels__level-icon {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

.page-vip-club-privileges-levels__level-title {
  font-size: 1.5rem;
  color: var(--glow-color);
  margin-bottom: 15px;
}

.page-vip-club-privileges-levels__level-description {
  font-size: 0.95rem;
  color: var(--text-secondary-color);
  line-height: 1.7;
}

.page-vip-club-privileges-levels__benefits-section {
  padding: 60px 0;
  background-color: var(--background-color-dark);
}

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

.page-vip-club-privileges-levels__benefit-item {
  background-color: var(--card-bg-color);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-vip-club-privileges-levels__benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
}

.page-vip-club-privileges-levels__benefit-icon {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

.page-vip-club-privileges-levels__benefit-title {
  font-size: 1.4rem;
  color: var(--glow-color);
  margin-bottom: 15px;
}

.page-vip-club-privileges-levels__benefit-description {
  font-size: 0.95rem;
  color: var(--text-secondary-color);
  line-height: 1.7;
}

.page-vip-club-privileges-levels__how-to-join {
  padding: 60px 0;
  background-color: var(--background-color-dark);
}

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

.page-vip-club-privileges-levels__step-item {
  background-color: var(--card-bg-color);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.page-vip-club-privileges-levels__step-number {
  width: 60px;
  height: 60px;
  background-color: var(--glow-color);
  color: var(--background-color-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  margin: 0 auto 20px auto;
}

.page-vip-club-privileges-levels__step-title {
  font-size: 1.4rem;
  color: var(--gold-color);
  margin-bottom: 15px;
}

.page-vip-club-privileges-levels__step-description {
  font-size: 0.95rem;
  color: var(--text-secondary-color);
  line-height: 1.7;
}

.page-vip-club-privileges-levels__faq-section {
  padding: 60px 0;
  background-color: var(--card-bg-color);
}

.page-vip-club-privileges-levels__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
}

.page-vip-club-privileges-levels__faq-item {
  background-color: var(--background-color-dark);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-vip-club-privileges-levels__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  color: var(--text-main-color);
  font-size: 1.1rem;
  font-weight: bold;
  background-color: var(--deep-green-color);
  border-bottom: 1px solid var(--border-color);
  user-select: none;
}

.page-vip-club-privileges-levels__faq-question::-webkit-details-marker {
  display: none;
}

.page-vip-club-privileges-levels__faq-question:hover {
  background-color: var(--primary-color);
}

.page-vip-club-privileges-levels__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

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

.page-vip-club-privileges-levels__faq-answer {
  padding: 20px 25px;
  font-size: 0.95rem;
  color: var(--text-secondary-color);
  line-height: 1.7;
  border-top: 1px solid var(--divider-color);
}

.page-vip-club-privileges-levels__faq-answer p {
  margin: 0;
}

.page-vip-club-privileges-levels__conclusion-section {
  padding: 60px 0;
  text-align: center;
  background-color: var(--background-color-dark);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-vip-club-privileges-levels__hero-content {
    max-width: 700px;
  }
  .page-vip-club-privileges-levels__container {
    padding: 30px 15px;
  }
  .page-vip-club-privileges-levels__level-icon,
  .page-vip-club-privileges-levels__benefit-icon {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 768px) {
  .page-vip-club-privileges-levels__hero-section {
    padding-top: 10px !important; /* body already handles header offset */
    padding-bottom: 40px;
  }
  .page-vip-club-privileges-levels__hero-image {
    filter: brightness(0.5);
  }
  .page-vip-club-privileges-levels__hero-content {
    position: static;
    transform: none;
    padding: 20px;
  }
  .page-vip-club-privileges-levels__main-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }
  .page-vip-club-privileges-levels__hero-description {
    font-size: clamp(0.9rem, 3vw, 1.1rem);
  }
  .page-vip-club-privileges-levels__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-vip-club-privileges-levels__btn-primary,
  .page-vip-club-privileges-levels__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
  }

  .page-vip-club-privileges-levels__section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-bottom: 25px;
  }
  .page-vip-club-privileges-levels__sub-title {
    font-size: clamp(1.2rem, 5vw, 1.5rem);
  }
  .page-vip-club-privileges-levels__text-block,
  .page-vip-club-privileges-levels__level-description,
  .page-vip-club-privileges-levels__benefit-description,
  .page-vip-club-privileges-levels__step-description,
  .page-vip-club-privileges-levels__faq-answer {
    font-size: 0.9rem;
    line-height: 1.6;
  }
  .page-vip-club-privileges-levels__level-cards,
  .page-vip-club-privileges-levels__benefit-grid,
  .page-vip-club-privileges-levels__steps {
    grid-template-columns: 1fr;
  }
  .page-vip-club-privileges-levels__level-card,
  .page-vip-club-privileges-levels__benefit-item,
  .page-vip-club-privileges-levels__step-item,
  .page-vip-club-privileges-levels__faq-item {
    padding: 20px;
  }
  .page-vip-club-privileges-levels__level-icon,
  .page-vip-club-privileges-levels__benefit-icon {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-width: 200px;
    min-height: 200px;
  }
  .page-vip-club-privileges-levels__container,
  .page-vip-club-privileges-levels__introduction-section,
  .page-vip-club-privileges-levels__levels-overview,
  .page-vip-club-privileges-levels__benefits-section,
  .page-vip-club-privileges-levels__how-to-join,
  .page-vip-club-privileges-levels__faq-section,
  .page-vip-club-privileges-levels__conclusion-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-vip-club-privileges-levels img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-vip-club-privileges-levels__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }
  .page-vip-club-privileges-levels__faq-answer {
    padding: 15px 20px;
  }
}

/* General body text style to ensure contrast on dark background */
.page-vip-club-privileges-levels p,
.page-vip-club-privileges-levels li,
.page-vip-club-privileges-levels span {
  color: var(--text-secondary-color);
}

/* Ensure headers on dark background are visible */
.page-vip-club-privileges-levels h1,
.page-vip-club-privileges-levels h2,
.page-vip-club-privileges-levels h3,
.page-vip-club-privileges-levels h4,
.page-vip-club-privileges-levels h5,
.page-vip-club-privileges-levels h6 {
  color: var(--text-main-color);
}

/* Override specific element colors for better contrast */
.page-vip-club-privileges-levels__main-title,
.page-vip-club-privileges-levels__section-title {
  color: var(--gold-color);
}

.page-vip-club-privileges-levels__sub-title,
.page-vip-club-privileges-levels__level-title,
.page-vip-club-privileges-levels__benefit-title {
  color: var(--glow-color);
}

.page-vip-club-privileges-levels__faq-question {
  color: var(--text-main-color);
}

.page-vip-club-privileges-levels__faq-answer p {
  color: var(--text-secondary-color);
}