/* style/vip-club.css */
:root {
  --page-vip-club-primary-color: #26A9E0;
  --page-vip-club-secondary-color: #FFFFFF;
  --page-vip-club-text-dark: #333333;
  --page-vip-club-text-light: #ffffff;
  --page-vip-club-background-dark: #0a0a0a; /* Body background from shared.css */
  --page-vip-club-login-color: #EA7C07;
}

.page-vip-club {
  color: var(--page-vip-club-text-light); /* Default text color for dark body background */
  background-color: var(--page-vip-club-background-dark);
  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;
  color: var(--page-vip-club-secondary-color);
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.page-vip-club__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--page-vip-club-primary-color);
  border-radius: 2px;
}

.page-vip-club__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  color: rgba(255, 255, 255, 0.8);
}

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

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

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

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

.page-vip-club__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: var(--page-vip-club-secondary-color);
  line-height: 1.2;
}

.page-vip-club__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
}

/* Buttons */
.page-vip-club__btn-primary,
.page-vip-club__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

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

.page-vip-club__btn-primary:hover {
  background-color: transparent;
  border-color: var(--page-vip-club-secondary-color);
  color: var(--page-vip-club-secondary-color);
}

.page-vip-club__text-link {
  color: var(--page-vip-club-primary-color);
  text-decoration: underline;
  font-weight: bold;
}

.page-vip-club__text-link:hover {
  color: var(--page-vip-club-secondary-color);
}

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

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

.page-vip-club__benefit-card {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-vip-club__benefit-card:hover {
  transform: translateY(-10px);
  background-color: rgba(38, 169, 224, 0.2);
}

.page-vip-club__benefit-title {
  font-size: 1.5em;
  color: var(--page-vip-club-primary-color);
  margin-bottom: 15px;
}

.page-vip-club__benefit-text {
  color: rgba(255, 255, 255, 0.7);
}

.page-vip-club__content-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 50px auto 0 auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

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

.page-vip-club__tiers-section .page-vip-club__section-title::after {
  background-color: var(--page-vip-club-secondary-color);
}

.page-vip-club__tiers-section .page-vip-club__section-description {
  color: rgba(255, 255, 255, 0.9);
}

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

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

.page-vip-club__tier-card:hover {
  background-color: rgba(255, 255, 255, 0.25);
}

.page-vip-club__tier-title {
  font-size: 1.8em;
  color: var(--page-vip-club-secondary-color);
  margin-bottom: 15px;
}

.page-vip-club__tier-text {
  color: rgba(255, 255, 255, 0.8);
}

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

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

.page-vip-club__offer-card {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-vip-club__offer-card:hover {
  transform: translateY(-10px);
  background-color: rgba(38, 169, 224, 0.2);
}

.page-vip-club__offer-title {
  font-size: 1.5em;
  color: var(--page-vip-club-primary-color);
  margin-bottom: 15px;
}

.page-vip-club__offer-text {
  color: rgba(255, 255, 255, 0.7);
}

/* Service Section */
.page-vip-club__service-section {
  padding: 80px 0;
  background-color: var(--page-vip-club-primary-color);
  color: var(--page-vip-club-text-light);
}

.page-vip-club__service-section .page-vip-club__section-title {
  color: var(--page-vip-club-secondary-color);
}

.page-vip-club__service-section .page-vip-club__section-title::after {
  background-color: var(--page-vip-club-secondary-color);
}

.page-vip-club__service-section .page-vip-club__section-description {
  color: rgba(255, 255, 255, 0.9);
}

.page-vip-club__service-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-vip-club__service-text {
  flex: 1;
  font-size: 1.1em;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

.page-vip-club__service-content .page-vip-club__content-image {
  flex: 1;
  margin: 0;
}

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

.page-vip-club__join-steps {
  list-style: none;
  padding: 0;
  margin: 50px 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.page-vip-club__join-step-item {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-vip-club__join-step-title {
  font-size: 1.8em;
  color: var(--page-vip-club-primary-color);
  margin-bottom: 15px;
}

.page-vip-club__join-step-text {
  color: rgba(255, 255, 255, 0.7);
}

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

.page-vip-club__faq-section .page-vip-club__section-title {
  color: var(--page-vip-club-secondary-color);
}

.page-vip-club__faq-section .page-vip-club__section-title::after {
  background-color: var(--page-vip-club-secondary-color);
}

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

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

.page-vip-club__faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: var(--page-vip-club-secondary-color);
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.05);
  transition: background-color 0.3s ease;
}

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

.page-vip-club__faq-item summary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.page-vip-club__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 10px;
}

.page-vip-club__faq-answer {
  padding: 20px 25px;
  font-size: 1.1em;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Final CTA Section */
.page-vip-club__cta-final-section {
  padding: 80px 0;
  background-color: var(--page-vip-club-background-dark);
  color: var(--page-vip-club-text-light);
  text-align: center;
}

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

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

@media (max-width: 768px) {
  .page-vip-club__hero-section {
    min-height: 500px;
    padding-top: var(--header-offset, 120px) !important;
  }

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

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

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

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

  .page-vip-club__benefits-grid,
  .page-vip-club__tiers-grid,
  .page-vip-club__offers-grid {
    grid-template-columns: 1fr;
  }

  .page-vip-club__service-content {
    flex-direction: column;
  }

  .page-vip-club__service-content .page-vip-club__content-image {
    margin-top: 30px;
  }

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

  .page-vip-club__hero-section,
  .page-vip-club__benefits-section,
  .page-vip-club__tiers-section,
  .page-vip-club__offers-section,
  .page-vip-club__service-section,
  .page-vip-club__join-section,
  .page-vip-club__faq-section,
  .page-vip-club__cta-final-section {
    padding: 60px 0;
  }

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

  /* Mobile responsive for images */
  .page-vip-club img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-vip-club__hero-image-wrapper,
  .page-vip-club__benefits-section,
  .page-vip-club__tiers-section,
  .page-vip-club__offers-section,
  .page-vip-club__service-section,
  .page-vip-club__join-section,
  .page-vip-club__faq-section,
  .page-vip-club__cta-final-section,
  .page-vip-club__container,
  .page-vip-club__benefit-card,
  .page-vip-club__tier-card,
  .page-vip-club__offer-card,
  .page-vip-club__join-step-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Ensure images in cards are not too small */
  .page-vip-club__benefit-card img, .page-vip-club__tier-card img, .page-vip-club__offer-card img {
    min-width: 200px !important;
    min-height: 200px !important;
  }
}