.page-vip-club {
  color: #333333; /* Dark text for light body background */
  background-color: #FFFFFF;
}

.page-vip-club__hero-section {
  position: relative;
  overflow: hidden;
  padding-top: var(--header-offset, 120px);
  background-color: #000000; /* Dark background for hero content */
}

.page-vip-club__hero-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  text-align: center;
}

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

.page-vip-club__hero-content {
  position: relative;
  z-index: 2;
  color: #FFFFFF;
  max-width: 900px;
}

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

.page-vip-club__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  line-height: 1.6;
}

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

.page-vip-club__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  min-width: 200px;
  text-align: center;
}

.page-vip-club__button--register {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #FFFFFF;
}

.page-vip-club__button--register:hover {
  background-color: #f0f0f0;
  border-color: #f0f0f0;
}

.page-vip-club__button--login {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-vip-club__button--login:hover {
  background-color: #e0a53a;
  border-color: #e0a53a;
}

.page-vip-club__button--details,
.page-vip-club__button--learn-more,
.page-vip-club__button--start-earning,
.page-vip-club__button--view {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
}

.page-vip-club__button--details:hover,
.page-vip-club__button--learn-more:hover,
.page-vip-club__button--start-earning:hover,
.page-vip-club__button--view:hover {
  background-color: #333333;
  border-color: #333333;
}

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

.page-vip-club__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 20px;
  color: #000000;
}

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

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

.page-vip-club__tier-card,
.page-vip-club__benefit-card,
.page-vip-club__step-card,
.page-vip-club__related-page-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  transition: transform 0.3s ease;
}

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

.page-vip-club__tier-image,
.page-vip-club__benefit-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
}

.page-vip-club__tier-title,
.page-vip-club__benefit-title,
.page-vip-club__step-title,
.page-vip-club__faq-question,
.page-vip-club__related-page-title {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #000000;
  font-weight: bold;
}

.page-vip-club__tier-title a,
.page-vip-club__related-page-title a {
  color: #000000;
  text-decoration: none;
}

.page-vip-club__tier-title a:hover,
.page-vip-club__related-page-title a:hover {
  color: #FCBC45;
}

.page-vip-club__tier-description,
.page-vip-club__benefit-text,
.page-vip-club__step-text,
.page-vip-club__faq-answer,
.page-vip-club__related-page-description {
  font-size: 1em;
  line-height: 1.7;
  color: #555555;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-vip-club__step-icon {
  font-size: 2.5em;
  font-weight: bold;
  color: #FCBC45;
  background-color: #000000;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  border: 3px solid #FCBC45;
}

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

.page-vip-club__faq-section {
  background-color: #f9f9f9;
  padding: 60px 0;
}

.page-vip-club__faq-item {
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-vip-club__faq-question {
  font-size: 1.4em;
  margin-bottom: 10px;
  color: #000000;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-vip-club__faq-question::after {
  content: '+';
  font-size: 1.2em;
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.page-vip-club__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-vip-club__faq-answer {
  display: none;
  font-size: 1em;
  line-height: 1.7;
  color: #555555;
  margin-top: 15px;
}

.page-vip-club__faq-answer.active {
  display: block;
}

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

@media (max-width: 768px) {
  .page-vip-club__hero-section {
    padding: 40px 15px;
  }
  .page-vip-club__hero-title {
    font-size: 2.2em;
  }
  .page-vip-club__hero-description {
    font-size: 1em;
  }
  .page-vip-club__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-vip-club__button {
    width: 100%;
    min-width: unset;
  }
  .page-vip-club__container {
    padding: 30px 15px;
  }
  .page-vip-club__section-title {
    font-size: 1.8em;
  }
  .page-vip-club__section-description {
    font-size: 0.95em;
  }
  .page-vip-club__tiers-grid,
  .page-vip-club__benefits-grid,
  .page-vip-club__steps-grid,
  .page-vip-club__related-pages-grid {
    grid-template-columns: 1fr;
  }
  .page-vip-club__tier-image,
  .page-vip-club__benefit-image {
    height: 200px; /* Ensure images are not smaller than 200px */
  }
  /* Mobile content area images must not overflow */
  .page-vip-club img {
    max-width: 100%;
    height: auto;
  }
  .page-vip-club {
    overflow-x: hidden;
  }
  /* Ensure all content area images are at least 200px wide/high */
  .page-vip-club__tier-card img,
  .page-vip-club__benefit-card img {
    min-width: 200px;
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .page-vip-club__hero-title {
    font-size: 1.8em;
  }
  .page-vip-club__hero-description {
    font-size: 0.9em;
  }
  .page-vip-club__section-title {
    font-size: 1.5em;
  }
  .page-vip-club__tier-title,
  .page-vip-club__benefit-title,
  .page-vip-club__step-title,
  .page-vip-club__faq-question,
  .page-vip-club__related-page-title {
    font-size: 1.2em;
  }
  .page-vip-club__step-icon {
    width: 60px;
    height: 60px;
    font-size: 2em;
  }
}