.page-vip-club {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Body background is dark, so text should be light */
  background-color: transparent; /* Main content background will be transparent to show body bg */
}

.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: #017439;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-vip-club__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-vip-club__text-block--center {
  text-align: center;
}

.page-vip-club__text-link {
  color: #FFFF00;
  text-decoration: underline;
}

/* Hero Section */
.page-vip-club__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  background-color: #121212; /* Match body background */
  overflow: hidden;
  text-align: center;
  padding: 60px 20px;
  box-sizing: border-box;
}

.page-vip-club__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-vip-club__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.page-vip-club__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 40px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 10px;
}

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

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

/* Buttons */
.page-vip-club__btn-primary {
  display: inline-block;
  background-color: #017439;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  box-sizing: border-box;
}

.page-vip-club__btn-primary:hover {
  background-color: #005f2e;
  transform: translateY(-2px);
}

.page-vip-club__btn-secondary {
  display: inline-block;
  background-color: #C30808;
  color: #FFFF00; /* Custom font color for login/register buttons */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  box-sizing: border-box;
}

.page-vip-club__btn-secondary:hover {
  background-color: #9e0606;
  transform: translateY(-2px);
}

/* Intro Section */
.page-vip-club__intro-section {
  padding: 80px 0;
  background-color: #121212;
  color: #ffffff;
}

.page-vip-club__intro-section .page-vip-club__section-title {
  color: #017439;
}

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

.page-vip-club__tiers-section .page-vip-club__section-title {
  color: #ffffff;
}

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

.page-vip-club__card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  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;
  color: #ffffff;
}

.page-vip-club__card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.2);
}

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

.page-vip-club__benefits-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  text-align: left;
}

.page-vip-club__benefits-list li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  color: #ffffff;
}

.page-vip-club__benefits-list li::before {
  content: '✓';
  color: #FFFF00;
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Benefits Overview Section */
.page-vip-club__benefits-overview-section {
  padding: 80px 0;
  background-color: #121212;
  color: #ffffff;
}

.page-vip-club__benefits-overview-section .page-vip-club__section-title {
  color: #017439;
}

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

.page-vip-club__benefit-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  color: #ffffff;
}

.page-vip-club__benefit-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-vip-club__benefit-title {
  font-size: 1.5em;
  color: #FFFF00;
  margin-bottom: 15px;
}

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

.page-vip-club__how-to-join-section .page-vip-club__section-title {
  color: #017439;
}

.page-vip-club__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-vip-club__steps-list li {
  background: rgba(255, 255, 255, 0.05);
  border-left: 5px solid #017439;
  margin-bottom: 25px;
  padding: 25px;
  border-radius: 8px;
  color: #ffffff;
}

.page-vip-club__step-title {
  font-size: 1.6em;
  color: #FFFF00;
  margin-bottom: 10px;
}

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

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

.page-vip-club__faq-section .page-vip-club__section-title {
  color: #ffffff;
}

.page-vip-club__faq-list {
  margin-top: 40px;
}

.page-vip-club__faq-item {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #ffffff;
}

.page-vip-club__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.4);
  transition: background-color 0.3s ease;
}

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

.page-vip-club__faq-title {
  font-size: 1.2em;
  color: #ffffff;
  margin: 0;
}

.page-vip-club__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: #FFFF00;
  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 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #f0f0f0;
}

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

.page-vip-club__faq-answer p {
  margin-bottom: 10px;
  color: #f0f0f0;
}

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

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

.page-vip-club__cta-final-content {
  max-width: 800px;
}

/* 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;
  }
}

@media (max-width: 768px) {
  .page-vip-club {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-vip-club__hero-section {
    min-height: 400px;
    padding: 40px 15px;
  }

  .page-vip-club__hero-content {
    padding: 20px;
  }

  .page-vip-club__hero-title {
    font-size: 2em;
    margin-bottom: 15px;
  }

  .page-vip-club__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-vip-club__btn-primary, .page-vip-club__btn-secondary {
    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__intro-section, .page-vip-club__tiers-section, .page-vip-club__benefits-overview-section, .page-vip-club__how-to-join-section, .page-vip-club__faq-section, .page-vip-club__cta-final-section {
    padding: 50px 0;
  }

  .page-vip-club__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-vip-club__grid, .page-vip-club__benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-vip-club__card, .page-vip-club__benefit-item, .page-vip-club__steps-list li {
    padding: 20px;
  }

  .page-vip-club__card-title {
    font-size: 1.5em;
  }

  .page-vip-club__benefit-title {
    font-size: 1.3em;
  }

  .page-vip-club__faq-question {
    padding: 15px;
  }

  .page-vip-club__faq-title {
    font-size: 1.1em;
  }

  .page-vip-club__faq-answer {
    padding: 0 15px;
  }

  .page-vip-club__faq-item.active .page-vip-club__faq-answer {
    padding: 15px;
    padding-top: 0;
  }

  /* Mobile image responsiveness */
  .page-vip-club img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-vip-club__section, .page-vip-club__card, .page-vip-club__container,
  .page-vip-club__hero-image-wrapper, .page-vip-club__benefit-item,
  .page-vip-club__steps-list li, .page-vip-club__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-vip-club__hero-section {
    padding-top: var(--header-offset, 120px) !important;
  }

  /* Ensure buttons in groups wrap */
  .page-vip-club__cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}

@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__btn-primary, .page-vip-club__btn-secondary {
    padding: 10px 20px;
  }
}

/* Color contrast fixes for dark background */
.page-vip-club__dark-section {
  background: #017439;
  color: #ffffff;
}

.page-vip-club__dark-section .page-vip-club__text-block {
  color: #ffffff;
}

.page-vip-club__dark-bg {
  color: #ffffff; /* Deep dark background text */
}

.page-vip-club__card {
  color: #ffffff;
}

.page-vip-club__faq-question {
  color: #ffffff;
}

.page-vip-club__faq-answer p {
  color: #f0f0f0;
}

.page-vip-club__text-block strong {
  color: #FFFF00; /* Highlight important keywords */
}

.page-vip-club__text-block em {
  color: #FFFF00; /* Highlight important keywords */
}