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

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

/* Hero Section */
.page-vip-club__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  padding: 80px 0;
  padding-top: var(--header-offset, 120px); /* Ensure space below fixed header */
  text-align: center;
  overflow: hidden;
}

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

.page-vip-club__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image for text readability */
}

.page-vip-club__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  color: #FFFFFF;
}

.page-vip-club__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-vip-club__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  line-height: 1.8;
}

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

/* General Section Styles */
.page-vip-club__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 20px;
  color: #26A9E0;
}

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

.page-vip-club__light-bg {
  background-color: #FFFFFF;
  color: #333333;
  padding: 80px 0;
}

.page-vip-club__dark-bg {
  background-color: #1a1a1a; /* Slightly lighter than body background for contrast */
  color: #FFFFFF;
  padding: 80px 0;
}

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

.page-vip-club__privilege-card {
  background-color: rgba(255, 255, 255, 0.1); /* Light background on dark sections, dark on light sections */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #FFFFFF; /* For dark-bg section */
}

.page-vip-club__light-bg .page-vip-club__privilege-card {
  background-color: #F8F8F8; /* Light card on light background */
  color: #333333;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

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

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

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

.page-vip-club__card-text {
  font-size: 1em;
  line-height: 1.7;
}

/* Tiers Section */
.page-vip-club__tiers-table-wrapper {
  overflow-x: auto;
  margin-top: 40px;
}

.page-vip-club__tiers-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
  min-width: 700px; /* Ensure table is wide enough */
}

.page-vip-club__tiers-table th,
.page-vip-club__tiers-table td {
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 15px;
  text-align: left;
  color: #FFFFFF;
}

.page-vip-club__tiers-table th {
  background-color: #26A9E0;
  font-weight: bold;
  color: #FFFFFF;
}

.page-vip-club__tiers-table tr:nth-child(even) {
  background-color: rgba(255, 255, 255, 0.05);
}

.page-vip-club__tiers-table tr:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.page-vip-club__section-note {
  text-align: center;
  margin-top: 30px;
  font-size: 0.95em;
  color: #b0b0b0;
}

/* Join Section */
.page-vip-club__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-vip-club__step-card {
  background-color: #F8F8F8;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  color: #333333;
}

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

.page-vip-club__step-title {
  font-size: 1.4em;
  margin-bottom: 10px;
  color: #26A9E0;
}

.page-vip-club__step-text {
  font-size: 1em;
  line-height: 1.6;
}

.page-vip-club__step-text a {
  color: #26A9E0;
  text-decoration: underline;
}

.page-vip-club__section-cta-text {
  text-align: center;
  font-size: 1.2em;
  margin-top: 40px;
  margin-bottom: 30px;
  font-weight: bold;
  color: #333333;
}

/* FAQ Section */
.page-vip-club__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
}

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

.page-vip-club__faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 25px;
  background-color: rgba(255, 255, 255, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  font-size: 1.1em;
  color: #FFFFFF;
}

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

.page-vip-club__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.page-vip-club__faq-qtext {
  flex-grow: 1;
  color: #FFFFFF;
}

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

.page-vip-club__faq-answer {
  padding: 15px 25px 20px 25px;
  background-color: rgba(255, 255, 255, 0.05);
  font-size: 1em;
  line-height: 1.7;
  color: #f0f0f0;
}

/* CTA Buttons */
.page-vip-club__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.page-vip-club__btn-primary,
.page-vip-club__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
}

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

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

.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;
}

/* Final CTA Section */
.page-vip-club__cta-final-section {
  padding: 100px 0;
  background-color: #F0F2F5;
  color: #333333;
}

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

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

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

  .page-vip-club__privileges-grid,
  .page-vip-club__steps-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-vip-club__hero-section {
    padding: 60px 0;
    padding-top: var(--header-offset, 120px) !important; /* Ensure space below fixed header on mobile */
  }

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

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

  .page-vip-club__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

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

  .page-vip-club__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

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

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

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

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

  .page-vip-club__card-image, .page-vip-club__step-icon {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-vip-club__privilege-card, .page-vip-club__step-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 20px;
  }

  .page-vip-club__tiers-table-wrapper {
    padding: 0 10px;
  }

  .page-vip-club__tiers-table {
    min-width: 600px;
  }

  .page-vip-club__faq-item summary {
    padding: 15px 20px;
    font-size: 1em;
  }

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

  .page-vip-club__cta-final-section {
    padding: 80px 0;
  }
}

@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__privileges-grid,
  .page-vip-club__steps-grid {
    grid-template-columns: 1fr;
  }
}