/* Base styles for the VIP Club page */
.page-vip-club {
  background-color: #08160F; /* Custom background color */
  color: #F2FFF6; /* Main text color for dark background */
  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;
  font-weight: bold;
  color: #F2C14E; /* Gold color for main titles */
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.2;
}

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

.page-vip-club__card-title {
  font-size: 1.5em;
  color: #F2FFF6;
  margin-top: 15px;
  margin-bottom: 10px;
}

.page-vip-club__card-text {
  color: #A7D9B8;
  font-size: 1em;
}

.page-vip-club__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
  color: #F2FFF6;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-vip-club__cta-button:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* Hero Section */
.page-vip-club__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding */
  padding-bottom: 60px;
  overflow: hidden;
}

.page-vip-club__hero-image-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio (1080 / 1920 = 0.5625) */
  height: 0;
}

.page-vip-club__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.6); /* Darken image for text readability */
}

.page-vip-club__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 20px;
  max-width: 900px;
  margin-top: -150px; /* Adjust to slightly overlap with image but not cover text */
  color: #F2FFF6;
}

.page-vip-club__main-title {
  font-size: clamp(2.5em, 5vw, 3.5em); /* Responsive font size */
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #F2C14E; /* Gold for main title */
}

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

/* Benefits Section */
.page-vip-club__benefits-section {
  padding: 60px 0;
  background-color: #0A4B2C; /* Deep green for contrast */
}

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

.page-vip-club__benefit-card {
  background-color: #11271B; /* Card background */
  border: 1px solid #2E7A4E; /* Border color */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #A7D9B8;
}

.page-vip-club__benefit-icon {
  width: 100%;
  max-width: 250px; /* Ensure images are not too small */
  height: auto;
  object-fit: cover;
  margin-bottom: 15px;
  border-radius: 5px;
  display: block;
}

/* How to Join Section */
.page-vip-club__how-to-join-section {
  padding: 60px 0;
}

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

.page-vip-club__process-card {
  background-color: #11271B; /* Card background */
  border: 1px solid #2E7A4E;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  color: #A7D9B8;
}

.page-vip-club__process-icon {
  width: 100%;
  max-width: 250px;
  height: auto;
  object-fit: cover;
  margin-bottom: 15px;
  border-radius: 5px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

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

.page-vip-club__level-list li {
  background-color: #08160F;
  border-left: 3px solid #2AD16F;
  padding: 10px 15px;
  margin-bottom: 8px;
  border-radius: 5px;
  color: #F2FFF6;
}

/* Experience Section */
.page-vip-club__experience-section {
  padding: 60px 0;
  background-color: #0A4B2C;
}

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

.page-vip-club__feature-card {
  background-color: #11271B;
  border: 1px solid #2E7A4E;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  color: #A7D9B8;
}

.page-vip-club__feature-icon {
  width: 100%;
  max-width: 250px;
  height: auto;
  object-fit: cover;
  margin-bottom: 15px;
  border-radius: 5px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* FAQ Section */
.page-vip-club__faq-section {
  padding: 60px 0;
}

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

.page-vip-club__faq-item {
  background-color: #11271B; /* Card background */
  border: 1px solid #2E7A4E;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #F2FFF6;
}

.page-vip-club__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1em;
  color: #F2FFF6;
  list-style: none; /* For details/summary */
}

.page-vip-club__faq-question::-webkit-details-marker {
  display: none;
}

.page-vip-club__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #2AD16F;
}

.page-vip-club__faq-answer {
  padding: 0 25px 18px;
  color: #A7D9B8;
  font-size: 1em;
}

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

.page-vip-club__cta-final-section .page-vip-club__cta-button {
  margin-top: 30px;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-vip-club__hero-content {
    margin-top: -100px; /* Adjust overlap for mobile */
  }

  .page-vip-club__main-title {
    font-size: clamp(2em, 8vw, 2.5em);
  }

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

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

  .page-vip-club__benefits-grid,
  .page-vip-club__process-grid,
  .page-vip-club__features-grid {
    grid-template-columns: 1fr;
  }

  .page-vip-club__benefit-card,
  .page-vip-club__process-card,
  .page-vip-club__feature-card,
  .page-vip-club__faq-item {
    padding: 20px;
  }

  .page-vip-club__cta-button {
    width: 100%;
    padding: 15px 20px;
    font-size: 1em;
  }

  /* Mobile image and video responsiveness */
  .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__video-section,
  .page-vip-club__video-container,
  .page-vip-club__video-wrapper,
  .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;
    overflow: hidden !important; /* Ensure content doesn't overflow */
  }

  .page-vip-club__hero-section {
    padding-bottom: 40px;
  }

  .page-vip-club__hero-image-wrapper {
    padding-bottom: 75%; /* Adjust aspect ratio for mobile hero if needed, e.g., 4:3 */
  }

  /* Button specific mobile rules */
  .page-vip-club__cta-button,
  .page-vip-club a[class*="button"],
  .page-vip-club a[class*="btn"] {
    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-buttons,
  .page-vip-club__button-group,
  .page-vip-club__btn-container {
    flex-wrap: wrap !important;
    gap: 10px;
    flex-direction: column; /* Stack buttons vertically on mobile */
  }
}