.page-vip-club {
  padding-top: 10px; /* Small padding to ensure content isn't flush with header */
  color: var(--text-main);
  background-color: var(--background);
}

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

.page-vip-club__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 40px;
  background-color: #F4F7FB; /* Use background color from palette */
}

.page-vip-club__hero-image-wrapper {
  width: 100%;
  max-width: 1920px; /* Ensure image wrapper can expand */
}

.page-vip-club__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-vip-club__hero-content {
  padding: 20px 0;
  max-width: 800px;
}

.page-vip-club__hero-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--custom-color-1776249996415);
  margin-bottom: 15px;
  /* No fixed font-size for h1 in hero, rely on font-weight and line-height */
}

.page-vip-club__hero-description {
  font-size: 1.1em;
  line-height: 1.6;
  color: var(--text-main);
  margin-bottom: 30px;
}

.page-vip-club__hero-button,
.page-vip-club__view-all-promos-button,
.page-vip-club__level-button,
.page-vip-club__faq-contact-button,
.page-vip-club__cta-button {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1em;
  transition: all 0.3s ease;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  border: none;
  cursor: pointer;
}

.page-vip-club__hero-button:hover,
.page-vip-club__view-all-promos-button:hover,
.page-vip-club__level-button:hover,
.page-vip-club__faq-contact-button:hover,
.page-vip-club__cta-button:hover {
  box-shadow: 0 8px 20px rgba(47, 107, 255, 0.4);
  transform: translateY(-2px);
}

.page-vip-club__section-title {
  font-size: 2.5em;
  font-weight: 700;
  color: var(--custom-color-1776249996415);
  text-align: center;
  margin-bottom: 40px;
  margin-top: 60px;
}

.page-vip-club__section-description {
  font-size: 1.1em;
  line-height: 1.6;
  color: var(--text-main);
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.page-vip-club__benefit-card:hover,
.page-vip-club__level-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-vip-club__benefit-icon,
.page-vip-club__level-image {
  width: 100%; /* Ensure images take full width of card */
  height: auto;
  max-width: 400px; /* Maintain minimum size */
  margin: 0 auto 20px auto;
  border-radius: 8px;
  object-fit: cover;
}

.page-vip-club__benefit-title,
.page-vip-club__level-title {
  font-size: 1.5em;
  font-weight: 700;
  color: var(--custom-color-1776249996415);
  margin-bottom: 15px;
}

.page-vip-club__benefit-text,
.page-vip-club__level-description {
  font-size: 1em;
  line-height: 1.6;
  color: var(--text-main);
  margin-bottom: 20px;
}

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

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

.page-vip-club__faq-item {
  background-color: var(--card-b-g);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border);
}

.page-vip-club__faq-question {
  font-size: 1.25em;
  font-weight: 600;
  color: var(--custom-color-1776249996415);
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-vip-club__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  line-height: 1;
  color: var(--primary-color);
}

/* .page-vip-club__faq-question.active::after { content: '-'; } */ /* For JS controlled accordion */

.page-vip-club__faq-answer {
  font-size: 1em;
  line-height: 1.6;
  color: var(--text-main);
  /* display: none; */ /* For JS controlled accordion */
}

.page-vip-club__cta-section {
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  padding: 80px 20px;
  text-align: center;
  color: #FFFFFF;
  margin-top: 60px;
  border-radius: 12px;
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-vip-club__cta-title {
  font-size: 2.8em;
  font-weight: 700;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.page-vip-club__cta-description {
  font-size: 1.2em;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #E0E0E0;
}

.page-vip-club__cta-button {
  background: #FFFFFF;
  color: var(--primary-color);
  padding: 16px 40px;
  font-size: 1.1em;
  border-radius: 50px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

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

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

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

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

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

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

  .page-vip-club__benefit-icon,
  .page-vip-club__level-image,
  .page-vip-club__hero-image {
    max-width: 100%;
    height: auto;
  }

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

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

  /* Ensure all content area images are responsive */
  .page-vip-club img {
    max-width: 100%;
    height: auto;
  }

  /* Content area image CSS size lower bound */
  .page-vip-club__hero-image,
  .page-vip-club__benefit-icon,
  .page-vip-club__level-image {
    min-width: 200px;
    min-height: 200px;
  }
}

/* Color Variables from Palette */
:root {
  --primary-color: #2F6BFF;
  --secondary-color: #6FA3FF;
  --button-gradient: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  --card-b-g: #FFFFFF;
  --background: #F4F7FB;
  --text-main: #1F2D3D;
  --custom-color-1776249996415: #000000;
  --border: #D6E2FF;
  --glow: #A5C4FF;
}