.page-vip-club {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #DC143C; /* Crimson */
  --text-light: #ffffff;
  --text-dark: #333333;
  --background-dark: #121212;
  --background-light: #f8f9fa;
  --card-background: rgba(255, 255, 255, 0.08);
  --border-color: rgba(255, 255, 255, 0.15);
  --link-color: #007bff;
  --link-hover-color: #0056b3;

  color: var(--text-light); /* Default text color for dark body background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  padding-top: 180px; /* For fixed header on desktop */
}

@media (max-width: 768px) {
  .page-vip-club {
    padding-top: 140px; /* For fixed header on mobile */
  }
}

.page-vip-club__hero-banner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
  overflow: hidden;
  border-bottom: 2px solid var(--primary-color);
}

.page-vip-club__hero-content-wrapper {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin-bottom: 40px;
}

.page-vip-club__main-title {
  font-size: 4.2em;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-light);
  line-height: 1.2;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.page-vip-club__main-title .highlight {
  color: var(--primary-color);
}

.page-vip-club__subtitle {
  font-size: 1.5em;
  color: #ccc;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-vip-club__cta-button {
  display: inline-block;
  padding: 18px 45px;
  margin: 10px;
  border-radius: 50px;
  font-size: 1.2em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-vip-club__cta-button--primary {
  background: linear-gradient(90deg, var(--primary-color), #FFC107);
  color: var(--text-dark);
  border: none;
}

.page-vip-club__cta-button--primary:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 25px rgba(255, 215, 0, 0.4);
  filter: brightness(1.1);
}

.page-vip-club__cta-button--secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-vip-club__cta-button--secondary:hover {
  transform: translateY(-5px) scale(1.02);
  background: var(--primary-color);
  color: var(--text-dark);
  box-shadow: 0 12px 25px rgba(255, 215, 0, 0.4);
}

.page-vip-club__hero-image-wrapper {
  position: absolute;
  bottom: -100px; /* Adjust to peek from bottom */
  right: -50px;
  width: 500px;
  height: auto;
  opacity: 0.2;
  z-index: 1;
  transform: rotate(15deg);
  filter: grayscale(100%); /* Maintain original color requirement by not using filter to change color */
}

.page-vip-club__hero-image {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 1024px) {
  .page-vip-club__main-title {
    font-size: 3.5em;
  }
  .page-vip-club__subtitle {
    font-size: 1.3em;
  }
  .page-vip-club__hero-image-wrapper {
    width: 400px;
    bottom: -80px;
    right: -30px;
  }
}

@media (max-width: 768px) {
  .page-vip-club__hero-banner {
    padding: 40px 15px;
  }
  .page-vip-club__main-title {
    font-size: 2.5em;
  }
  .page-vip-club__subtitle {
    font-size: 1.1em;
  }
  .page-vip-club__cta-button {
    padding: 14px 30px;
    font-size: 1em;
    margin: 8px;
  }
  .page-vip-club__hero-image-wrapper {
    display: none;
  }
}

.page-vip-club__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-vip-club__section-title {
  font-size: 2.8em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  color: var(--text-light);
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.page-vip-club__section-title .highlight {
  color: var(--primary-color);
}

.page-vip-club__text-block {
  font-size: 1.1em;
  margin-bottom: 25px;
  color: #ccc;
  text-align: justify;
}

.page-vip-club__text-block a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-vip-club__text-block a:hover {
  color: #FFC107;
  text-decoration: underline;
}

.page-vip-club__text-block--small {
  font-size: 0.95em;
  text-align: center;
  margin-top: 30px;
  color: #aaa;
}

/* Introduction Section */
.page-vip-club__introduction-section {
  background: var(--background-dark);
  padding: 80px 0;
  border-bottom: 1px solid var(--border-color);
}

/* Benefits Section */
.page-vip-club__benefits-section {
  background: linear-gradient(180deg, #1a1a1a, #0a0a0a);
  padding: 80px 0;
  border-bottom: 1px solid var(--border-color);
}

.page-vip-club__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-vip-club__benefit-card {
  background: var(--card-background);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
}

.page-vip-club__benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.page-vip-club__benefit-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-vip-club__card-title {
  font-size: 1.6em;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-vip-club__benefit-card p {
  font-size: 1em;
  color: #bbb;
  line-height: 1.7;
}

/* Membership Tiers Section */
.page-vip-club__membership-tiers-section {
  background: var(--background-dark);
  padding: 80px 0;
  border-bottom: 1px solid var(--border-color);
}

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

.page-vip-club__tier-card {
  background: var(--card-background);
  border-radius: 12px;
  padding: 35px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-vip-club__tier-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.page-vip-club__tier-title {
  font-size: 2em;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.page-vip-club__tier-card:nth-child(1) .page-vip-club__tier-title { color: #C0C0C0; /* Silver */ }
.page-vip-club__tier-card:nth-child(2) .page-vip-club__tier-title { color: var(--primary-color); /* Gold */ }
.page-vip-club__tier-card:nth-child(3) .page-vip-club__tier-title { color: #E0FFFF; /* Platinum */ }
.page-vip-club__tier-card:nth-child(4) .page-vip-club__tier-title { color: #00BFFF; /* Diamond */ }

.page-vip-club__tier-description {
  font-size: 0.95em;
  color: #bbb;
  margin-bottom: 20px;
}

.page-vip-club__tier-features {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  text-align: left;
  flex-grow: 1;
}

.page-vip-club__tier-features li {
  font-size: 0.95em;
  color: #ccc;
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.page-vip-club__tier-features li::before {
  content: '✓';
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-vip-club__cta-button--tier {
  padding: 12px 30px;
  font-size: 1em;
  margin-top: 20px;
  border-radius: 30px;
  background: linear-gradient(90deg, var(--secondary-color), #FF4500);
  color: var(--text-light);
  border: none;
}

.page-vip-club__cta-button--tier:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(220, 20, 60, 0.4);
  filter: brightness(1.1);
}

/* Exclusive Games Section */
.page-vip-club__exclusive-games-section {
  background: linear-gradient(180deg, #0a0a0a, #1a1a1a);
  padding: 80px 0;
  border-bottom: 1px solid var(--border-color);
}

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

.page-vip-club__game-card--small {
  background: var(--card-background);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
}

.page-vip-club__game-card--small:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.page-vip-club__game-card-image {
  width: 100%;
  height: 200px; /* Minimum size 200x200px */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.page-vip-club__cta-button--small {
  padding: 10px 25px;
  font-size: 0.9em;
  border-radius: 25px;
  margin-top: 15px;
}

/* Promotions Section */
.page-vip-club__promotions-section {
  background: var(--background-dark);
  padding: 80px 0;
  border-bottom: 1px solid var(--border-color);
}

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

.page-vip-club__promo-card {
  background: var(--card-background);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
}

.page-vip-club__promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.page-vip-club__promo-image {
  width: 100%;
  height: 200px; /* Minimum size 200x200px */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.page-vip-club__cta-button--promo {
  padding: 12px 30px;
  font-size: 1em;
  border-radius: 30px;
  margin-top: 20px;
  background: linear-gradient(90deg, var(--primary-color), #FFC107);
  color: var(--text-dark);
  border: none;
}

.page-vip-club__cta-button--promo:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(255, 215, 0, 0.4);
  filter: brightness(1.1);
}

/* FAQ Section */
.page-vip-club__faq-section {
  background: linear-gradient(180deg, #1a1a1a, #0a0a0a);
  padding: 80px 0;
}

.page-vip-club__faq-list {
  margin-top: 40px;
}

.page-vip-club__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.page-vip-club__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 15px;
  opacity: 0;
  background: rgba(255, 255, 255, 0.05);
  color: #ccc;
}

.page-vip-club__faq-item.active .page-vip-club__faq-answer {
  max-height: 2000px !important;
  padding: 20px 15px !important;
  opacity: 1;
  border-radius: 0 0 5px 5px;
}

.page-vip-club__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: var(--card-background);
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
  color: var(--text-light);
}

.page-vip-club__faq-question:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
}

.page-vip-club__faq-question:active {
  background: rgba(255, 255, 255, 0.15);
}

.page-vip-club__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 1.1em;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: var(--primary-color);
}

.page-vip-club__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: var(--primary-color);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.page-vip-club__faq-item.active .page-vip-club__faq-toggle {
  color: var(--secondary-color);
  transform: rotate(45deg);
}

/* CTA Bottom Section */
.page-vip-club__cta-bottom {
  background: var(--background-dark);
  padding: 60px 0;
  text-align: center;
  border-top: 2px solid var(--primary-color);
}

.page-vip-club__cta-content {
  max-width: 900px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-vip-club__section-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-vip-club__container {
    padding: 20px 15px;
  }
  .page-vip-club__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-vip-club__text-block {
    font-size: 1em;
  }
  .page-vip-club__benefits-grid,
  .page-vip-club__tiers-grid,
  .page-vip-club__game-cards-wrapper,
  .page-vip-club__promo-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-vip-club__benefit-card,
  .page-vip-club__tier-card,
  .page-vip-club__game-card--small,
  .page-vip-club__promo-card {
    padding: 20px;
  }
  .page-vip-club__benefit-icon {
    width: 80px;
    height: 80px;
  }
  .page-vip-club__card-title {
    font-size: 1.4em;
  }
  .page-vip-club__tier-title {
    font-size: 1.6em;
  }
  .page-vip-club__faq-question {
    padding: 15px;
  }
  .page-vip-club__faq-question h3 {
    font-size: 1em;
  }
  .page-vip-club__faq-toggle {
    font-size: 20px;
    width: 24px;
    height: 24px;
  }
  .page-vip-club__faq-item.active .page-vip-club__faq-answer {
    padding: 15px !important;
  }
  .page-vip-club__cta-bottom {
    padding: 40px 15px;
  }
}