.page-vip-club {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #000000; /* Ensure body is dark */
}

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

.page-vip-club__dark-bg {
  background-color: #000000; /* Explicitly dark background */
  color: #ffffff; /* Light text on dark background */
}

.page-vip-club__light-bg {
  background-color: #FFFFFF; /* Explicitly light background */
  color: #333333; /* Dark text on light background */
}

.page-vip-club__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 20px;
  color: #26A9E0; /* Brand color for titles */
  font-weight: bold;
}

.page-vip-club__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  line-height: 1.8;
}

.page-vip-club__btn-primary,
.page-vip-club__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-vip-club__btn-primary {
  background-color: #26A9E0; /* Main brand color */
  color: #FFFFFF;
  border: 2px solid #26A9E0;
}

.page-vip-club__btn-primary:hover {
  background-color: #1a7bb0;
  border-color: #1a7bb0;
}

.page-vip-club__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-vip-club__btn-secondary:hover {
  background-color: #26A9E0;
  color: #FFFFFF;
}

.page-vip-club__btn-large {
  padding: 18px 40px;
  font-size: 1.2em;
}

/* Hero Section */
.page-vip-club__hero-section {
  position: relative;
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Fixed header spacing */
}

.page-vip-club__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
  color: #FFFFFF;
}

.page-vip-club__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFFFFF;
}

.page-vip-club__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

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

.page-vip-club__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.5); /* Overlay for readability */
}

.page-vip-club__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7); /* Darken image for text readability, not changing color */
}

/* Why Join Section */
.page-vip-club__why-join-section {
  padding: 80px 0;
}

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

.page-vip-club__benefit-card {
  background-color: #f0f8ff; /* Light background for card on light section */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  color: #333333; /* Dark text on light card */
}

.page-vip-club__benefit-card:hover {
  transform: translateY(-10px);
}

.page-vip-club__benefit-icon {
  width: 100%;
  height: auto;
  max-width: 250px;
  margin: 0 auto 20px auto;
  border-radius: 8px;
  object-fit: cover;
}

.page-vip-club__benefit-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-vip-club__benefit-text {
  font-size: 1em;
  line-height: 1.7;
}

/* Tiers Section */
.page-vip-club__tiers-section {
  padding: 80px 0;
}

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

.page-vip-club__tier-card {
  background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white on dark background */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #FFFFFF; /* Light text on dark card */
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-vip-club__card-silver {
  border-color: #C0C0C0;
}

.page-vip-club__card-gold {
  border-color: #FFD700;
}

.page-vip-club__card-platinum {
  border-color: #E5E4E2;
}

.page-vip-club__card-diamond {
  border-color: #B9F2FF;
}

.page-vip-club__card-royal {
  border-color: #8B0000; /* Dark red for royal */
}

.page-vip-club__tier-title {
  font-size: 2em;
  margin-bottom: 10px;
  font-weight: bold;
  color: #26A9E0; /* Brand color for tier titles */
}

.page-vip-club__tier-intro {
  font-size: 1.1em;
  margin-bottom: 20px;
  flex-grow: 1;
}

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

.page-vip-club__tier-benefits-list li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  font-size: 0.95em;
}

.page-vip-club__list-icon {
  color: #26A9E0;
  margin-right: 10px;
  font-weight: bold;
  font-size: 1.2em;
}

/* Privileges Section */
.page-vip-club__privileges-section {
  padding: 80px 0;
}

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

.page-vip-club__privilege-item {
  background-color: #f0f8ff; /* Light background for card on light section */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: #333333; /* Dark text on light card */
}

.page-vip-club__privilege-icon {
  width: 100%;
  height: auto;
  max-width: 150px;
  margin: 0 auto 20px auto;
  border-radius: 8px;
  object-fit: cover;
}

.page-vip-club__privilege-title {
  font-size: 1.4em;
  margin-bottom: 10px;
  color: #26A9E0;
}

.page-vip-club__privilege-text {
  font-size: 0.95em;
  line-height: 1.6;
}

/* How to Join Section */
.page-vip-club__how-to-join-section {
  padding: 80px 0;
}

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

.page-vip-club__step-card {
  background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white on dark background */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #FFFFFF; /* Light text on dark card */
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-vip-club__step-number {
  font-size: 3em;
  font-weight: bold;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-vip-club__step-title {
  font-size: 1.6em;
  margin-bottom: 15px;
  color: #FFFFFF;
}

.page-vip-club__step-text {
  font-size: 1em;
  line-height: 1.7;
}

.page-vip-club__step-text a {
  color: #26A9E0;
  text-decoration: underline;
}

.page-vip-club__step-text a:hover {
  color: #1a7bb0;
}

.page-vip-club__cta-bottom {
  text-align: center;
}

/* FAQ Section */
.page-vip-club__faq-section {
  padding: 80px 0;
}

.page-vip-club__faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.page-vip-club__faq-item {
  background-color: #f0f8ff; /* Light background for FAQ item on light section */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  color: #333333; /* Dark text on light FAQ item */
}

.page-vip-club__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  background-color: #e6f7ff; /* Slightly darker light background for question */
  color: #26A9E0;
  border-bottom: 1px solid #cceeff;
}

.page-vip-club__faq-question:hover {
  background-color: #d9edf7;
}

.page-vip-club__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
}

.page-vip-club__faq-answer {
  padding: 20px 25px;
  font-size: 1em;
  line-height: 1.7;
  color: #555555;
}

.page-vip-club__faq-item[open] > .page-vip-club__faq-question {
  border-bottom: 1px solid #cceeff;
}

/* For details/summary styling */
.page-vip-club__faq-item summary {
  list-style: none;
}
.page-vip-club__faq-item summary::-webkit-details-marker {
  display: none;
}

/* Final CTA Section */
.page-vip-club__final-cta-section {
  padding: 80px 0;
  text-align: center;
}

/* Global image styles */
.page-vip-club img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-vip-club__hero-title {
    font-size: 3em;
  }
  .page-vip-club__hero-description {
    font-size: 1.1em;
  }
  .page-vip-club__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-vip-club__hero-section {
    padding: 80px 0;
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-vip-club__hero-title {
    font-size: 2.5em;
  }
  .page-vip-club__hero-description {
    font-size: 1em;
  }
  .page-vip-club__hero-cta {
    flex-direction: column;
    gap: 15px;
  }
  .page-vip-club__btn-primary,
  .page-vip-club__btn-secondary,
  .page-vip-club a[class*="button"],
  .page-vip-club a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-vip-club__hero-cta .page-vip-club__btn-primary,
  .page-vip-club__hero-cta .page-vip-club__btn-secondary {
    width: auto;
    margin: 0 auto;
  }
  .page-vip-club__section-title {
    font-size: 1.8em;
  }
  .page-vip-club__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-vip-club__benefits-grid,
  .page-vip-club__tier-cards-grid,
  .page-vip-club__privilege-grid,
  .page-vip-club__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-vip-club__benefit-card,
  .page-vip-club__tier-card,
  .page-vip-club__privilege-item,
  .page-vip-club__step-card,
  .page-vip-club__faq-item {
    padding: 20px;
  }
  .page-vip-club img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-vip-club__section,
  .page-vip-club__card,
  .page-vip-club__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-vip-club__video-section {
    padding-top: var(--header-offset, 120px) !important; /* Consistent with common */
  }
  .page-vip-club__cta-buttons,
  .page-vip-club__button-group,
  .page-vip-club__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .page-vip-club__cta-buttons {
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .page-vip-club__hero-title {
    font-size: 2em;
  }
  .page-vip-club__section-title {
    font-size: 1.5em;
  }
  .page-vip-club__btn-large {
    padding: 15px 30px;
    font-size: 1em;
  }
}