.page-vip-program {
  font-family: 'Arial', sans-serif;
  color: #FFF1E8; /* Text Main */
  background: #140C0C; /* Background */
  line-height: 1.6;
}

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

.page-vip-program__section {
  padding: 60px 0;
  text-align: center;
}

.page-vip-program__dark-bg {
  background: #140C0C; /* Background */
  color: #FFF1E8;
}

.page-vip-program__light-bg {
  background: #2A1212; /* Card BG */
  color: #FFF1E8;
}

.page-vip-program__section-title {
  font-size: 38px;
  font-weight: bold;
  margin-bottom: 30px;
  color: #F3C54D; /* Gold */
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-vip-program__text-block {
  font-size: 17px;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto 20px;
  color: #FFF1E8;
}

.page-vip-program a {
  color: #F3C54D;
  text-decoration: none;
}

.page-vip-program a:hover {
  text-decoration: underline;
}

/* Hero Section */
.page-vip-program__hero-section {
  padding-top: 10px; /* Small top padding */
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.page-vip-program__hero-image {
  width: 100%;
  max-height: 600px; /* Limit height for desktop */
  overflow: hidden;
  margin-bottom: 30px;
}

.page-vip-program__hero-image img {
  width: 100%;
  height: 675px; /* Fixed height for consistent aspect ratio on desktop */
  object-fit: cover;
  display: block;
}

.page-vip-program__hero-content {
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
  position: relative; /* Ensure content is above any background effects */
  z-index: 1;
}

.page-vip-program__main-title {
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 900;
  margin-bottom: 20px;
  color: #F3C54D; /* Gold */
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}

.page-vip-program__description {
  font-size: 19px;
  line-height: 1.8;
  margin-bottom: 40px;
  color: #FFF1E8;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-vip-program__cta-button {
  display: inline-block;
  padding: 15px 35px;
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%); /* Button color */
  color: #FFF1E8; /* Text Main */
  font-size: 20px;
  font-weight: bold;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
  word-wrap: normal;
}

.page-vip-program__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  opacity: 0.9;
}

/* VIP Levels Grid */
.page-vip-program__levels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.page-vip-program__level-card {
  background: #2A1212; /* Card BG */
  border: 1px solid #6A1E1E; /* Border */
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%; /* Ensure cards in a row have equal height */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.page-vip-program__level-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-vip-program__level-card img {
  
  height: auto;
  margin: 0 auto 20px;
  display: block;
  border-radius: 10px;
}

.page-vip-program__card-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #F3C54D; /* Gold */
}

.page-vip-program__card-text {
  font-size: 16px;
  color: #FFF1E8;
  line-height: 1.7;
  flex-grow: 1;
}

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

.page-vip-program__benefit-item {
  background: #2A1212; /* Card BG */
  border: 1px solid #6A1E1E; /* Border */
  border-radius: 15px;
  padding: 30px;
  text-align: left;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  height: 100%;
}

.page-vip-program__benefit-item .page-vip-program__card-title {
  font-size: 22px;
  text-align: center;
  margin-bottom: 10px;
}

.page-vip-program__benefit-item .page-vip-program__card-text {
  font-size: 16px;
  text-align: left;
}

.page-vip-program__image-wrapper {
  margin-top: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-vip-program__image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

/* How to Join Steps */
.page-vip-program__steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.page-vip-program__step-item {
  background: #2A1212; /* Card BG */
  border: 1px solid #6A1E1E; /* Border */
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.page-vip-program__step-number {
  font-size: 48px;
  font-weight: bold;
  color: #F3C54D; /* Gold */
  margin-bottom: 15px;
  line-height: 1;
}

.page-vip-program__cta-button--centered {
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

/* FAQ Section */
details.page-vip-program__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #6A1E1E; /* Border */
  overflow: hidden;
  background: #2A1212; /* Card BG */
  color: #FFF1E8;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
details.page-vip-program__faq-item summary.page-vip-program__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;
  font-size: 18px;
  font-weight: 600;
  color: #F3C54D; /* Gold */
}
details.page-vip-program__faq-item summary.page-vip-program__faq-question::-webkit-details-marker {
  display: none;
}
details.page-vip-program__faq-item summary.page-vip-program__faq-question:hover {
  background: #3A1A1A;
}
.page-vip-program__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #F3C54D;
}
.page-vip-program__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #FFF1E8; /* Text Main */
  flex-shrink: 0;
  margin-left: 15px;
  width: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}
details.page-vip-program__faq-item[open] .page-vip-program__faq-toggle {
  transform: rotate(45deg);
}
details.page-vip-program__faq-item .page-vip-program__faq-answer {
  padding: 0 25px 20px;
  background: #140C0C; /* Background */
  border-radius: 0 0 10px 10px;
  color: #FFF1E8;
  text-align: left;
  font-size: 16px;
  line-height: 1.7;
}

/* Final CTA Section */
.page-vip-program__cta-final {
  padding-top: 80px;
  padding-bottom: 80px;
}

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

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

.page-vip-program__cta-button--secondary {
  background: none;
  border: 2px solid #F3C54D; /* Gold border */
  color: #F3C54D; /* Gold text */
  box-shadow: none;
}

.page-vip-program__cta-button--secondary:hover {
  background: #F3C54D;
  color: #140C0C;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

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

/* --- Responsive Styles --- */
@media (max-width: 1024px) {
  .page-vip-program__section-title {
    font-size: 34px;
  }
  .page-vip-program__hero-image img {
    height: 500px;
  }
  .page-vip-program__levels-grid,
  .page-vip-program__benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  .page-vip-program__steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .page-vip-program__container {
    padding: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-vip-program__section {
    padding: 40px 0;
  }

  .page-vip-program__section-title {
    font-size: 28px;
    margin-bottom: 20px;
    line-height: 1.3;
  }

  .page-vip-program__text-block {
    font-size: 15px;
    margin-bottom: 15px;
    max-width: 100%;
    padding: 0 10px;
  }

  /* HERO 主图区域 */
  .page-vip-program__hero-section {
    padding-bottom: 40px;
  }
  .page-vip-program__hero-image {
    max-height: unset;
  }
  .page-vip-program__hero-image img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important; /* 禁止 cover 裁切两侧 */
    aspect-ratio: unset !important; /* 避免固定比例 */
  }
  .page-vip-program__hero-content {
    padding: 0 15px;
  }
  .page-vip-program__main-title {
    font-size: clamp(28px, 8vw, 40px);
    margin-bottom: 15px;
  }
  .page-vip-program__description {
    font-size: 16px;
    margin-bottom: 30px;
  }

  /* 通用图片与容器 */
  .page-vip-program img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }
  .page-vip-program__image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 15px;
  }

  /* 产品展示图区域 (VIP Levels Grid) */
  .page-vip-program__levels-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 15px;
  }
  .page-vip-program__level-card {
    padding: 25px;
  }
  .page-vip-program__card-title {
    font-size: 20px;
  }
  .page-vip-program__card-text {
    font-size: 15px;
  }

  /* Benefits Grid */
  .page-vip-program__benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 15px;
  }
  .page-vip-program__benefit-item {
    padding: 25px;
  }
  .page-vip-program__benefit-item .page-vip-program__card-title {
    font-size: 18px;
  }

  /* How to Join Steps */
  .page-vip-program__steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 15px;
  }

  /* 按钮与按钮容器 */
  .page-vip-program__cta-button,
  .page-vip-program__cta-button--secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
    font-size: 18px;
  }
}
}