.page-vip-club {
  font-family: Arial, sans-serif;
  color: #ffffff; /* Text color for dark body background */
  background-color: #000000; /* Ensure main content area matches body background */
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  line-height: 1.6;
}

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

.page-vip-club__section-title {
  font-size: 2.8em;
  color: #FCBC45;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-vip-club__section-intro {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-vip-club__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}

.page-vip-club__button--login {
  background-color: #FCBC45;
  color: #000000;
}

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

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

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

/* Hero Section */
.page-vip-club__hero-section {
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 0;
}

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

.page-vip-club__hero-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-vip-club__hero-content {
  position: relative;
  z-index: 3;
  color: #ffffff;
  padding: 80px 20px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  max-width: 900px;
  margin: 0 auto;
}

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

.page-vip-club__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  line-height: 1.5;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

/* Overview Section */
.page-vip-club__overview-section {
  padding: 80px 0;
  background-color: #000000;
}

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

.page-vip-club__feature-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-vip-club__feature-card:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.1);
}

.page-vip-club__feature-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-vip-club__feature-title {
  font-size: 1.8em;
  color: #FCBC45;
  margin-bottom: 15px;
}

.page-vip-club__feature-description {
  font-size: 1em;
  color: #f0f0f0;
}

/* Tiers Section */
.page-vip-club__tiers-section {
  padding: 80px 0;
  background-color: #0d0d0d;
}

.page-vip-club__tier-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 10px;
}

.page-vip-club__tier-tab-button {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-vip-club__tier-tab-button:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.page-vip-club__tier-tab-button--active {
  background-color: #FCBC45;
  color: #000000;
}

.page-vip-club__tier-tab-button--active:hover {
  background-color: #e0a53b;
}

.page-vip-club__tier-panel {
  display: none;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 40px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-vip-club__tier-panel--active {
  display: block;
}

.page-vip-club__tier-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  object-fit: contain;
  margin: 0 auto 30px auto;
  border-radius: 8px;
}

.page-vip-club__tier-panel-title {
  font-size: 2.5em;
  color: #FCBC45;
  margin-bottom: 25px;
}

.page-vip-club__tier-benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-vip-club__tier-benefits li {
  font-size: 1.1em;
  color: #f0f0f0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.page-vip-club__benefit-icon {
  color: #FCBC45;
  font-size: 1.3em;
}

.page-vip-club__tier-description {
  font-size: 1.1em;
  color: #f0f0f0;
  max-width: 800px;
  margin: 0 auto;
}

/* How to Join Section */
.page-vip-club__how-to-join-section {
  padding: 80px 0;
  background-color: #000000;
}

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

.page-vip-club__step-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-vip-club__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #FCBC45;
  color: #000000;
  border-radius: 50%;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
}

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

.page-vip-club__step-description {
  font-size: 1em;
  color: #f0f0f0;
  margin-bottom: 25px;
}

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

.page-vip-club__faq-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.page-vip-club__faq-item {
  margin-bottom: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.page-vip-club__faq-question {
  background-color: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  width: 100%;
  text-align: left;
  padding: 20px 25px;
  border: none;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

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

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

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

.page-vip-club__faq-answer {
  background-color: rgba(255, 255, 255, 0.02);
  color: #f0f0f0;
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-vip-club__faq-answer--active {
  max-height: 200px; /* Adjust as needed for content */
  padding: 20px 25px;
}

.page-vip-club__faq-answer p {
  margin: 0;
  font-size: 1em;
}

/* CTA Section */
.page-vip-club__cta-section {
  padding: 80px 0;
  background-color: #000000;
  text-align: center;
}

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

/* Disclaimer Section */
.page-vip-club__disclaimer-section {
  padding: 40px 0;
  background-color: #0d0d0d;
  text-align: center;
  font-size: 0.9em;
  color: #aaaaaa;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.page-vip-club__disclaimer-text .page-vip-club__disclaimer-link {
  color: #FCBC45;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-vip-club__disclaimer-text .page-vip-club__disclaimer-link:hover {
  color: #e0a53b;
  text-decoration: underline;
}

/* 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__section-title {
    font-size: 2.2em;
  }
  .page-vip-club__feature-title {
    font-size: 1.6em;
  }
  .page-vip-club__tier-panel-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-vip-club__hero-content {
    padding: 60px 15px;
  }
  .page-vip-club__hero-title {
    font-size: 2.5em;
  }
  .page-vip-club__hero-description {
    font-size: 1.1em;
  }
  .page-vip-club__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-vip-club__button {
    width: 100%;
    max-width: 300px;
  }
  .page-vip-club__grid, .page-vip-club__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-vip-club__section-title {
    font-size: 1.8em;
  }
  .page-vip-club__section-intro {
    font-size: 1em;
  }
  .page-vip-club__feature-card, .page-vip-club__step-card {
    padding: 25px;
  }
  .page-vip-club__tier-tabs {
    flex-direction: column;
    align-items: center;
  }
  .page-vip-club__tier-tab-button {
    width: 100%;
    max-width: 250px;
  }
  .page-vip-club__tier-panel {
    padding: 30px 20px;
  }
  .page-vip-club__tier-panel-title {
    font-size: 1.8em;
  }
  .page-vip-club__tier-benefits li {
    font-size: 1em;
  }
  .page-vip-club__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-vip-club__faq-answer {
    padding: 15px 20px;
  }
  .page-vip-club__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  /* Content area images must not overflow */
  .page-vip-club img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-vip-club__hero-title {
    font-size: 2em;
  }
  .page-vip-club__hero-description {
    font-size: 0.95em;
  }
  .page-vip-club__section-title {
    font-size: 1.6em;
  }
  .page-vip-club__feature-title {
    font-size: 1.4em;
  }
  .page-vip-club__tier-panel-title {
    font-size: 1.6em;
  }
  .page-vip-club__step-title {
    font-size: 1.6em;
  }
  .page-vip-club__faq-question {
    font-size: 1em;
  }
}