.page-vip-club-levels-privileges {
  font-family: Arial, sans-serif;
  color: #333333; /* Dark text for light body background */
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
}

.page-vip-club-levels-privileges__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-vip-club-levels-privileges__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
  margin-top: 40px;
  font-weight: bold;
}

.page-vip-club-levels-privileges__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #555555;
}

/* Hero Section */
.page-vip-club-levels-privileges__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: #000000; /* Dark background for hero */
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-vip-club-levels-privileges__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.3;
  overflow: hidden;
}

.page-vip-club-levels-privileges__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-vip-club-levels-privileges__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.page-vip-club-levels-privileges__hero-title {
  font-size: 3.5em;
  color: #FCBC45; /* Login button color for emphasis */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-vip-club-levels-privileges__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-vip-club-levels-privileges__hero-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  margin: 0 10px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-vip-club-levels-privileges__hero-button--register {
  background-color: #FFFFFF;
  color: #000000;
}

.page-vip-club-levels-privileges__hero-button--register:hover {
  background-color: #f0f0f0;
}

.page-vip-club-levels-privileges__hero-button--login {
  background-color: #FCBC45;
  color: #000000;
}

.page-vip-club-levels-privileges__hero-button--login:hover {
  background-color: #e0a53b;
}

/* Overview Section */
.page-vip-club-levels-privileges__overview-section {
  padding: 80px 0;
  background-color: #f8f8f8;
}

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

.page-vip-club-levels-privileges__feature-card {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-vip-club-levels-privileges__feature-card:hover {
  transform: translateY(-5px);
}

.page-vip-club-levels-privileges__feature-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Enforce min image size */
  min-height: 200px; /* Enforce min image size */
}

.page-vip-club-levels-privileges__feature-title {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 10px;
}

.page-vip-club-levels-privileges__feature-text {
  color: #555555;
}

/* Levels Section */
.page-vip-club-levels-privileges__levels-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

.page-vip-club-levels-privileges__levels-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 10px;
}

.page-vip-club-levels-privileges__tab-button {
  background-color: #e0e0e0;
  color: #333333;
  border: none;
  padding: 12px 25px;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-vip-club-levels-privileges__tab-button--active {
  background-color: #FCBC45;
  color: #000000;
}

.page-vip-club-levels-privileges__tab-button:hover:not(.page-vip-club-levels-privileges__tab-button--active) {
  background-color: #d0d0d0;
}

.page-vip-club-levels-privileges__level-content {
  display: none;
  background-color: #fefefe;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  animation: fadeIn 0.5s ease-in-out;
}

.page-vip-club-levels-privileges__level-content--active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.page-vip-club-levels-privileges__level-title {
  font-size: 2em;
  color: #000000;
  margin-bottom: 15px;
  text-align: center;
}

.page-vip-club-levels-privileges__level-intro {
  font-size: 1.1em;
  color: #555555;
  margin-bottom: 30px;
  text-align: center;
}

.page-vip-club-levels-privileges__privileges-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px;
}

.page-vip-club-levels-privileges__privileges-list li {
  background-color: #f0f0f0;
  padding: 15px 20px;
  border-left: 5px solid #FCBC45;
  border-radius: 5px;
  font-size: 1em;
  color: #333333;
}

.page-vip-club-levels-privileges__privileges-list li strong {
  color: #000000;
}

/* How to Join Section */
.page-vip-club-levels-privileges__join-section {
  padding: 80px 0;
  background-color: #f8f8f8;
}

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

.page-vip-club-levels-privileges__step-card {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.page-vip-club-levels-privileges__step-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  background-color: #FCBC45;
  color: #000000;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
}

.page-vip-club-levels-privileges__step-title {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 10px;
}

.page-vip-club-levels-privileges__step-text {
  color: #555555;
  margin-bottom: 20px;
}

.page-vip-club-levels-privileges__step-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #000000;
  color: #FFFFFF;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-vip-club-levels-privileges__step-button:hover {
  background-color: #333333;
}

/* FAQ Section */
.page-vip-club-levels-privileges__faq-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

.page-vip-club-levels-privileges__faq-item {
  background-color: #fefefe;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.03);
}

.page-vip-club-levels-privileges__faq-question {
  font-size: 1.3em;
  color: #000000;
  margin-bottom: 10px;
  cursor: pointer;
}

.page-vip-club-levels-privileges__faq-answer {
  font-size: 1em;
  color: #555555;
  display: none; /* Hidden by default, toggled by JS */
}

/* CTA Section */
.page-vip-club-levels-privileges__cta-section {
  padding: 80px 0;
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
}

.page-vip-club-levels-privileges__cta-button {
  display: inline-block;
  padding: 18px 35px;
  background-color: #FCBC45;
  color: #000000;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  margin-top: 30px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-vip-club-levels-privileges__cta-button:hover {
  background-color: #e0a53b;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-vip-club-levels-privileges__hero-title {
    font-size: 2.8em;
  }
  .page-vip-club-levels-privileges__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-vip-club-levels-privileges__hero-section {
    padding: 40px 15px;
  }
  .page-vip-club-levels-privileges__hero-title {
    font-size: 2.2em;
  }
  .page-vip-club-levels-privileges__hero-description {
    font-size: 1.1em;
  }
  .page-vip-club-levels-privileges__hero-button {
    padding: 12px 25px;
    font-size: 1em;
    margin: 0 5px;
  }
  .page-vip-club-levels-privileges__section-title {
    font-size: 1.8em;
  }
  .page-vip-club-levels-privileges__section-description {
    font-size: 1em;
  }
  .page-vip-club-levels-privileges__features-grid,
  .page-vip-club-levels-privileges__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-vip-club-levels-privileges__tab-button {
    padding: 10px 20px;
    font-size: 1em;
  }
  .page-vip-club-levels-privileges__level-content {
    padding: 30px 20px;
  }
  .page-vip-club-levels-privileges__level-title {
    font-size: 1.8em;
  }
  .page-vip-club-levels-privileges__privileges-list {
    grid-template-columns: 1fr;
  }
  .page-vip-club-levels-privileges__cta-button {
    padding: 15px 30px;
    font-size: 1.1em;
  }

  /* Mobile specific image sizing to prevent overflow */
  .page-vip-club-levels-privileges img {
    max-width: 100%;
    height: auto;
  }
  /* Ensure content area does not cause horizontal scroll */
  .page-vip-club-levels-privileges {
    overflow-x: hidden;
  }
}