.page-vip-club {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Default text color for dark body background */
  background-color: var(--bg-dark-1, #121212); /* Inherit from shared.css, assuming dark */
}

.page-content {
  padding-top: 120px; /* Adjust for fixed header on desktop */
}

.page-vip-club__section {
  padding: 60px 20px;
  text-align: center;
}

.page-vip-club__dark-section {
  background-color: #1A202C;
  color: #ffffff;
}

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

.page-vip-club__section-title {
  font-size: 36px;
  font-weight: bold;
  color: #FFD700; /* Gold color for main titles */
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.page-vip-club__subsection-title {
  font-size: 28px;
  font-weight: bold;
  color: #FFD700;
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-vip-club__section-description {
  font-size: 18px;
  color: #e0e0e0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.page-vip-club__hero-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #1A202C 0%, #0d0d0d 100%);
  color: #ffffff;
}

.page-vip-club__hero-container {
  max-width: 900px;
  margin: 0 auto;
}

.page-vip-club__hero-title {
  font-size: 48px;
  font-weight: 900;
  color: #FFD700;
  margin-bottom: 25px;
  line-height: 1.2;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.page-vip-club__hero-description {
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.page-vip-club__hero-description strong {
  color: #FFD700;
}

.page-vip-club__hero-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-vip-club__cta-button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-vip-club__cta-button--primary {
  background: #FFD700;
  color: #1A202C;
  border: 2px solid #FFD700;
}

.page-vip-club__cta-button--primary:hover {
  background: #e6c200;
  border-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-vip-club__cta-button--secondary {
  background: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-vip-club__cta-button--secondary:hover {
  background: #FFD700;
  color: #1A202C;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-vip-club__cta-center {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

/* Introduction Section */
.page-vip-club__introduction-section {
  background-color: var(--bg-dark-1, #121212);
  color: #f0f0f0;
}

.page-vip-club__content-grid {
  display: flex;
  gap: 40px;
  align-items: center;
  text-align: left;
  margin-bottom: 40px;
}

.page-vip-club__content-block {
  flex: 1;
}

.page-vip-club__content-block p {
  font-size: 17px;
  margin-bottom: 15px;
  color: #e0e0e0;
}

.page-vip-club__content-block strong {
  color: #FFD700;
}

.page-vip-club__image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-vip-club__image {
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  max-width: 100%;
  height: auto;
  display: block;
}

.page-vip-club__benefits-list {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 800px;
  margin: 0 auto;
}

.page-vip-club__benefits-item {
  background-color: rgba(255, 255, 255, 0.08);
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  font-size: 17px;
  border-left: 4px solid #FFD700;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-vip-club__benefits-item strong {
  color: #FFD700;
}

/* Levels and Rewards Section */
.page-vip-club__levels-rewards-section {
  background-color: #1A202C;
  color: #ffffff;
}

.page-vip-club__levels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 50px;
  margin-bottom: 60px;
}

.page-vip-club__level-card {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-vip-club__level-card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.1);
}

.page-vip-club__level-icon {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 8px #FFD700);
}

.page-vip-club__level-title {
  font-size: 24px;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-vip-club__level-description {
  font-size: 16px;
  color: #e0e0e0;
}

.page-vip-club__rewards-details {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 900px;
  margin: 0 auto;
  margin-top: 30px;
}

.page-vip-club__rewards-details li {
  background-color: rgba(255, 255, 255, 0.08);
  margin-bottom: 12px;
  padding: 18px;
  border-radius: 6px;
  font-size: 16px;
  border-left: 3px solid #FFD700;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  color: #e0e0e0;
}

.page-vip-club__rewards-details li strong {
  color: #FFD700;
}

/* Services and Support Section */
.page-vip-club__services-support-section {
  background-color: var(--bg-dark-1, #121212);
  color: #f0f0f0;
}

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

.page-vip-club__service-card {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-vip-club__service-card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.1);
}

.page-vip-club__service-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

.page-vip-club__service-title {
  font-size: 22px;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-vip-club__service-card p {
  font-size: 16px;
  color: #e0e0e0;
}

.page-vip-club__service-card strong {
  color: #FFD700;
}

/* Events Section */
.page-vip-club__events-section {
  background-color: #1A202C;
  color: #ffffff;
}

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

.page-vip-club__event-card {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-vip-club__event-card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.1);
}

.page-vip-club__event-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-vip-club__event-title {
  font-size: 22px;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-vip-club__event-card p {
  font-size: 16px;
  color: #e0e0e0;
}

.page-vip-club__event-card strong {
  color: #FFD700;
}

/* Betting Experience Section */
.page-vip-club__betting-experience-section {
  background-color: var(--bg-dark-1, #121212);
  color: #f0f0f0;
}

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

.page-vip-club__betting-card {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-vip-club__betting-card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.1);
}

.page-vip-club__betting-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-vip-club__betting-title {
  font-size: 22px;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-vip-club__betting-card p {
  font-size: 16px;
  color: #e0e0e0;
}

.page-vip-club__betting-card strong {
  color: #FFD700;
}

/* FAQ Section */
.page-vip-club__faq-section {
  background-color: #1A202C;
  color: #ffffff;
}

.page-vip-club__faq-list {
  max-width: 900px;
  margin: 50px auto 0 auto;
  text-align: left;
}

.page-vip-club__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

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

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

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

.page-vip-club__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: #FFD700;
  pointer-events: none;
}

.page-vip-club__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #FFD700;
  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: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
}

.page-vip-club__faq-item.active .page-vip-club__faq-toggle {
  transform: rotate(45deg);
  background-color: #FFD700;
  color: #1A202C;
}

.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 20px;
  opacity: 0;
  background: rgba(255, 255, 255, 0.03);
  color: #e0e0e0;
  font-size: 16px;
}

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

.page-vip-club__faq-answer p {
  margin: 0;
  color: #e0e0e0;
}

.page-vip-club__faq-answer strong {
  color: #FFD700;
}

/* Conclusion Section */
.page-vip-club__conclusion-section {
  background-color: #1A202C;
  color: #ffffff;
  padding-bottom: 80px;
}

.page-vip-club__conclusion-section .page-vip-club__section-title {
  color: #FFD700;
}

.page-vip-club__conclusion-section .page-vip-club__section-description {
  color: #f0f0f0;
}

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

  .page-vip-club__section-title {
    font-size: 32px;
  }

  .page-vip-club__subsection-title {
    font-size: 26px;
  }

  .page-vip-club__content-grid {
    flex-direction: column;
    text-align: center;
  }

  .page-vip-club__image-wrapper {
    order: -1; /* Image appears above text on smaller screens */
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .page-content {
    padding-top: 100px !important; /* Adjust for fixed header on mobile */
  }

  .page-vip-club__section {
    padding: 40px 15px;
  }

  .page-vip-club__hero-section {
    padding: 60px 15px;
  }

  .page-vip-club__hero-title {
    font-size: 34px;
  }

  .page-vip-club__hero-description {
    font-size: 17px;
  }

  .page-vip-club__hero-cta {
    flex-direction: column;
    gap: 15px;
  }

  .page-vip-club__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 25px;
    font-size: 16px;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-vip-club__section-title {
    font-size: 28px;
  }

  .page-vip-club__subsection-title {
    font-size: 22px;
  }

  .page-vip-club__section-description,
  .page-vip-club__content-block p,
  .page-vip-club__benefits-item,
  .page-vip-club__level-description,
  .page-vip-club__rewards-details li,
  .page-vip-club__service-card p,
  .page-vip-club__event-card p,
  .page-vip-club__betting-card p,
  .page-vip-club__faq-answer p {
    font-size: 15px;
    line-height: 1.6;
  }

  .page-vip-club__levels-grid,
  .page-vip-club__service-grid,
  .page-vip-club__event-grid,
  .page-vip-club__betting-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-vip-club__level-icon {
    width: 100px;
    height: 100px;
  }

  .page-vip-club__level-title {
    font-size: 20px;
  }

  .page-vip-club__service-icon {
    width: 60px;
    height: 60px;
  }

  .page-vip-club__service-title,
  .page-vip-club__event-title,
  .page-vip-club__betting-title {
    font-size: 20px;
  }

  .page-vip-club__event-image,
  .page-vip-club__betting-image {
    height: 150px;
  }

  .page-vip-club__faq-question {
    padding: 15px;
  }

  .page-vip-club__faq-question h3 {
    font-size: 16px;
  }

  .page-vip-club__faq-toggle {
    font-size: 24px;
    width: 28px;
    height: 28px;
  }

  .page-vip-club__faq-item.active .page-vip-club__faq-answer {
    padding: 15px !important;
  }

  /* Ensure all images are responsive */
  .page-vip-club img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-vip-club__section,
  .page-vip-club__container,
  .page-vip-club__level-card,
  .page-vip-club__service-card,
  .page-vip-club__event-card,
  .page-vip-club__betting-card,
  .page-vip-club__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
  }
  /* Specific overrides for padding if needed */
  .page-vip-club__faq-list {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 480px) {
  .page-vip-club__hero-title {
    font-size: 28px;
  }

  .page-vip-club__section-title {
    font-size: 24px;
  }

  .page-vip-club__subsection-title {
    font-size: 20px;
  }

  .page-vip-club__hero-description {
    font-size: 16px;
  }
}

/* Contrast Fixes (if needed, though design aims for compliance) */
.page-vip-club__contrast-fix {
  background: #ffffff !important;
  color: #333333 !important;
  border: 1px solid #e0e0e0 !important;
}

.page-vip-club__text-contrast-fix {
  color: #333333 !important;
  text-shadow: none !important;
}