/* style/vip-club.css */
/* 页面完整样式代码 - 注意：所有选择器必须使用BEM命名规则（双下划线__连接） */
.page-vip-club {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Body background is #1a1a1a (dark), so main text color is light */
  background-color: #1a1a1a; /* Ensure consistency with body background */
}

/* Hero Section */
.page-vip-club__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  background-color: #017439; /* Brand color background for hero */
  color: #ffffff;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Fixed header spacing */
  overflow: hidden; /* Ensure image doesn't overflow */
}

.page-vip-club__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Subtle overlay */
  z-index: 0;
}

.page-vip-club__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.page-vip-club__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-vip-club__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #ffffff;
}

.page-vip-club__hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap; /* Allow wrapping on small screens */
}

/* General Section Styles */
.page-vip-club__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-vip-club__section-title {
  font-size: 2.5em;
  color: #ffffff; /* Default for dark background */
  text-align: center;
  margin-bottom: 20px;
}

.page-vip-club__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  color: #f0f0f0; /* Slightly lighter for readability */
}

.page-vip-club__dark-section {
  background-color: #0d0d0d; /* Slightly darker than body for visual separation */
  color: #ffffff;
  padding: 60px 0;
}

.page-vip-club__dark-section .page-vip-club__section-title,
.page-vip-club__dark-section .page-vip-club__section-description {
  color: #ffffff;
}

.page-vip-club__text-center {
  text-align: center;
}

/* Buttons */
.page-vip-club__btn-primary,
.page-vip-club__btn-secondary,
.page-vip-club__btn-small,
.page-vip-club__btn-large {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  white-space: nowrap; /* Prevent text wrapping initially */
  box-sizing: border-box; /* Include padding in width */
}

.page-vip-club__btn-primary {
  background-color: #017439; /* Brand primary color */
  color: #ffffff;
  border: 2px solid #017439;
}

.page-vip-club__btn-primary:hover {
  background-color: #005a2e;
  border-color: #005a2e;
}

.page-vip-club__btn-secondary {
  background-color: #ffffff;
  color: #017439;
  border: 2px solid #ffffff;
}

.page-vip-club__btn-secondary:hover {
  background-color: #f0f0f0;
  border-color: #f0f0f0;
}

.page-vip-club__btn-small {
  padding: 8px 15px;
  font-size: 0.9em;
}

.page-vip-club__btn-large {
  padding: 15px 30px;
  font-size: 1.1em;
}

/* Custom button for Login/Register (as per requirements) */
.page-vip-club__cta-section .page-vip-club__btn-secondary {
  background-color: #C30808; /* Specific color for Login/Register */
  color: #FFFF00; /* Specific font color */
  border: 2px solid #C30808;
}

.page-vip-club__cta-section .page-vip-club__btn-secondary:hover {
  background-color: #a00606;
  border-color: #a00606;
}


/* Intro Section */
.page-vip-club__intro-section .page-vip-club__section-description {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-vip-club__level-card {
  background-color: rgba(255, 255, 255, 0.08); /* Semi-transparent white on dark background */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #ffffff;
}

.page-vip-club__level-card .page-vip-club__level-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-vip-club__level-title {
  font-size: 1.8em;
  color: #FFFF00; /* Highlight VIP level titles */
  margin-bottom: 15px;
}

.page-vip-club__level-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  width: 100%;
}

.page-vip-club__level-benefits li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  color: #f0f0f0;
}

.page-vip-club__level-benefits li::before {
  content: '✓';
  color: #017439; /* Brand color for checkmark */
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-vip-club__cta-bottom {
  text-align: center;
  margin-top: 50px;
}

/* Join Section */
.page-vip-club__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-vip-club__step-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

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

.page-vip-club__step-card p {
  color: #f0f0f0;
  margin-bottom: 20px;
}

/* Exclusive Promotions */
.page-vip-club__exclusive-promotions {
  background-color: #1a1a1a;
  padding: 60px 0;
}

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

.page-vip-club__promo-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

.page-vip-club__promo-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-vip-club__promo-title {
  font-size: 1.5em;
  color: #FFFF00;
  margin-bottom: 15px;
}

.page-vip-club__promo-card p {
  color: #f0f0f0;
  margin-bottom: 20px;
}

/* Service Section */
.page-vip-club__service-section {
  padding: 60px 0;
}

.page-vip-club__service-content {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-vip-club__service-image {
  flex: 1;
  min-width: 300px;
  max-width: 50%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-vip-club__service-list {
  flex: 1;
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 300px;
}

.page-vip-club__service-list li {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-vip-club__service-list-title {
  font-size: 1.3em;
  color: #FFFF00;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-vip-club__service-list p {
  color: #f0f0f0;
  text-align: left; /* Override global center text */
  margin-bottom: 0;
}

/* Video Section */
.page-vip-club__video-section {
  background-color: #1a1a1a; /* Match body background */
  padding: 60px 0;
}

.page-vip-club__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-vip-club__video-wrapper .page-vip-club__video,
.page-vip-club__video-wrapper .page-vip-club__video-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  cursor: pointer;
}

/* FAQ Section */
.page-vip-club__faq-section {
  background-color: #0d0d0d;
  padding: 60px 0;
}

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

.page-vip-club__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #ffffff;
}

.page-vip-club__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

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

.page-vip-club__faq-item[open] > .page-vip-club__faq-question {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-vip-club__faq-item .page-vip-club__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #017439;
}

.page-vip-club__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1.05em;
  color: #f0f0f0;
  line-height: 1.6;
}

.page-vip-club__faq-answer p {
  margin-bottom: 0;
  text-align: left; /* Override global center text */
}

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

/* Call to Action Section */
.page-vip-club__cta-section {
  padding: 60px 0;
}

.page-vip-club__cta-section .page-vip-club__hero-cta {
  margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-vip-club__hero-title {
    font-size: 3em;
  }
  .page-vip-club__hero-description {
    font-size: 1.2em;
  }
  .page-vip-club__service-content {
    flex-direction: column;
  }
  .page-vip-club__service-image {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-vip-club {
    font-size: 16px;
    line-height: 1.6;
  }

  /* Fixed header offset on mobile */
  .page-vip-club__hero-section {
    padding-top: var(--header-offset, 120px) !important;
  }

  .page-vip-club__hero-title {
    font-size: 2.2em;
  }
  .page-vip-club__hero-description {
    font-size: 1em;
  }

  .page-vip-club__section-title {
    font-size: 1.8em;
  }
  .page-vip-club__section-description {
    font-size: 0.95em;
  }

  .page-vip-club__container {
    padding: 20px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Images responsive */
  .page-vip-club img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    box-sizing: border-box !important;
  }

  /* Video responsive */
  .page-vip-club video,
  .page-vip-club__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    box-sizing: border-box !important;
  }
  .page-vip-club__video-section,
  .page-vip-club__video-container,
  .page-vip-club__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  /* Buttons responsive */
  .page-vip-club__btn-primary,
  .page-vip-club__btn-secondary,
  .page-vip-club__btn-small,
  .page-vip-club__btn-large,
  .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__cta-section .page-vip-club__hero-cta {
    flex-direction: column;
    gap: 15px;
  }
  .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;
  }

  /* Card layouts */
  .page-vip-club__level-card,
  .page-vip-club__step-card,
  .page-vip-club__promo-card {
    padding: 20px;
  }

  .page-vip-club__service-content {
    gap: 20px;
  }
  .page-vip-club__service-list li {
    padding: 15px;
  }
}