.page-vip-club-benefits {
  color: #ffffff; /* Light text for dark body background */
  background-color: transparent; /* Body background handled by shared.css */
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

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

.page-vip-club-benefits__section-title,
.page-vip-club-benefits__hero-title {
  color: #FFD700; /* Gold for main titles */
  font-size: 2.8em;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.page-vip-club-benefits__hero-title {
  font-size: 3.5em;
  margin-bottom: 25px;
}

.page-vip-club-benefits__section-intro,
.page-vip-club-benefits__hero-description {
  font-size: 1.1em;
  line-height: 1.6;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #f0f0f0;
}

.page-vip-club-benefits__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px 40px 20px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-vip-club-benefits__hero-content {
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
}

.page-vip-club-benefits__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.page-vip-club-benefits__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4); /* Darken image for text readability */
}

.page-vip-club-benefits__hero-cta-button,
.page-vip-club-benefits__cta-button,
.page-vip-club-benefits__tier-cta-button,
.page-vip-club-benefits__step-cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #1A202C; /* Dark text on gold button */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-vip-club-benefits__hero-cta-button:hover,
.page-vip-club-benefits__cta-button:hover,
.page-vip-club-benefits__tier-cta-button:hover,
.page-vip-club-benefits__step-cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-vip-club-benefits__overview-section,
.page-vip-club-benefits__tier-system-section,
.page-vip-club-benefits__exclusive-bonuses-section,
.page-vip-club-benefits__personalized-service-section,
.page-vip-club-benefits__how-to-join-section,
.page-vip-club-benefits__faq-section,
.page-vip-club-benefits__cta-section {
  padding: 60px 0;
}

.page-vip-club-benefits__features-grid,
.page-vip-club-benefits__tiers-grid,
.page-vip-club-benefits__bonuses-grid,
.page-vip-club-benefits__service-grid,
.page-vip-club-benefits__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-vip-club-benefits__feature-card,
.page-vip-club-benefits__tier-card,
.page-vip-club-benefits__bonus-card,
.page-vip-club-benefits__service-item,
.page-vip-club-benefits__step-card {
  background-color: #1A202C; /* Dark background for cards */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-vip-club-benefits__feature-card:hover,
.page-vip-club-benefits__tier-card:hover,
.page-vip-club-benefits__bonus-card:hover,
.page-vip-club-benefits__service-item:hover,
.page-vip-club-benefits__step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.page-vip-club-benefits__feature-icon,
.page-vip-club-benefits__bonus-image,
.page-vip-club-benefits__service-icon {
  width: 100%;
  height: auto;
  max-width: 400px; /* Ensure images are not too small */
  min-width: 200px;
  min-height: 200px;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-vip-club-benefits__feature-title,
.page-vip-club-benefits__tier-title,
.page-vip-club-benefits__bonus-title,
.page-vip-club-benefits__service-title,
.page-vip-club-benefits__step-title {
  color: #FFD700;
  font-size: 1.6em;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-vip-club-benefits__feature-description,
.page-vip-club-benefits__tier-description,
.page-vip-club-benefits__bonus-description,
.page-vip-club-benefits__service-description,
.page-vip-club-benefits__step-description {
  font-size: 1em;
  line-height: 1.6;
  color: #cccccc;
  margin-bottom: 20px;
}

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

.page-vip-club-benefits__tier-benefits-list li {
  background-color: rgba(255, 215, 0, 0.1);
  color: #FFD700;
  padding: 10px 15px;
  border-radius: 5px;
  margin-bottom: 10px;
  font-size: 0.95em;
  display: flex;
  align-items: center;
}

.page-vip-club-benefits__tier-benefits-list li::before {
  content: '★';
  color: #FFD700;
  margin-right: 10px;
  font-size: 1.2em;
}

.page-vip-club-benefits__tier-note {
  text-align: center;
  margin-top: 40px;
  font-style: italic;
  color: #aaaaaa;
}

.page-vip-club-benefits__cta-center {
  text-align: center;
  margin-top: 40px;
}

.page-vip-club-benefits__step-number {
  background-color: #FFD700;
  color: #1A202C;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: 700;
  margin-bottom: 20px;
}

.page-vip-club-benefits__faq-accordion {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-vip-club-benefits__faq-item {
  background-color: #1A202C;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-vip-club-benefits__faq-question {
  color: #FFD700;
  font-size: 1.3em;
  padding: 20px;
  cursor: pointer;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}

.page-vip-club-benefits__faq-question::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-vip-club-benefits__faq-item.active .page-vip-club-benefits__faq-question::after {
  transform: rotate(45deg);
}

.page-vip-club-benefits__faq-answer {
  color: #cccccc;
  padding: 0 20px 20px 20px;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-vip-club-benefits__faq-item.active .page-vip-club-benefits__faq-answer {
  max-height: 200px; /* Adjust as needed */
  padding: 0 20px 20px 20px;
}

.page-vip-club-benefits__cta-section {
  background-color: #FFD700; /* Gold background for CTA */
  color: #1A202C; /* Dark text on gold */
  text-align: center;
  padding: 80px 20px;
}

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

.page-vip-club-benefits__cta-title {
  color: #1A202C;
  font-size: 2.5em;
  margin-bottom: 20px;
}

.page-vip-club-benefits__cta-description {
  color: #333333;
  font-size: 1.2em;
  margin-bottom: 30px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-vip-club-benefits__section-title,
  .page-vip-club-benefits__hero-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-vip-club-benefits__hero-section {
    padding: 60px 20px 30px 20px;
  }
  .page-vip-club-benefits__hero-title {
    font-size: 2.2em;
  }
  .page-vip-club-benefits__section-title {
    font-size: 2em;
  }
  .page-vip-club-benefits__section-intro,
  .page-vip-club-benefits__hero-description {
    font-size: 1em;
  }
  .page-vip-club-benefits__features-grid,
  .page-vip-club-benefits__tiers-grid,
  .page-vip-club-benefits__bonuses-grid,
  .page-vip-club-benefits__service-grid,
  .page-vip-club-benefits__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-vip-club-benefits__feature-icon,
  .page-vip-club-benefits__bonus-image,
  .page-vip-club-benefits__service-icon {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure images are not too small */
    min-height: 200px;
  }
  .page-vip-club-benefits__cta-title {
    font-size: 2em;
  }
  .page-vip-club-benefits__cta-description {
    font-size: 1.1em;
  }
  /* Content area images must not cause horizontal scroll */
  .page-vip-club-benefits img {
    max-width: 100%;
    height: auto;
  }
  .page-vip-club-benefits {
    overflow-x: hidden;
  }
}

@media (max-width: 480px) {
  .page-vip-club-benefits__hero-title {
    font-size: 1.8em;
  }
  .page-vip-club-benefits__section-title {
    font-size: 1.6em;
  }
  .page-vip-club-benefits__hero-cta-button,
  .page-vip-club-benefits__cta-button,
  .page-vip-club-benefits__tier-cta-button,
  .page-vip-club-benefits__step-cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-vip-club-benefits__feature-title,
  .page-vip-club-benefits__tier-title,
  .page-vip-club-benefits__bonus-title,
  .page-vip-club-benefits__service-title,
  .page-vip-club-benefits__step-title {
    font-size: 1.4em;
  }
  .page-vip-club-benefits__cta-title {
    font-size: 1.8em;
  }
}