/* style/vip-club-levels-privileges.css */
.page-vip-club-levels-privileges {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for general text on dark background */
  background-color: #0A1931;
  line-height: 1.6;
}

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

.page-vip-club-levels-privileges__hero-section {
  background: linear-gradient(135deg, #0A1931, rgba(255, 215, 0, 0.2)); /* Dark blue to subtle gold gradient */
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-vip-club-levels-privileges__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('[GALLERY:bg:abstract,geometric,dark_pattern,by88club]'); /* Abstract pattern for background texture */
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
}

.page-vip-club-levels-privileges__main-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
  position: relative;
  z-index: 1;
  font-weight: bold;
}

.page-vip-club-levels-privileges__subtitle {
  font-size: 1.3em;
  color: #CCCCCC; /* Lighter grey for subtitle */
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.page-vip-club-levels-privileges__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold for CTA button */
  color: #0A1931; /* Dark text on gold */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  position: relative;
  z-index: 1;
  border: none;
  cursor: pointer;
}

.page-vip-club-levels-privileges__cta-button:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-3px);
}

.page-vip-club-levels-privileges__cta-button--secondary {
  background-color: #0A1931;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin-top: 20px;
}

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

.page-vip-club-levels-privileges__content-section {
  padding: 60px 0;
}

.page-vip-club-levels-privileges__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  margin-top: 50px;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
}

.page-vip-club-levels-privileges__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-vip-club-levels-privileges__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #E0E0E0;
  text-align: justify;
}

.page-vip-club-levels-privileges__image {
  display: block;
  margin: 40px auto;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-vip-club-levels-privileges__image--full-width {
  width: 100%;
}

.page-vip-club-levels-privileges__image--medium {
  max-width: 800px;
}

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

.page-vip-club-levels-privileges__level-card {
  background-color: #1A2B47; /* Slightly lighter dark blue for cards */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.page-vip-club-levels-privileges__level-card:hover {
  transform: translateY(-10px);
  background-color: #2a3c5a;
}

.page-vip-club-levels-privileges__level-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold for level titles */
  margin-bottom: 15px;
  font-weight: bold;
}

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

.page-vip-club-levels-privileges__privilege-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-vip-club-levels-privileges__privilege-list li {
  background-color: #1A2B47;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  border-left: 5px solid #FFD700;
  transition: background-color 0.3s ease;
}

.page-vip-club-levels-privileges__privilege-list li:hover {
  background-color: #2a3c5a;
}

.page-vip-club-levels-privileges__list-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-vip-club-levels-privileges__privilege-list p {
  color: #E0E0E0;
  font-size: 1.05em;
}

.page-vip-club-levels-privileges__faq {
  margin-top: 40px;
}

.page-vip-club-levels-privileges__faq-item {
  background-color: #1A2B47;
  border-radius: 8px;
  margin-bottom: 15px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-vip-club-levels-privileges__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  padding: 20px 25px;
  cursor: pointer;
  position: relative;
  margin: 0;
  font-weight: bold;
}

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

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

.page-vip-club-levels-privileges__faq-answer {
  padding: 0 25px 20px;
  color: #E0E0E0;
  font-size: 1.05em;
  display: none;
  overflow: hidden;
}

.page-vip-club-levels-privileges__faq-question.active + .page-vip-club-levels-privileges__faq-answer {
  display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-vip-club-levels-privileges__main-title {
    font-size: 2.5em;
  }

  .page-vip-club-levels-privileges__subtitle {
    font-size: 1.1em;
  }

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

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

  .page-vip-club-levels-privileges__level-card {
    padding: 20px;
  }

  .page-vip-club-levels-privileges__list-title {
    font-size: 1.3em;
  }

  .page-vip-club-levels-privileges__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
}

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

  .page-vip-club-levels-privileges__main-title {
    font-size: 2em;
  }

  .page-vip-club-levels-privileges__subtitle {
    font-size: 1em;
  }

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

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

  .page-vip-club-levels-privileges__text-block, .page-vip-club-levels-privileges__level-description, .page-vip-club-levels-privileges__privilege-list p, .page-vip-club-levels-privileges__faq-answer {
    font-size: 0.95em;
  }

  .page-vip-club-levels-privileges__list-title {
    font-size: 1.2em;
  }
}