/* style/vip-club.css */

:root {
  --page-vip-club-primary-color: #11A84E;
  --page-vip-club-secondary-color: #22C768;
  --page-vip-club-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --page-vip-club-card-bg: #11271B;
  --page-vip-club-background: #08160F;
  --page-vip-club-text-main: #F2FFF6;
  --page-vip-club-text-secondary: #A7D9B8;
  --page-vip-club-border: #2E7A4E;
  --page-vip-club-glow: #57E38D;
  --page-vip-club-gold: #F2C14E;
  --page-vip-club-divider: #1E3A2A;
  --page-vip-club-deep-green: #0A4B2C;
}

.page-vip-club {
  background-color: var(--page-vip-club-background);
  color: var(--page-vip-club-text-main);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-vip-club__section-title {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--page-vip-club-gold);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.page-vip-club__text-block {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--page-vip-club-text-main);
}

.page-vip-club__dark-section {
  background-color: var(--page-vip-club-background);
  color: var(--page-vip-club-text-main);
  padding: 80px 0;
}

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

/* Hero Section */
.page-vip-club__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 0 80px 0; /* body handles top padding, use small decorative top padding */
  overflow: hidden;
}

.page-vip-club__hero-image-wrapper {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
  position: relative;
  margin-bottom: 40px; /* Space between image and content */
}

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

.page-vip-club__hero-content {
  position: relative; /* Ensure content is above any potential background effect */
  z-index: 10;
  max-width: 900px;
  padding: 0 20px;
}

.page-vip-club__main-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: bold;
  color: var(--page-vip-club-gold);
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: 1px;
}

.page-vip-club__description {
  font-size: 18px;
  color: var(--page-vip-club-text-secondary);
  margin-bottom: 30px;
  line-height: 1.7;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-vip-club__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.page-vip-club__btn-primary {
  background: var(--page-vip-club-button-gradient);
  color: #ffffff;
  border: none;
}

.page-vip-club__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

/* Introduction Section */
.page-vip-club__introduction-section .page-vip-club__text-block {
  color: #333333;
}

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

.page-vip-club__card {
  background-color: var(--page-vip-club-card-bg);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--page-vip-club-border);
  color: var(--page-vip-club-text-main);
}

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

.page-vip-club__card-image {
  width: 100%;
  max-width: 250px;
  height: auto;
  border-radius: 10px;
  margin-bottom: 20px;
  object-fit: cover;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

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

.page-vip-club__card-text {
  font-size: 15px;
  color: var(--page-vip-club-text-secondary);
  line-height: 1.7;
}

/* Tiers Section */
.page-vip-club__tiers-section .page-vip-club__text-block {
  color: #333333;
}

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

.page-vip-club__tier-item {
  padding: 25px;
  background-color: #f8f8f8;
  border: 1px solid #e0e0e0;
  color: #333333;
  text-align: left;
}

.page-vip-club__tier-item .page-vip-club__text-main {
  color: #11A84E;
}

.page-vip-club__tier-item .page-vip-club__text-secondary {
  color: #555555;
}

.page-vip-club__tier-name {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--page-vip-club-deep-green);
}

.page-vip-club__tier-description {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #555555;
}

.page-vip-club__tier-requirement {
  font-size: 14px;
  font-weight: bold;
  color: #777777;
}

/* How to Join Section */
.page-vip-club__steps-list {
  counter-reset: step-counter;
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-vip-club__step-item {
  position: relative;
  padding-left: 60px;
  margin-bottom: 20px;
  color: var(--page-vip-club-text-main);
  text-align: left;
}

.page-vip-club__step-item::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--page-vip-club-primary-color);
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: bold;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-vip-club__step-title {
  font-size: 20px;
  font-weight: bold;
  color: var(--page-vip-club-gold);
  margin-bottom: 10px;
}

.page-vip-club__step-description {
  font-size: 15px;
  color: var(--page-vip-club-text-secondary);
  line-height: 1.6;
}

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

/* FAQ Section */
.page-vip-club__faq-section .page-vip-club__text-block {
  color: #333333;
}

.page-vip-club__faq-list {
  margin-top: 40px;
}

.page-vip-club__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #333333;
}

.page-vip-club__faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  color: #333333;
  background-color: #f0f0f0;
  transition: background-color 0.3s ease;
}

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

.page-vip-club__faq-item summary:hover {
  background-color: #e5e5e5;
}

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

.page-vip-club__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  margin-left: 15px;
  color: var(--page-vip-club-primary-color);
}

.page-vip-club__faq-item[open] .page-vip-club__faq-toggle {
  content: '−';
}

.page-vip-club__faq-answer {
  padding: 15px 25px 20px 25px;
  font-size: 15px;
  line-height: 1.7;
  color: #555555;
  border-top: 1px solid #e9e9e9;
}

/* CTA Bottom Section */
.page-vip-club__cta-bottom-section {
  padding-top: 60px;
  padding-bottom: 80px;
  text-align: center;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-vip-club__hero-image-wrapper {
    max-height: 500px;
  }

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

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

@media (max-width: 768px) {
  .page-vip-club__dark-section, .page-vip-club__light-bg {
    padding: 60px 0;
  }

  .page-vip-club__section-title {
    font-size: clamp(24px, 6vw, 36px);
  }

  .page-vip-club__main-title {
    font-size: clamp(28px, 7vw, 48px);
  }

  .page-vip-club__description,
  .page-vip-club__text-block,
  .page-vip-club__card-text,
  .page-vip-club__tier-description,
  .page-vip-club__step-description,
  .page-vip-club__faq-answer p {
    font-size: 15px;
  }

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

  .page-vip-club__cta-button {
    padding: 12px 25px;
    font-size: 16px;
  }

  .page-vip-club__card {
    padding: 25px;
  }

  .page-vip-club__card-title {
    font-size: 20px;
  }

  .page-vip-club__tier-name {
    font-size: 22px;
  }

  .page-vip-club__step-title {
    font-size: 18px;
  }

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

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

  /* Mobile image, video, and button responsiveness */
  .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__card,
  .page-vip-club__tier-item,
  .page-vip-club__faq-item,
  .page-vip-club__container,
  .page-vip-club__hero-content,
  .page-vip-club__introduction-section,
  .page-vip-club__benefits-section,
  .page-vip-club__tiers-section,
  .page-vip-club__how-to-join-section,
  .page-vip-club__faq-section,
  .page-vip-club__cta-bottom-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-vip-club__cta-button,
  .page-vip-club__btn-primary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-vip-club__cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-vip-club__hero-section {
    padding-top: 10px !important;
  }
}

@media (max-width: 480px) {
  .page-vip-club__hero-image-wrapper {
    max-height: 250px;
  }

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

  .page-vip-club__step-item {
    padding-left: 50px;
  }

  .page-vip-club__step-item::before {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }
}