.page-vip-club {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: transparent; /* Body background is handled by shared.css (#0a0a0a) */
}

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

.page-vip-club__section-title {
  font-size: 2.5em;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

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

.page-vip-club__text-block + .page-vip-club__text-block {
  margin-top: -10px; /* Adjust spacing between paragraphs */
}

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

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

.page-vip-club__text-link:hover {
  text-decoration: underline;
}

.page-vip-club__text-link--white {
  color: #FFFFFF;
}

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

.page-vip-club__hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 1;
  transform: translate(-50%, -50%);
  background-size: cover;
  filter: brightness(0.6); /* Darken video for text readability */
}

.page-vip-club__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Additional dark overlay */
  z-index: 2;
}

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

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

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

.page-vip-club__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1.1em;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
  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: #1a7eb3;
  transform: translateY(-2px);
}

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

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

.page-vip-club__btn-large {
  padding: 18px 40px;
  font-size: 1.2em;
}

.page-vip-club__intro-section {
  padding: 80px 0;
  background-color: #0a0a0a; /* Ensure consistency with body background for this section */
  color: #ffffff;
}

.page-vip-club__tiers-section {
  padding: 80px 0;
  background-color: #26A9E0;
  color: #ffffff;
}

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

.page-vip-club__tier-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.page-vip-club__tier-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-vip-club__tier-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  min-width: 200px; /* Minimum image size */
  min-height: 200px;
}

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

.page-vip-club__tier-benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
  text-align: left;
  width: 100%;
}

.page-vip-club__tier-benefits li {
  margin-bottom: 10px;
  color: #f0f0f0;
  padding-left: 25px;
  position: relative;
}

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

.page-vip-club__join-section {
  padding: 80px 0;
  background-color: #0a0a0a;
  color: #ffffff;
}

.page-vip-club__join-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.page-vip-club__join-content {
  text-align: left;
}

.page-vip-club__join-steps {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-vip-club__join-steps li {
  background: rgba(255, 255, 255, 0.05);
  border-left: 5px solid #26A9E0;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  color: #f0f0f0;
  font-size: 1.05em;
}

.page-vip-club__step-title {
  color: #FFFFFF;
  font-size: 1.2em;
  display: block;
  margin-bottom: 5px;
}

.page-vip-club__join-image-wrapper {
  text-align: center;
}

.page-vip-club__join-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  min-width: 200px; /* Minimum image size */
  min-height: 200px;
}

.page-vip-club__cta-group {
  margin-top: 40px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.page-vip-club__promotions-section {
  padding: 80px 0;
  background-color: #26A9E0;
  color: #ffffff;
}

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

.page-vip-club__promo-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.page-vip-club__promo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-vip-club__promo-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  min-width: 200px; /* Minimum image size */
  min-height: 200px;
}

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

.page-vip-club__promo-description {
  color: #f0f0f0;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-vip-club__faq-section {
  padding: 80px 0;
  background-color: #0a0a0a;
  color: #ffffff;
}

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

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

.page-vip-club__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  color: #FFFFFF;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-vip-club__faq-question::-webkit-details-marker { /* For details/summary */
  display: none;
}

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

.page-vip-club__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: #26A9E0;
  margin-left: 15px;
}

.page-vip-club__faq-answer {
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.05);
  color: #f0f0f0;
  font-size: 1.1em;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.page-vip-club__cta-final-section {
  padding: 80px 0;
  background-color: #26A9E0;
  color: #ffffff;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-vip-club__hero-title {
    font-size: 2.8em;
  }
  .page-vip-club__hero-description {
    font-size: 1.2em;
  }
  .page-vip-club__section-title {
    font-size: 2em;
  }
  .page-vip-club__join-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .page-vip-club__join-content {
    order: 2; /* Move content below image on smaller screens */
  }
  .page-vip-club__join-image-wrapper {
    order: 1;
  }
}

@media (max-width: 768px) {
  .page-vip-club__hero-section {
    height: auto;
    min-height: 600px;
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-vip-club__hero-title {
    font-size: 2.2em;
  }
  .page-vip-club__hero-description {
    font-size: 1em;
  }
  .page-vip-club__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    margin-bottom: 10px; /* Add spacing between stacked buttons */
  }
  .page-vip-club__cta-group {
    flex-direction: column;
    gap: 10px;
  }
  .page-vip-club__section-title {
    font-size: 1.8em;
  }
  .page-vip-club__text-block {
    font-size: 1em;
  }
  .page-vip-club__tiers-grid,
  .page-vip-club__promotions-grid {
    grid-template-columns: 1fr;
  }
  .page-vip-club__container {
    padding: 0 15px;
  }

  /* Image responsive enforcement */
  .page-vip-club img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-vip-club__hero-video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    position: relative; /* Adjust positioning for mobile */
    transform: none;
    left: 0;
    top: 0;
  }

  /* Video container responsive enforcement */
  .page-vip-club__hero-section,
  .page-vip-club__video-container,
  .page-vip-club__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0px !important; /* Adjust if hero section has padding */
    padding-right: 0px !important;
    overflow: hidden !important;
  }

  /* General content container padding adjustment for mobile */
  .page-vip-club__section,
  .page-vip-club__card,
  .page-vip-club__container {
    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-group {
    display: flex;
    flex-direction: column;
  }
  .page-vip-club__promo-card, .page-vip-club__tier-card {
    padding: 20px;
  }
  .page-vip-club__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }
  .page-vip-club__faq-answer {
    font-size: 1em;
    padding: 15px;
  }
}

@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__cta-button {
    font-size: 1em;
    padding: 12px 20px;
  }
  .page-vip-club__tier-title,
  .page-vip-club__promo-title {
    font-size: 1.5em;
  }
}