.page-vip-club {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default dark text color for light body background */
  background-color: #ffffff; /* Assuming body background is white/light */
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

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

.page-vip-club__section {
  padding: 60px 0;
  margin-bottom: 30px;
}

.page-vip-club__section-title {
  font-size: 36px;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-vip-club__subsection-title {
  font-size: 28px;
  color: #26A9E0;
  text-align: center;
  margin-top: 50px;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-vip-club__text-block {
  font-size: 17px;
  margin-bottom: 20px;
  line-height: 1.7;
  text-align: justify;
}

.page-vip-club__text-center {
  text-align: center;
}

.page-vip-club__dark-section {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-vip-club__dark-section .page-vip-club__section-title,
.page-vip-club__dark-section .page-vip-club__subsection-title {
  color: #ffffff;
}

.page-vip-club__dark-section .page-vip-club__text-block a {
  color: #f0f0f0; /* Lighter link color for dark background */
  text-decoration: underline;
}

.page-vip-club__dark-section .page-vip-club__text-block a:hover {
  color: #ffffff;
}

.page-vip-club a {
  color: #26A9E0;
  text-decoration: none;
  font-weight: bold;
}

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

/* Hero Section */
.page-vip-club__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #e0f2f7, #ffffff); /* Light gradient background */
}

.page-vip-club__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-vip-club__hero-image {
  width: 100%;
  margin-bottom: 30px;
  max-width: 900px; /* Adjust max-width for hero image */
}

.page-vip-club__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-vip-club__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 800px;
}

.page-vip-club__hero-title {
  font-size: 48px;
  color: #26A9E0;
  margin-bottom: 20px;
  font-weight: 900;
  line-height: 1.2;
}

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

.page-vip-club__cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: #26A9E0;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(38, 169, 224, 0.3);
}

.page-vip-club__cta-button:hover {
  background: #1e87c0;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(38, 169, 224, 0.4);
}

.page-vip-club__cta-button--small {
  padding: 12px 30px;
  font-size: 16px;
  margin-top: 15px;
}

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

.page-vip-club__tier-card {
  background: #ffffff;
  color: #333333;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.page-vip-club__tier-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-vip-club__tier-title {
  font-size: 28px;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-vip-club__tier-description {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-vip-club__tier-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  width: 100%;
  max-width: 250px;
}

.page-vip-club__tier-benefits li {
  font-size: 15px;
  margin-bottom: 8px;
  position: relative;
  padding-left: 25px;
  color: #555555;
}

.page-vip-club__tier-benefits li::before {
  content: '✓';
  color: #26A9E0;
  position: absolute;
  left: 0;
  font-weight: bold;
}

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

.page-vip-club__privilege-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-vip-club__privilege-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.page-vip-club__privilege-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-vip-club__privilege-title {
  font-size: 24px;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-vip-club__privilege-description {
  font-size: 16px;
  line-height: 1.6;
  color: #555555;
  flex-grow: 1;
}

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

.page-vip-club__step-card {
  background: #ffffff;
  color: #333333;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-vip-club__step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.page-vip-club__step-image {
  width: 100%;
  max-width: 250px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-vip-club__step-title {
  font-size: 24px;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-vip-club__step-description {
  font-size: 16px;
  line-height: 1.6;
  color: #555555;
}

/* 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: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-vip-club__support-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.page-vip-club__support-image {
  width: 100%;
  max-width: 250px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-vip-club__support-title {
  font-size: 24px;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-vip-club__support-description {
  font-size: 16px;
  line-height: 1.6;
  color: #555555;
}

/* FAQ Section */
.page-vip-club__faq-list {
  margin-top: 40px;
}

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

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

.page-vip-club__faq-question:hover {
  background: #f0f0f0;
}

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

.page-vip-club__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #26A9E0;
  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: #26A9E0;
  transform: rotate(180deg);
}

.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: #ffffff;
  color: #555555;
}

.page-vip-club__faq-item.active .page-vip-club__faq-answer {
  max-height: 2000px !important;
  padding: 20px 25px !important;
  opacity: 1;
  border-top: 1px solid #e0e0e0;
}

.page-vip-club__faq-answer p {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.7;
}

/* Join Us Section */
.page-vip-club__join-us {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(135deg, #26A9E0, #1e87c0);
  color: #ffffff;
}

.page-vip-club__join-us .page-vip-club__section-title {
  color: #ffffff;
  margin-bottom: 25px;
}

.page-vip-club__join-us .page-vip-club__text-block {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.7;
}

.page-vip-club__join-us .page-vip-club__text-block a {
  color: #ffffff;
  text-decoration: underline;
}

.page-vip-club__join-us .page-vip-club__text-block a:hover {
  color: #f0f0f0;
}

.page-vip-club__join-us .page-vip-club__cta-button {
  background: #EA7C07; /* Login color for prominent CTA */
  box-shadow: 0 4px 10px rgba(234, 124, 7, 0.3);
}

.page-vip-club__join-us .page-vip-club__cta-button:hover {
  background: #d46b00;
  box-shadow: 0 6px 15px rgba(234, 124, 7, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-vip-club__hero-title {
    font-size: 40px;
  }
  .page-vip-club__hero-description {
    font-size: 18px;
  }
  .page-vip-club__section-title {
    font-size: 32px;
  }
  .page-vip-club__subsection-title {
    font-size: 24px;
  }
  .page-vip-club__text-block {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .page-vip-club {
    padding-top: var(--header-offset, 120px) !important;
    font-size: 16px;
    line-height: 1.6;
  }
  .page-vip-club__container {
    padding: 15px;
  }
  .page-vip-club__section {
    padding: 40px 0;
  }
  .page-vip-club__hero-section {
    padding: 50px 15px;
  }
  .page-vip-club__hero-title {
    font-size: 32px;
    margin-bottom: 15px;
  }
  .page-vip-club__hero-description {
    font-size: 16px;
    margin-bottom: 25px;
  }
  .page-vip-club__cta-button {
    padding: 15px 35px;
    font-size: 18px;
    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--small {
    padding: 12px 25px;
    font-size: 15px;
  }
  .page-vip-club__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .page-vip-club__subsection-title {
    font-size: 22px;
    margin-top: 40px;
    margin-bottom: 20px;
  }
  .page-vip-club__text-block {
    font-size: 15px;
  }
  .page-vip-club__tier-grid,
  .page-vip-club__privilege-grid,
  .page-vip-club__steps-grid,
  .page-vip-club__support-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .page-vip-club__tier-card,
  .page-vip-club__privilege-card,
  .page-vip-club__step-card,
  .page-vip-club__support-item {
    padding: 25px;
  }
  .page-vip-club__privilege-image {
    height: 180px;
  }
  .page-vip-club__faq-question {
    padding: 15px 20px;
    flex-wrap: wrap;
  }
  .page-vip-club__faq-question h3 {
    font-size: 16px;
    width: calc(100% - 40px);
    margin-bottom: 5px; /* Adjust for wrap */
  }
  .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;
  }
  .page-vip-club__faq-answer p {
    font-size: 15px;
  }
  .page-vip-club__join-us {
    padding: 60px 15px;
  }
  .page-vip-club__join-us .page-vip-club__text-block {
    font-size: 16px;
    margin-bottom: 30px;
  }
  /* Ensure all images are responsive */
  .page-vip-club img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-vip-club__section,
  .page-vip-club__card,
  .page-vip-club__container,
  .page-vip-club__hero-container,
  .page-vip-club__hero-content,
  .page-vip-club__tier-card,
  .page-vip-club__privilege-card,
  .page-vip-club__step-card,
  .page-vip-club__support-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}