.page-vip-club-levels-and-privileges {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0;
  background-color: #121212;
  line-height: 1.6;
}

.page-vip-club-levels-and-privileges a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-vip-club-levels-and-privileges a:hover {
  color: #FFA500;
  text-decoration: underline;
}

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

.page-vip-club-levels-and-privileges__main-heading,
.page-vip-club-levels-and-privileges__section-heading {
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

.page-vip-club-levels-and-privileges__main-heading {
  font-size: 3.2em;
  margin-bottom: 20px;
}

.page-vip-club-levels-and-privileges__section-heading {
  font-size: 2.5em;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 15px;
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
}

.page-vip-club-levels-and-privileges__text-content {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

/* Hero Section */
.page-vip-club-levels-and-privileges__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background: #1A1A1A;
  overflow: hidden;
}

.page-vip-club-levels-and-privileges__hero-container {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.page-vip-club-levels-and-privileges__hero-image {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  margin-bottom: 40px;
}

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

.page-vip-club-levels-and-privileges__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 900px;
}

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

.page-vip-club-levels-and-privileges__cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: linear-gradient(90deg, #FFD700 0%, #FFA500 100%);
  color: #1A1A1A;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
}

.page-vip-club-levels-and-privileges__cta-button:hover {
  background: linear-gradient(90deg, #FFA500 0%, #FFD700 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

.page-vip-club-levels-and-privileges__cta-button--secondary {
    background: linear-gradient(90deg, #1A1A1A 0%, #333333 100%);
    color: #FFD700;
    border: 2px solid #FFD700;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.page-vip-club-levels-and-privileges__cta-button--secondary:hover {
    background: linear-gradient(90deg, #333333 0%, #1A1A1A 100%);
    color: #FFA500;
    border-color: #FFA500;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

/* Sections */
.page-vip-club-levels-and-privileges__introduction,
.page-vip-club-levels-and-privileges__vip-levels,
.page-vip-club-levels-and-privileges__key-privileges,
.page-vip-club-levels-and-privileges__how-to-join,
.page-vip-club-levels-and-privileges__faq {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-vip-club-levels-and-privileges__vip-levels {
  background-color: #1A1A1A;
}

.page-vip-club-levels-and-privileges__key-privileges {
  background-color: #121212;
}

.page-vip-club-levels-and-privileges__callout {
    background-color: rgba(255, 215, 0, 0.1);
    border-left: 5px solid #FFD700;
    padding: 20px;
    margin-top: 40px;
    border-radius: 5px;
    font-size: 1.1em;
    color: #FFD700;
}

.page-vip-club-levels-and-privileges__callout p {
    margin: 0;
}

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

.page-vip-club-levels-and-privileges__level-card {
  background-color: #222222;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-vip-club-levels-and-privileges__level-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(255, 215, 0, 0.2);
}

.page-vip-club-levels-and-privileges__level-icon {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.7));
}

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

.page-vip-club-levels-and-privileges__level-description {
  font-size: 1em;
  color: #CCCCCC;
  margin-bottom: 20px;
  min-height: 70px; /* Ensure consistent height */
}

.page-vip-club-levels-and-privileges__level-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.page-vip-club-levels-and-privileges__level-benefits li {
  font-size: 0.95em;
  color: #E0E0E0;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.page-vip-club-levels-and-privileges__benefit-icon {
  color: #FFD700;
  margin-right: 10px;
  font-size: 1.2em;
}

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

.page-vip-club-levels-and-privileges__privilege-item {
  background-color: #222222;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.page-vip-club-levels-and-privileges__privilege-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(255, 215, 0, 0.15);
}

.page-vip-club-levels-and-privileges__privilege-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-vip-club-levels-and-privileges__privilege-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-vip-club-levels-and-privileges__privilege-description {
  font-size: 1em;
  color: #CCCCCC;
}

/* FAQ Section */
.page-vip-club-levels-and-privileges__faq-list {
  margin-top: 40px;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #2A2A2A;
  color: #FFD700;
  border: 1px solid #3A3A3A;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.faq-question:hover {
  background: #3A3A3A;
  color: #FFA500;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  flex-grow: 1;
}

.faq-toggle {
  font-size: 24px;
  font-weight: bold;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #1A1A1A;
  color: #E0E0E0;
  border-top: none;
  border-radius: 0 0 8px 8px;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed */
  padding: 20px 25px;
  border: 1px solid #3A3A3A;
  border-top: none;
}

.faq-answer p {
  margin: 0;
  font-size: 1em;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-vip-club-levels-and-privileges__main-heading {
    font-size: 2.8em;
  }

  .page-vip-club-levels-and-privileges__section-heading {
    font-size: 2em;
  }

  .page-vip-club-levels-and-privileges__level-grid,
  .page-vip-club-levels-and-privileges__privilege-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .page-vip-club-levels-and-privileges__hero-section {
    padding: 60px 15px;
  }

  .page-vip-club-levels-and-privileges__hero-image {
    max-height: 350px;
  }

  .page-vip-club-levels-and-privileges__main-heading {
    font-size: 2.2em;
  }

  .page-vip-club-levels-and-privileges__hero-description {
    font-size: 1.1em;
  }

  .page-vip-club-levels-and-privileges__cta-button {
    padding: 15px 35px;
    font-size: 1.1em;
  }

  .page-vip-club-levels-and-privileges__section-heading {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-vip-club-levels-and-privileges__introduction,
  .page-vip-club-levels-and-privileges__vip-levels,
  .page-vip-club-levels-and-privileges__key-privileges,
  .page-vip-club-levels-and-privileges__how-to-join,
  .page-vip-club-levels-and-privileges__faq {
    padding: 40px 0;
  }

  .page-vip-club-levels-and-privileges__container {
    padding: 15px;
  }

  .page-vip-club-levels-and-privileges__level-card,
  .page-vip-club-levels-and-privileges__privilege-item {
    padding: 25px;
  }

  .page-vip-club-levels-and-privileges__level-icon,
  .page-vip-club-levels-and-privileges__privilege-icon {
    width: 90px;
    height: 90px;
  }

  .faq-question {
    padding: 15px 20px;
  }

  .faq-question h3 {
    font-size: 1.1em;
  }

  .faq-toggle {
    font-size: 20px;
  }

  .faq-answer {
    padding: 0 20px;
  }

  .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-vip-club-levels-and-privileges__main-heading {
    font-size: 1.8em;
  }

  .page-vip-club-levels-and-privileges__hero-description {
    font-size: 1em;
  }

  .page-vip-club-levels-and-privileges__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-vip-club-levels-and-privileges__section-heading {
    font-size: 1.5em;
  }

  .page-vip-club-levels-and-privileges__level-grid,
  .page-vip-club-levels-and-privileges__privilege-grid {
    grid-template-columns: 1fr;
  }

  .page-vip-club-levels-and-privileges__level-description {
    min-height: auto; 
  }

  .faq-question h3 {
    font-size: 1em;
  }
}