/* style/vip-club.css */

/* Base styles for the VIP Club page */
.page-vip-club {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #1a1a2e; /* Body background from shared.css */
}

.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;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #ffffff;
  line-height: 1.2;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-vip-club__section-subtitle {
  font-size: 1.2em;
  text-align: center;
  margin-bottom: 40px;
  color: #f0f0f0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.page-vip-club__hero-image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-vip-club__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.page-vip-club__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -100px; /* Overlap slightly for visual flow, but not on image */
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent background for text readability */
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-vip-club__main-title {
  font-size: 3.2em;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.page-vip-club__description {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-vip-club__btn-primary,
.page-vip-club__btn-secondary,
.page-vip-club__btn-tertiary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  text-align: center;
  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: #1e87c2;
  transform: translateY(-2px);
}

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

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

.page-vip-club__btn-tertiary {
  background-color: #EA7C07;
  color: #ffffff;
  border: 2px solid #EA7C07;
}

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

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

/* Privileges Section */
.page-vip-club__privileges-section {
  padding: 80px 0;
  background-color: #26A9E0;
  color: #ffffff;
}

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

.page-vip-club__privilege-card {
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-vip-club__privilege-card:hover {
  transform: translateY(-5px);
}

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

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

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

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

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

.page-vip-club__tier-card {
  background-color: 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);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.page-vip-club__tier-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(38, 169, 224, 0.2), rgba(255, 255, 255, 0.05));
  z-index: 0;
  border-radius: 10px;
}

.page-vip-club__tier-card > * {
  position: relative;
  z-index: 1;
}

.page-vip-club__tier-bronze {
  border-color: #cd7f32;
}
.page-vip-club__tier-silver {
  border-color: #c0c0c0;
}
.page-vip-club__tier-gold {
  border-color: #ffd700;
}
.page-vip-club__tier-platinum {
  border-color: #e5e4e2;
}

.page-vip-club__tier-title {
  font-size: 2.2em;
  font-weight: 800;
  margin-bottom: 15px;
  color: #ffffff;
}

.page-vip-club__tier-description {
  font-size: 0.95em;
  color: #f0f0f0;
  margin-bottom: 20px;
  min-height: 80px;
}

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

.page-vip-club__tier-benefits li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="%2326A9E0" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"></polyline></svg>') no-repeat left center;
  background-size: 18px;
  padding-left: 28px;
  margin-bottom: 8px;
  color: #e0e0e0;
}

.page-vip-club__tier-icon {
  width: 150px;
  height: auto;
  margin-top: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-vip-club__tier-note {
  text-align: center;
  margin-top: 40px;
  font-style: italic;
  color: #a0a0a0;
}

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

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

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

.page-vip-club__step-icon {
  width: 60px;
  height: 60px;
  line-height: 60px;
  background-color: #EA7C07;
  color: #ffffff;
  border-radius: 50%;
  font-size: 2em;
  font-weight: 700;
  margin: 0 auto 20px;
}

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

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

.page-vip-club__faq-item {
  background-color: rgba(255, 255, 255, 0.1);
  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: 600;
  color: #ffffff;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-vip-club__faq-item[open] .page-vip-club__faq-question {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

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

.page-vip-club__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-vip-club__faq-item[open] .page-vip-club__faq-toggle {
  transform: rotate(45deg);
}

.page-vip-club__faq-answer {
  padding: 15px 20px;
  font-size: 1em;
  color: #e0e0e0;
}

.page-vip-club__faq-answer p {
  margin-bottom: 0;
}

/* Bottom CTA Section */
.page-vip-club__cta-bottom {
  padding: 80px 0;
  text-align: center;
  background-color: #1a1a2e;
  color: #ffffff;
}

.page-vip-club__cta-bottom .page-vip-club__section-title {
  color: #ffffff;
}

.page-vip-club__cta-bottom .page-vip-club__section-subtitle {
  color: #f0f0f0;
}

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

@media (max-width: 768px) {
  .page-vip-club {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-vip-club__container,
  .page-vip-club__hero-section,
  .page-vip-club__intro-section,
  .page-vip-club__privileges-section,
  .page-vip-club__tiers-section,
  .page-vip-club__how-to-join-section,
  .page-vip-club__faq-section,
  .page-vip-club__cta-bottom {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-vip-club__hero-content {
    margin-top: -60px; /* Adjust overlap for mobile */
    padding: 30px 15px;
  }

  .page-vip-club__main-title {
    font-size: 2em;
  }
  .page-vip-club__section-title {
    font-size: 1.8em;
  }
  .page-vip-club__section-subtitle {
    font-size: 1em;
  }
  .page-vip-club__card-title {
    font-size: 1.4em;
  }
  .page-vip-club__text-block {
    font-size: 1em;
  }

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

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

  .page-vip-club__privileges-grid,
  .page-vip-club__tiers-grid,
  .page-vip-club__steps-grid {
    grid-template-columns: 1fr;
  }

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

  .page-vip-club__hero-section {
    padding-bottom: 40px;
    padding-top: 10px !important; /* body already handles --header-offset */
  }

  .page-vip-club__hero-image-wrapper {
    max-height: 400px;
  }

  .page-vip-club__privilege-card,
  .page-vip-club__tier-card,
  .page-vip-club__step-card {
    padding: 20px;
  }

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

@media (max-width: 480px) {
  .page-vip-club__main-title {
    font-size: 1.8em;
  }
  .page-vip-club__section-title {
    font-size: 1.6em;
  }
  .page-vip-club__hero-content {
    margin-top: -40px;
  }
  .page-vip-club__hero-image-wrapper {
    max-height: 300px;
  }
}

/* Specific colors based on rules */
.page-vip-club__dark-bg {
  background-color: #1a1a2e;
  color: #ffffff;
}

.page-vip-club__light-bg {
  background-color: #1a1a2e;
  color: #f0f0f0;
}

.page-vip-club__dark-section {
  background-color: #26A9E0;
  color: #ffffff;
}

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

.page-vip-club__btn-secondary {
  border-color: #ffffff;
  color: #ffffff;
}

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

.page-vip-club__btn-tertiary {
  background-color: #EA7C07;
  color: #ffffff;
}

.page-vip-club__step-icon {
  background-color: #EA7C07;
  color: #ffffff;
}

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

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