.page-vip-club {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Body background #121212 is dark, so text is light */
  background-color: #121212; /* Ensure page body background is consistent */
}

.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.8em;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-vip-club__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
  color: #f0f0f0;
}

.page-vip-club__dark-bg {
  background-color: #1a1a1a; /* Slightly lighter dark background for sections */
  color: #ffffff;
  padding: 80px 0;
}

.page-vip-club__light-bg {
  background-color: #262626; /* Darker background, still use light text for contrast */
  color: #ffffff;
  padding: 80px 0;
}

/* Hero Section */
.page-vip-club__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 20px 80px; /* Internal padding, assuming shared.css handles header offset */
  position: relative;
  overflow: hidden;
  min-height: 600px;
}

.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;
  color: #ffffff;
}

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

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

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

.page-vip-club__btn-primary,
.page-vip-club__btn-secondary {
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-vip-club__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-vip-club__btn-primary:hover {
  background-color: #1e87b7;
  border-color: #1e87b7;
}

.page-vip-club__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-vip-club__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

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

.page-vip-club__benefit-card {
  background-color: #333333; /* Darker card background for contrast on light-bg section */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #ffffff;
}

.page-vip-club__benefit-icon {
  width: 200px; /* Minimum size */
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-vip-club__benefit-title {
  font-size: 1.6em;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-vip-club__benefit-text {
  font-size: 1em;
  color: #cccccc;
}

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

.page-vip-club__tier-card {
  background-color: #262626;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  color: #ffffff;
  border: 1px solid #26A9E0;
}

.page-vip-club__tier-title {
  font-size: 2em;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-vip-club__tier-description {
  font-size: 1em;
  color: #cccccc;
  margin-bottom: 20px;
}

.page-vip-club__tier-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-vip-club__tier-features li {
  margin-bottom: 10px;
  font-size: 1em;
  color: #f0f0f0;
  position: relative;
  padding-left: 25px;
}

.page-vip-club__tier-features li::before {
  content: '✓';
  color: #26A9E0;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-vip-club__tier-note {
  text-align: center;
  margin-top: 40px;
  font-size: 0.95em;
  color: #cccccc;
}

.page-vip-club__tier-note a {
  color: #26A9E0;
  text-decoration: none;
  font-weight: bold;
}

.page-vip-club__tier-note a:hover {
  text-decoration: underline;
}

/* Exclusive Promotions Section */
.page-vip-club__promos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-vip-club__promo-card {
  background-color: #333333; /* Darker card background for contrast on light-bg section */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  display: flex;
  flex-direction: column;
}

.page-vip-club__promo-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-vip-club__promo-content {
  padding: 25px;
}

.page-vip-club__promo-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin: 20px 25px 10px;
  font-weight: bold;
}

.page-vip-club__promo-text {
  font-size: 1em;
  color: #cccccc;
  margin: 0 25px 25px;
}

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

/* How to Join Section */
.page-vip-club__join-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-vip-club__step-card {
  background-color: #262626;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  color: #ffffff;
  border: 1px solid #26A9E0;
}

.page-vip-club__step-icon {
  width: 200px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-vip-club__step-title {
  font-size: 1.6em;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-vip-club__step-text {
  font-size: 1em;
  color: #cccccc;
}

.page-vip-club__step-text a {
  color: #26A9E0;
  text-decoration: none;
  font-weight: bold;
}

.page-vip-club__step-text a:hover {
  text-decoration: underline;
}

/* Support Section */
.page-vip-club__support-content {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-vip-club__support-image {
  width: 50%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  min-width: 300px; /* Ensure minimum size */
  min-height: 200px;
}

.page-vip-club__support-list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 50%;
}

.page-vip-club__support-list li {
  font-size: 1.1em;
  margin-bottom: 15px;
  color: #f0f0f0;
  position: relative;
  padding-left: 30px;
}

.page-vip-club__support-list li::before {
  content: '★';
  color: #26A9E0;
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 1.2em;
}

.page-vip-club__list-highlight {
  color: #26A9E0;
}

/* FAQ Section */
.page-vip-club__faq-list {
  margin-top: 40px;
}

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

.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: #26A9E0;
  cursor: pointer;
  background-color: #333333; /* Slightly different background for question */
  transition: background-color 0.3s ease;
}

.page-vip-club__faq-question:hover {
  background-color: #444444;
}

.page-vip-club__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  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;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #cccccc;
}

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

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

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

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

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

.page-vip-club__cta-final-section .page-vip-club__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* Copyright Section */
.page-vip-club__copyright-section {
  background-color: #121212;
  padding: 30px 0;
  text-align: center;
  color: #cccccc;
  font-size: 0.9em;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-vip-club__hero-title {
    font-size: 2.8em;
  }

  .page-vip-club__section-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-vip-club__hero-section {
    padding: 80px 15px 60px;
  }

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

  .page-vip-club__hero-title {
    font-size: 2.2em;
  }

  .page-vip-club__hero-description {
    font-size: 1.1em;
  }

  .page-vip-club__hero-cta-buttons,
  .page-vip-club__cta-final-section .page-vip-club__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-vip-club__btn-primary,
  .page-vip-club__btn-secondary {
    width: 100%;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-vip-club__section-title {
    font-size: 1.8em;
  }

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

  .page-vip-club__dark-bg,
  .page-vip-club__light-bg {
    padding: 60px 0;
  }

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

  .page-vip-club__benefits-grid,
  .page-vip-club__tiers-grid,
  .page-vip-club__promos-grid,
  .page-vip-club__join-steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-vip-club__benefit-card,
  .page-vip-club__tier-card,
  .page-vip-club__promo-card,
  .page-vip-club__step-card {
    padding: 25px;
  }

  .page-vip-club__benefit-icon,
  .page-vip-club__step-icon {
    width: 150px;
    height: 120px;
  }

  .page-vip-club__support-content {
    flex-direction: column;
    gap: 30px;
  }

  .page-vip-club__support-image,
  .page-vip-club__support-list {
    width: 100%;
    min-width: unset;
  }

  .page-vip-club__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }

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

  .page-vip-club__faq-item.active .page-vip-club__faq-answer {
    padding: 10px 20px 20px;
  }

  /* Mobile image, video, button overflow prevention */
  .page-vip-club img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-vip-club video,
  .page-vip-club__video {
    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__promo-card,
  .page-vip-club__step-card,
  .page-vip-club__tier-card,
  .page-vip-club__hero-section,
  .page-vip-club__benefits-section,
  .page-vip-club__tiers-section,
  .page-vip-club__exclusive-promos-section,
  .page-vip-club__join-section,
  .page-vip-club__support-section,
  .page-vip-club__faq-section,
  .page-vip-club__cta-final-section,
  .page-vip-club__copyright-section,
  .page-vip-club__hero-cta-buttons,
  .page-vip-club__cta-container,
  .page-vip-club__video-section,
  .page-vip-club__video-container,
  .page-vip-club__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important; /* Ensure no horizontal scroll */
  }
  
  .page-vip-club__video-section {
    padding-top: var(--header-offset, 120px) !important; /* Ensure video section has proper offset */
  }

  .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__hero-cta-buttons {
    flex-direction: column;
  }

  /* Ensure content area images are at least 200px */
  .page-vip-club__benefits-grid img,
  .page-vip-club__promos-grid img,
  .page-vip-club__join-steps img,
  .page-vip-club__support-content img {
    min-width: 200px !important;
    min-height: 200px !important;
  }
}

@media (max-width: 480px) {
  .page-vip-club__hero-title {
    font-size: 1.8em;
  }

  .page-vip-club__section-title {
    font-size: 1.6em;
  }

  .page-vip-club__hero-description {
    font-size: 1em;
  }

  .page-vip-club__btn-primary,
  .page-vip-club__btn-secondary {
    font-size: 0.9em;
    padding: 10px 15px;
  }

  .page-vip-club__benefit-title,
  .page-vip-club__tier-title,
  .page-vip-club__promo-title,
  .page-vip-club__step-title {
    font-size: 1.3em;
  }

  .page-vip-club__faq-question {
    font-size: 1em;
    padding: 12px 15px;
  }
}