/* style/vip-club.css */

/* Custom Colors */
: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;
}

/* Base styles for the VIP Club page */
.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;
  box-sizing: border-box;
}

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

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

.page-vip-club__section-text {
  font-size: 17px;
  color: var(--page-vip-club-text-secondary);
  text-align: center;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.page-vip-club__hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  overflow: hidden;
  margin-bottom: 40px;
}

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

.page-vip-club__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-vip-club__hero-title {
  font-size: clamp(36px, 5vw, 56px);
  color: var(--page-vip-club-text-main);
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.1;
  letter-spacing: 1px;
}

.page-vip-club__hero-description {
  font-size: 19px;
  color: var(--page-vip-club-text-secondary);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-vip-club__cta-button {
  display: inline-block;
  background: var(--page-vip-club-button-gradient);
  color: var(--page-vip-club-text-main);
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: background 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-vip-club__cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

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

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

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

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

.page-vip-club__tier-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

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

.page-vip-club__tier-description {
  font-size: 16px;
  color: var(--page-vip-club-text-secondary);
  text-align: left;
}

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

.page-vip-club__promotion-card {
  background-color: var(--page-vip-club-card-bg);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--page-vip-club-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-vip-club__promotion-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

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

.page-vip-club__promotion-description {
  font-size: 16px;
  color: var(--page-vip-club-text-secondary);
}

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

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

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

.page-vip-club__support-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

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

.page-vip-club__support-description {
  font-size: 16px;
  color: var(--page-vip-club-text-secondary);
}

/* How to Join Section */
.page-vip-club__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-vip-club__step-item {
  background-color: var(--page-vip-club-card-bg);
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--page-vip-club-border);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

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

.page-vip-club__step-description {
  font-size: 16px;
  color: var(--page-vip-club-text-secondary);
  text-align: left;
}

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

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

.page-vip-club__faq-item {
  background-color: var(--page-vip-club-card-bg);
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--page-vip-club-border);
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-vip-club__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 18px;
  font-weight: bold;
  color: var(--page-vip-club-text-main);
  cursor: pointer;
  background-color: var(--page-vip-club-deep-green);
  border-radius: 12px;
  user-select: none;
  list-style: none; /* For details/summary */
}

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

.page-vip-club__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--page-vip-club-gold);
  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 25px 20px;
  font-size: 16px;
  color: var(--page-vip-club-text-secondary);
  line-height: 1.6;
  border-top: 1px solid var(--page-vip-club-divider);
}

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

/* Links within content */
.page-vip-club a {
  color: var(--page-vip-club-primary-color);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-vip-club a:hover {
  color: var(--page-vip-club-gold);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-vip-club__hero-section {
    padding-bottom: 40px;
  }
  .page-vip-club__hero-title {
    font-size: clamp(30px, 4.5vw, 48px);
  }
  .page-vip-club__hero-description {
    font-size: 18px;
  }
  .page-vip-club__section-title {
    font-size: clamp(24px, 3.5vw, 36px);
  }
}

@media (max-width: 768px) {
  .page-vip-club__dark-section {
    padding: 40px 0;
  }
  .page-vip-club__container {
    padding: 0 15px;
  }

  /* Hero Section */
  .page-vip-club__hero-image-wrapper {
    padding-bottom: 75%; /* More square for mobile */
    margin-bottom: 20px;
  }
  .page-vip-club__hero-content {
    padding: 0 15px;
  }
  .page-vip-club__hero-title {
    font-size: clamp(28px, 6vw, 38px);
    margin-bottom: 15px;
  }
  .page-vip-club__hero-description {
    font-size: 16px;
    margin-bottom: 25px;
  }
  .page-vip-club__cta-button {
    padding: 12px 25px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-vip-club__cta-button--secondary {
    margin-left: 0;
    margin-top: 15px;
  }
  .page-vip-club__cta-buttons-wrapper {
    flex-direction: column;
    gap: 15px;
  }

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

  .page-vip-club__section,
  .page-vip-club__card,
  .page-vip-club__container,
  .page-vip-club__hero-section,
  .page-vip-club__tiers-grid,
  .page-vip-club__promotions-grid,
  .page-vip-club__support-grid,
  .page-vip-club__steps-list,
  .page-vip-club__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-vip-club__tier-card,
  .page-vip-club__promotion-card,
  .page-vip-club__support-item,
  .page-vip-club__step-item,
  .page-vip-club__faq-item {
    padding: 20px;
  }

  .page-vip-club__section-text {
    font-size: 15px;
  }

  .page-vip-club__tier-title,
  .page-vip-club__promotion-title,
  .page-vip-club__support-title,
  .page-vip-club__step-title {
    font-size: 20px;
  }

  .page-vip-club__tier-description,
  .page-vip-club__promotion-description,
  .page-vip-club__support-description,
  .page-vip-club__step-description,
  .page-vip-club__faq-answer p {
    font-size: 15px;
  }

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

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

@media (max-width: 480px) {
  .page-vip-club__hero-title {
    font-size: clamp(24px, 7vw, 32px);
  }
  .page-vip-club__section-title {
    font-size: clamp(22px, 6vw, 30px);
  }
}