.page-vip-club {
  color: #ffffff; /* Body background #1a1a2e is dark, so text should be light */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

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

.page-vip-club__section-title {
  font-size: 2.5em;
  color: #ffc107; /* Gold for titles */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

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

/* Hero Section */
.page-vip-club__hero-section {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px);
  box-sizing: border-box;
}

.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-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2;
}

.page-vip-club__hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 20px;
}

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

.page-vip-club__hero-description {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 40px;
}

.page-vip-club__cta-button {
  display: inline-block;
  background: #007bff;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-vip-club__cta-button:hover {
  background: #0056b3;
  transform: translateY(-3px);
}

/* Benefits Section */
.page-vip-club__benefits-section {
  background: #1a1a2e;
  padding: 80px 0;
}

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

.page-vip-club__benefit-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

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

.page-vip-club__card-description {
  font-size: 1em;
  color: #e0e0e0;
}

/* How to Join Section */
.page-vip-club__how-to-join-section {
  background: #0d0d1e; /* Slightly darker than body for contrast */
  padding: 80px 0;
}

.page-vip-club__how-to-join-steps {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 50px;
}

.page-vip-club__step-item {
  background: rgba(0, 123, 255, 0.1);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-left: 5px solid #007bff;
}

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

.page-vip-club__step-content {
  font-size: 1.1em;
  color: #f0f0f0;
}

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

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

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

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

.page-vip-club__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #ffc107;
  cursor: pointer;
  background: rgba(0, 123, 255, 0.15);
  transition: background 0.3s ease;
}

.page-vip-club__faq-question:hover {
  background: rgba(0, 123, 255, 0.25);
}

.page-vip-club__faq-toggle {
  font-size: 1.5em;
  font-weight: normal;
  transition: transform 0.3s ease;
}

.page-vip-club__faq-item.active .page-vip-club__faq-toggle {
  transform: rotate(45deg);
}

.page-vip-club__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  color: #e0e0e0;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.page-vip-club__faq-item.active .page-vip-club__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 20px 25px;
}

.page-vip-club__faq-answer p {
  margin: 0;
  font-size: 1.05em;
  color: #e0e0e0;
}

/* Final CTA Section */
.page-vip-club__cta-final-section {
  background: #007bff;
  padding: 80px 0;
  text-align: center;
}

.page-vip-club__cta-final-section .page-vip-club__section-title {
  color: #ffc107;
}

.page-vip-club__cta-final-section .page-vip-club__section-description {
  color: #ffffff;
  margin-bottom: 50px;
}

.page-vip-club__cta-button--large {
  padding: 18px 40px;
  font-size: 1.4em;
  background: #ffc107;
  color: #1a1a2e;
}

.page-vip-club__cta-button--large:hover {
  background: #e0a800;
  transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-vip-club__hero-title {
    font-size: 3em;
  }
  .page-vip-club__hero-description {
    font-size: 1.1em;
  }
  .page-vip-club__section-title {
    font-size: 2em;
  }
  .page-vip-club__card-title {
    font-size: 1.5em;
  }
  .page-vip-club__step-title {
    font-size: 1.7em;
  }
}

@media (max-width: 768px) {
  .page-vip-club {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-vip-club__hero-section {
    height: auto;
    min-height: 400px;
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-vip-club__hero-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }
  .page-vip-club__hero-description {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-vip-club__cta-button {
    font-size: 1em;
    padding: 12px 25px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-vip-club__cta-button--large {
    font-size: 1.2em;
    padding: 15px 30px;
  }
  .page-vip-club__section-title {
    font-size: 1.8em;
  }
  .page-vip-club__section-description {
    font-size: 0.95em;
  }
  .page-vip-club__benefits-grid {
    grid-template-columns: 1fr;
  }
  .page-vip-club__benefit-card {
    padding: 20px;
  }
  .page-vip-club__benefit-image {
    height: auto;
  }
  .page-vip-club__step-item {
    padding: 20px;
  }
  .page-vip-club__step-title {
    font-size: 1.5em;
  }
  .page-vip-club__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-vip-club__faq-answer {
    padding: 15px 20px;
  }
  .page-vip-club__faq-item.active .page-vip-club__faq-answer {
    padding: 15px 20px !important;
  }

  /* Mobile image responsiveness */
  .page-vip-club img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-vip-club__section,
  .page-vip-club__card,
  .page-vip-club__container,
  .page-vip-club__cta-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-vip-club__cta-buttons,
  .page-vip-club__button-group,
  .page-vip-club__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .page-vip-club__cta-buttons {
    display: flex;
    flex-direction: column;
  }
}