/* style/vip-club.css */
:root {
  --primary-color: #FFD700;
  --secondary-color: #000000;
  --text-light: #ffffff;
  --text-dark: #333333;
  --background-dark: #1a1a1a;
  --background-light: #f5f5f5;
  --card-background-dark: rgba(255, 255, 255, 0.1);
  --card-background-light: #ffffff;
  --border-color: #e0e0e0;
}

.page-vip-club {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Body background is dark, so text is light */
  background-color: var(--background-dark);
}

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

.page-vip-club__section-title {
  font-size: 38px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 50px;
  color: var(--primary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-vip-club__text-block {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 25px;
  color: var(--text-light);
}

.page-vip-club__highlight-text {
  color: var(--primary-color);
  font-weight: bold;
}

/* Hero Section */
.page-vip-club__hero-section {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-vip-club__hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  filter: brightness(0.6);
}

.page-vip-club__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.4));
  z-index: -1;
}

.page-vip-club__hero-content {
  position: relative;
  z-index: 1;
  color: var(--text-light);
  max-width: 900px;
  padding: 20px;
}

.page-vip-club__main-title {
  font-size: 56px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--primary-color);
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

.page-vip-club__hero-description {
  font-size: 22px;
  margin-bottom: 40px;
  line-height: 1.7;
  color: #e0e0e0;
}

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

.page-vip-club__cta-button {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
  box-sizing: border-box;
}

.page-vip-club__cta-button--primary {
  background: var(--primary-color);
  color: var(--secondary-color);
}

.page-vip-club__cta-button--primary:hover {
  background: #e6b800;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-vip-club__cta-button--secondary {
  background: var(--secondary-color);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-vip-club__cta-button--secondary:hover {
  background: #333333;
  border-color: #e6b800;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Introduction Section */
.page-vip-club__introduction-section {
  padding: 80px 0;
  background-color: var(--background-dark);
  color: var(--text-light);
}

/* Tiers Section */
.page-vip-club__tiers-section {
  padding: 80px 0;
  background-color: var(--background-light);
  color: var(--text-dark);
}

.page-vip-club__tiers-section .page-vip-club__section-title {
  color: var(--secondary-color);
  text-shadow: none;
}

.page-vip-club__tiers-section .page-vip-club__text-block {
  color: var(--text-dark);
}

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

.page-vip-club__tier-card {
  background: var(--card-background-light);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
}

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

.page-vip-club__tier-title {
  font-size: 26px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-vip-club__tier-description {
  font-size: 16px;
  color: var(--text-dark);
}

/* Privileges Section */
.page-vip-club__privileges-section {
  padding: 80px 0;
  background-color: var(--background-dark);
  color: var(--text-light);
}

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

.page-vip-club__privilege-card {
  background: var(--card-background-dark);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.page-vip-club__privilege-card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.15);
}

.page-vip-club__card-title {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-vip-club__card-description {
  font-size: 16px;
  color: var(--text-light);
}

/* Join Section */
.page-vip-club__join-section {
  padding: 80px 0;
  background-color: var(--background-light);
  color: var(--text-dark);
}

.page-vip-club__join-section .page-vip-club__section-title {
  color: var(--secondary-color);
  text-shadow: none;
}

.page-vip-club__join-section .page-vip-club__text-block {
  color: var(--text-dark);
}

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

.page-vip-club__step-item {
  background: var(--card-background-light);
  padding: 25px 30px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  border-left: 5px solid var(--primary-color);
}

.page-vip-club__step-item h3 {
  font-size: 22px;
  color: var(--secondary-color);
  margin-top: 0;
  margin-bottom: 10px;
}

.page-vip-club__step-item p {
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 0;
}

.page-vip-club__step-item a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
}

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

/* FAQ Section */
.page-vip-club__faq-section {
  padding: 80px 0;
  background-color: var(--background-dark);
  color: var(--text-light);
}

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

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

.page-vip-club__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: var(--secondary-color);
  color: var(--primary-color);
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  border-radius: 8px;
}

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

.page-vip-club__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
}

.page-vip-club__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: var(--primary-color);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.page-vip-club__faq-item.active .page-vip-club__faq-toggle {
  color: #ffffff;
  transform: rotate(45deg);
}

.page-vip-club__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 25px;
  opacity: 0;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-light);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.page-vip-club__faq-item.active .page-vip-club__faq-answer {
  max-height: 2000px !important;
  padding: 20px 25px !important;
  opacity: 1;
  border-radius: 0 0 8px 8px;
}

.page-vip-club__faq-answer p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-light);
}

/* Image Styling */
.page-vip-club__image-wrapper {
  margin: 40px auto;
  text-align: center;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-vip-club__image {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-vip-club__main-title {
    font-size: 48px;
  }
  .page-vip-club__hero-description {
    font-size: 20px;
  }
  .page-vip-club__section-title {
    font-size: 34px;
  }
  .page-vip-club__text-block {
    font-size: 17px;
  }
  .page-vip-club__cta-button {
    padding: 14px 35px;
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .page-vip-club__hero-section {
    height: 60vh;
    min-height: 400px;
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-vip-club__main-title {
    font-size: 36px;
  }
  .page-vip-club__hero-description {
    font-size: 18px;
    margin-bottom: 30px;
  }
  .page-vip-club__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .page-vip-club__text-block,
  .page-vip-club__tier-description,
  .page-vip-club__card-description,
  .page-vip-club__step-item p,
  .page-vip-club__faq-answer p {
    font-size: 16px;
  }
  .page-vip-club__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }
  .page-vip-club__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 25px;
    font-size: 16px;
  }
  .page-vip-club__container {
    padding: 20px 15px;
  }
  .page-vip-club__tiers-grid,
  .page-vip-club__privileges-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-vip-club__tier-card,
  .page-vip-club__privilege-card,
  .page-vip-club__step-item {
    padding: 25px 20px;
  }
  .page-vip-club__tier-title,
  .page-vip-club__card-title {
    font-size: 22px;
  }
  .page-vip-club__step-item h3 {
    font-size: 20px;
  }
  .page-vip-club__faq-question {
    padding: 15px 20px;
  }
  .page-vip-club__faq-question h3 {
    font-size: 16px;
  }
  .page-vip-club__faq-toggle {
    font-size: 24px;
    width: 28px;
    height: 28px;
  }
  .page-vip-club__faq-item.active .page-vip-club__faq-answer {
    padding: 15px 20px !important;
  }
  /* Mobile image and video responsiveness */
  .page-vip-club img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-vip-club__image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
  }
  .page-vip-club__hero-background {
    max-width: 100% !important;
    width: 100% !important;
    height: 100% !important; /* Keep height 100% for hero background */
  }
}

@media (max-width: 480px) {
  .page-vip-club__main-title {
    font-size: 30px;
  }
  .page-vip-club__hero-description {
    font-size: 16px;
  }
  .page-vip-club__section-title {
    font-size: 24px;
  }
  .page-vip-club__cta-button {
    font-size: 15px;
    padding: 10px 20px;
  }
  .page-vip-club__faq-question h3 {
    font-size: 15px;
  }
}