/* Base styles for the VIP Club page */
.page-vip-club {
  font-family: 'Arial', sans-serif;
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
  line-height: 1.6;
  overflow-x: hidden;
}

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

.page-vip-club__section {
  padding: 60px 0;
}

.page-vip-club__section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #F2C14E; /* Main color */
  line-height: 1.2;
}

.page-vip-club__section-description {
  font-size: 18px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #FFF6D6;
}

/* Hero Section */
.page-vip-club__hero-section {
  position: relative;
  padding-top: 10px; /* Assuming body handles --header-offset */
  color: #FFF6D6;
  text-align: center;
  overflow: hidden;
}

.page-vip-club__hero-image-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  overflow: hidden;
}

.page-vip-club__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-vip-club__hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 20px;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.8) 0%, rgba(10, 10, 10, 0.9) 100%);
  margin-top: -100px; /* Overlap image slightly for smooth transition */
}

.page-vip-club__main-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  margin-bottom: 20px;
  color: #FFD36B; /* Accent color */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.1;
}

.page-vip-club__hero-description {
  font-size: 20px;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #FFF6D6;
}

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

/* Buttons */
.page-vip-club__btn-primary,
.page-vip-club__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-vip-club__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button gradient */
  color: #111111; /* Dark text for light button */
  border: none;
  box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
}

.page-vip-club__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(242, 193, 78, 0.6);
}

.page-vip-club__btn-secondary {
  background: transparent;
  color: #F2C14E; /* Main color */
  border: 2px solid #F2C14E;
}

.page-vip-club__btn-secondary:hover {
  background: #F2C14E;
  color: #111111;
}

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

.page-vip-club__cta-center .page-vip-club__btn-primary {
  min-width: 250px;
}

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

.page-vip-club__benefit-card {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-vip-club__benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(242, 193, 78, 0.2);
}

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

.page-vip-club__benefit-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #FFD36B; /* Accent color */
}

.page-vip-club__benefit-text {
  font-size: 16px;
  color: #FFF6D6;
}

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

.page-vip-club__level-card {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-vip-club__level-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(242, 193, 78, 0.2);
}

.page-vip-club__level-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #F2C14E; /* Main color */
}

.page-vip-club__level-desc {
  font-size: 16px;
  color: #FFF6D6;
  margin-bottom: 20px;
}

.page-vip-club__level-features {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 15px;
  color: #FFF6D6;
  text-align: left;
}

.page-vip-club__level-features li {
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 15px;
  margin-bottom: 5px;
  border-radius: 5px;
  display: flex;
  align-items: center;
}

.page-vip-club__level-features li::before {
  content: '✓';
  color: #FFD36B;
  font-weight: bold;
  margin-right: 10px;
}

.page-vip-club__promotion-text {
  font-size: 18px;
  text-align: center;
  max-width: 900px;
  margin: 50px auto 0 auto;
  color: #FFF6D6;
}

/* FAQ Section */
.page-vip-club__section--faq {
  background-color: rgba(17, 17, 17, 0.7); /* Slightly lighter card BG for contrast */
  border-top: 1px solid #3A2A12;
}

details.page-vip-club__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #3A2A12;
  overflow: hidden;
  background: #111111; /* Card BG */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

details.page-vip-club__faq-item summary.page-vip-club__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}

details.page-vip-club__faq-item summary.page-vip-club__faq-question::-webkit-details-marker {
  display: none;
}

details.page-vip-club__faq-item summary.page-vip-club__faq-question:hover {
  background: rgba(242, 193, 78, 0.1);
}

.page-vip-club__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #FFF6D6;
}

.page-vip-club__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #FFD36B; /* Accent color */
  flex-shrink: 0;
  margin-left: 15px;
  width: 30px;
  text-align: center;
}

details.page-vip-club__faq-item .page-vip-club__faq-answer {
  padding: 0 25px 25px;
  background: rgba(255, 255, 255, 0.05); /* Slightly different background for answer */
  border-radius: 0 0 8px 8px;
  color: #FFF6D6;
  font-size: 16px;
}

/* Contact CTA Section */
.page-vip-club__section--contact-cta {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(90deg, #0A0A0A 0%, rgba(242, 193, 78, 0.1) 50%, #0A0A0A 100%);
}

.page-vip-club__cta-box {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 15px;
  padding: 50px 30px;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-vip-club__cta-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: #FFD36B; /* Accent color */
  margin-bottom: 20px;
}

.page-vip-club__cta-description {
  font-size: 18px;
  color: #FFF6D6;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* General Image styles */
.page-vip-club img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover; /* Default to cover for most content images */
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-vip-club__section {
    padding: 40px 0;
  }

  .page-vip-club__section-title {
    font-size: clamp(26px, 3.5vw, 38px);
  }

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

  .page-vip-club__main-title {
    font-size: clamp(32px, 4.5vw, 50px);
  }

  .page-vip-club__cta-buttons {
    flex-wrap: wrap;
    gap: 15px;
  }

  .page-vip-club__btn-primary,
  .page-vip-club__btn-secondary {
    padding: 12px 25px;
    font-size: 16px;
  }

  .page-vip-club__benefits-grid,
  .page-vip-club__levels-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-vip-club__benefit-icon {
    max-width: 150px;
  }

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

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

  details.page-vip-club__faq-item summary.page-vip-club__faq-question {
    padding: 15px 20px;
  }

  .page-vip-club__faq-qtext {
    font-size: 17px;
  }

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

  details.page-vip-club__faq-item .page-vip-club__faq-answer {
    padding: 0 20px 20px;
  }

  .page-vip-club__cta-box {
    padding: 40px 25px;
  }
}

@media (max-width: 768px) {
  .page-vip-club__container {
    padding: 0 15px;
  }

  .page-vip-club__section {
    padding: 30px 0;
  }

  .page-vip-club__section-title {
    font-size: clamp(24px, 6vw, 32px);
    margin-bottom: 15px;
  }

  .page-vip-club__section-description,
  .page-vip-club__hero-description {
    font-size: 15px;
    margin-bottom: 30px;
  }

  /* HERO 主图区域 */
  .page-vip-club__hero-section {
    padding-top: 10px; /* Consistent small top padding */
  }

  .page-vip-club__hero-image-wrapper {
    padding-bottom: 75%; /* 4:3 Aspect Ratio for mobile hero */
  }

  .page-vip-club__hero-image {
    object-fit: contain !important;
    aspect-ratio: unset !important; /* Allow image to fit without cropping */
    background-color: #0A0A0A; /* Ensure background color if image doesn't fill */
  }

  .page-vip-club__hero-content {
    padding: 40px 15px;
    margin-top: -60px;
  }

  .page-vip-club__main-title {
    font-size: clamp(28px, 7vw, 40px);
    margin-bottom: 15px;
  }

  /* 按钮与按钮容器 */
  .page-vip-club__cta-buttons {
    flex-direction: column;
    gap: 10px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-vip-club__btn-primary,
  .page-vip-club__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 15px !important;
    font-size: 16px !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-vip-club__cta-center {
    margin-top: 30px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* 产品展示图区域 (Benefits Grid, Levels Grid) */
  .page-vip-club__benefits-grid,
  .page-vip-club__levels-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
  }

  .page-vip-club__benefit-card,
  .page-vip-club__level-card {
    padding: 20px;
  }

  .page-vip-club__benefit-icon {
    max-width: 120px;
    margin-bottom: 15px;
  }

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

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

  .page-vip-club__level-features li {
    font-size: 14px;
  }

  .page-vip-club__promotion-text {
    font-size: 16px;
    margin: 30px auto 0 auto;
  }

  /* 通用图片与容器 */
  .page-vip-club img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important; /* Ensure all images fit within their containers */
  }

  .page-vip-club__section,
  .page-vip-club__card,
  .page-vip-club__container,
  .page-vip-club__cta-box {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* FAQ Section */
  details.page-vip-club__faq-item summary.page-vip-club__faq-question {
    padding: 15px;
  }

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

  .page-vip-club__faq-toggle {
    font-size: 22px;
    width: 25px;
  }

  details.page-vip-club__faq-item .page-vip-club__faq-answer {
    padding: 0 15px 15px;
  }

  .page-vip-club__cta-box {
    padding: 30px 15px;
  }

  .page-vip-club__cta-title {
    font-size: clamp(24px, 6vw, 32px);
    margin-bottom: 15px;
  }

  .page-vip-club__cta-description {
    font-size: 16px;
    margin-bottom: 30px;
  }
}