/* style/vip-program-levels-privileges.css */
.page-vip-program-levels-privileges {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for text */
  background-color: #0A0A0A; /* Main dark background */
  line-height: 1.6;
}

.page-vip-program-levels-privileges a {
  color: #FFD700;
  text-decoration: none;
}

.page-vip-program-levels-privileges a:hover {
  text-decoration: underline;
  color: #FFC107;
}

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

.page-vip-program-levels-privileges__hero-section {
  background: linear-gradient(135deg, #0A0A0A 0%, #333333 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-vip-program-levels-privileges__hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  font-weight: bold;
}

.page-vip-program-levels-privileges__hero-subtitle {
  font-size: 1.5em;
  color: #F0F0F0;
  margin-bottom: 40px;
}

.page-vip-program-levels-privileges__hero-image {
  max-width: 90%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  margin-top: 30px;
}

.page-vip-program-levels-privileges__introduction-section,
.page-vip-program-levels-privileges__levels-section,
.page-vip-program-levels-privileges__benefits-section,
.page-vip-program-levels-privileges__how-to-upgrade-section,
.page-vip-program-levels-privileges__commitment-section,
.page-vip-program-levels-privileges__faq-section,
.page-vip-program-levels-privileges__cta-section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-vip-program-levels-privileges__section-title {
  font-size: 2.8em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 15px;
}

.page-vip-program-levels-privileges__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-vip-program-levels-privileges p {
  margin-bottom: 20px;
  font-size: 1.1em;
  line-height: 1.8;
  color: #D0D0D0;
}

.page-vip-program-levels-privileges ul,
.page-vip-program-levels-privileges ol {
  margin-left: 25px;
  margin-bottom: 20px;
  color: #D0D0D0;
}

.page-vip-program-levels-privileges li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-vip-program-levels-privileges strong {
  color: #FFD700;
}

.page-vip-program-levels-privileges em {
  font-style: italic;
  color: #FFD700;
}

/* VIP Levels Cards */
.page-vip-program-levels-privileges__levels-section .page-vip-program-levels-privileges__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-vip-program-levels-privileges__level-card {
  background-color: #1A1A1A;
  border: 1px solid #FFD700;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-vip-program-levels-privileges__level-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
}

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

.page-vip-program-levels-privileges__level-title {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-vip-program-levels-privileges__level-card p {
  font-size: 1em;
  color: #C0C0C0;
  text-align: left;
}

.page-vip-program-levels-privileges__level-card ul {
  text-align: left;
  margin-left: 20px;
  color: #C0C0C0;
}

/* Benefits Section */
.page-vip-program-levels-privileges__benefits-section .page-vip-program-levels-privileges__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.page-vip-program-levels-privileges__benefit-item {
  background-color: #1A1A1A;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-vip-program-levels-privileges__benefit-item:hover {
  transform: translateY(-8px);
  background-color: #222222;
}

.page-vip-program-levels-privileges__benefit-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.4));
}

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

.page-vip-program-levels-privileges__benefit-item p {
  font-size: 1em;
  color: #C0C0C0;
  text-align: center;
}

/* How to Upgrade Section */
.page-vip-program-levels-privileges__how-to-upgrade-section ol {
  list-style-type: decimal;
  margin-left: 40px;
  font-size: 1.1em;
  color: #D0D0D0;
}

.page-vip-program-levels-privileges__how-to-upgrade-section li {
  margin-bottom: 15px;
  line-height: 1.7;
}

/* FAQ Section */
.page-vip-program-levels-privileges__faq-item {
  background-color: #1A1A1A;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-vip-program-levels-privileges__faq-question {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-vip-program-levels-privileges__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-vip-program-levels-privileges__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-vip-program-levels-privileges__faq-answer {
  font-size: 1.05em;
  color: #C0C0C0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  padding-top: 0;
  padding-bottom: 0;
}

.page-vip-program-levels-privileges__faq-answer.active {
  max-height: 200px; /* Adjust as needed for content */
  padding-top: 15px;
  padding-bottom: 15px;
}

/* Call to Action Section */
.page-vip-program-levels-privileges__cta-section {
  text-align: center;
  background-color: #0A0A0A;
  padding-bottom: 80px;
}

.page-vip-program-levels-privileges__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A0A0A;
  padding: 15px 40px;
  font-size: 1.4em;
  font-weight: bold;
  border-radius: 8px;
  text-transform: uppercase;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: 30px;
  box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.page-vip-program-levels-privileges__cta-button:hover {
  background-color: #FFC107;
  transform: translateY(-3px);
  text-decoration: none;
}

.page-vip-program-levels-privileges__cta-subtext {
  margin-top: 20px;
  font-size: 1.1em;
  color: #C0C0C0;
}

.page-vip-program-levels-privileges__cta-link {
  color: #FFD700;
  font-weight: bold;
}

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

  .page-vip-program-levels-privileges__hero-subtitle {
    font-size: 1.3em;
  }

  .page-vip-program-levels-privileges__section-title {
    font-size: 2.2em;
  }

  .page-vip-program-levels-privileges__levels-section .page-vip-program-levels-privileges__container,
  .page-vip-program-levels-privileges__benefits-section .page-vip-program-levels-privileges__container {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-vip-program-levels-privileges__hero-section {
    padding: 80px 0;
  }

  .page-vip-program-levels-privileges__hero-title {
    font-size: 2.2em;
  }

  .page-vip-program-levels-privileges__hero-subtitle {
    font-size: 1.1em;
  }

  .page-vip-program-levels-privileges__section-title {
    font-size: 1.8em;
  }

  .page-vip-program-levels-privileges__level-card,
  .page-vip-program-levels-privileges__benefit-item {
    padding: 25px;
  }

  .page-vip-program-levels-privileges__level-title {
    font-size: 1.8em;
  }

  .page-vip-program-levels-privileges__benefit-title {
    font-size: 1.6em;
  }

  .page-vip-program-levels-privileges__cta-button {
    font-size: 1.2em;
    padding: 12px 30px;
  }
}

@media (max-width: 480px) {
  .page-vip-program-levels-privileges__hero-section {
    padding: 60px 0;
  }

  .page-vip-program-levels-privileges__hero-title {
    font-size: 1.8em;
  }

  .page-vip-program-levels-privileges__hero-subtitle {
    font-size: 0.9em;
  }

  .page-vip-program-levels-privileges__section-title {
    font-size: 1.5em;
  }

  .page-vip-program-levels-privileges__levels-section .page-vip-program-levels-privileges__container,
  .page-vip-program-levels-privileges__benefits-section .page-vip-program-levels-privileges__container {
    grid-template-columns: 1fr;
  }

  .page-vip-program-levels-privileges p,
  .page-vip-program-levels-privileges li {
    font-size: 0.95em;
  }

  .page-vip-program-levels-privileges__level-icon,
  .page-vip-program-levels-privileges__benefit-icon {
    width: 70px;
    height: 70px;
  }

  .page-vip-program-levels-privileges__faq-question {
    font-size: 1.2em;
  }

  .page-vip-program-levels-privileges__cta-button {
    font-size: 1em;
    padding: 10px 25px;
  }
}