.page-vip-club {
  font-family: Arial, sans-serif;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  line-height: 1.6;
}

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

.page-vip-club__section-spacing {
  padding: 60px 0;
}

.page-vip-club__section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: bold;
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.2;
}

.page-vip-club__section-description {
  font-size: 18px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #A7D9B8; /* Text Secondary */
}

.text-main-color {
  color: #F2FFF6;
}

/* Hero Section */
.page-vip-club__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 600px; /* Ensure sufficient height */
  text-align: center;
  overflow: hidden;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
}

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

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

.page-vip-club__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent background for text */
  border-radius: 10px;
}

.page-vip-club__hero-title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: bold;
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  line-height: 1.1;
}

.page-vip-club__hero-description {
  font-size: clamp(18px, 2.5vw, 22px);
  color: #F2FFF6; /* Text Main */
  margin-bottom: 30px;
}

.page-vip-club__hero-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/* 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: 18px;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-vip-club__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #ffffff;
  border: none;
}

.page-vip-club__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-vip-club__btn-secondary {
  background: transparent;
  color: #F2FFF6; /* Text Main */
  border: 2px solid #2E7A4E; /* Border */
}

.page-vip-club__btn-secondary:hover {
  background: rgba(46, 122, 78, 0.2); /* Deep Green transparent */
  transform: translateY(-2px);
}

/* Intro Section */
.page-vip-club__content-grid {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-vip-club__content-grid .page-vip-club__text-block {
  flex: 1;
}

.page-vip-club__content-grid .page-vip-club__image-wrapper {
  flex: 1;
  min-width: 200px; /* Minimum size for content images */
}

.page-vip-club__content-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

.page-vip-club__intro-section p {
  font-size: 16px;
  margin-bottom: 15px;
  color: #A7D9B8; /* Text Secondary */
  text-align: left;
}

.page-vip-club__intro-section p a {
  color: #2AD16F;
  text-decoration: none;
}

.page-vip-club__intro-section p a:hover {
  text-decoration: underline;
}

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

.page-vip-club__tier-card {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-vip-club__tier-title {
  font-size: 24px;
  font-weight: bold;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
}

.page-vip-club__tier-description {
  font-size: 16px;
  color: #A7D9B8; /* Text Secondary */
}

.page-vip-club__tiers-image-wrapper {
  margin-top: 40px;
  margin-bottom: 40px;
}

/* Privileges Section */
.page-vip-club__privileges-grid {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-vip-club__privileges-grid .page-vip-club__image-wrapper {
  flex: 1;
  min-width: 200px;
}

.page-vip-club__privileges-list {
  flex: 1;
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-vip-club__privileges-list li {
  background-color: #11271B; /* Card BG */
  border-left: 4px solid #F2C14E; /* Gold */
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  font-size: 16px;
  color: #F2FFF6; /* Text Main */
}

.page-vip-club__privileges-list li:last-child {
  margin-bottom: 0;
}

.page-vip-club__privileges-list li strong {
  color: #F2C14E; /* Gold */
}

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

.page-vip-club__steps-list li {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  position: relative;
  counter-increment: step-counter;
  color: #A7D9B8;
}

.page-vip-club__steps-list li::before {
  content: counter(step-counter);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #ffffff;
  border-radius: 50%;
  font-size: 24px;
  font-weight: bold;
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  border: 3px solid #08160F; /* Background */
}

.page-vip-club__step-title {
  font-size: 20px;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  margin-top: 20px;
  margin-bottom: 10px;
}

.page-vip-club__step-description {
  font-size: 16px;
  color: #A7D9B8; /* Text Secondary */
}

.page-vip-club__step-description a {
  color: #2AD16F;
  text-decoration: none;
}

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

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

.page-vip-club__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-vip-club__faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  background-color: #0A4B2C; /* Deep Green */
  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: #13994A;
}

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

.page-vip-club__faq-toggle {
  font-size: 24px;
  line-height: 1;
  margin-left: 15px;
  color: #F2C14E; /* Gold */
}

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

.page-vip-club__faq-answer {
  padding: 20px;
  font-size: 16px;
  color: #A7D9B8; /* Text Secondary */
  background-color: #11271B; /* Card BG */
  border-top: 1px solid #1E3A2A; /* Divider */
}

/* Final CTA Section */
.page-vip-club__cta-section {
  text-align: center;
  background-color: #0A4B2C; /* Deep Green */
  padding: 80px 0;
}

.page-vip-club__cta-container {
  position: relative;
  padding-bottom: 0; /* Adjust for image */
}

.page-vip-club__cta-container .page-vip-club__section-title {
  color: #F2C14E; /* Gold */
}

.page-vip-club__cta-container .page-vip-club__section-description {
  color: #F2FFF6; /* Text Main */
  margin-bottom: 40px;
}

.page-vip-club__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.page-vip-club__cta-image-wrapper {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 0;
  margin-top: -80px; /* Overlap with buttons slightly */
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-vip-club__content-grid,
  .page-vip-club__privileges-grid {
    flex-direction: column;
  }

  .page-vip-club__content-grid .page-vip-club__image-wrapper,
  .page-vip-club__privileges-grid .page-vip-club__image-wrapper {
    order: -1; /* Image appears above text on smaller screens */
    margin-bottom: 30px;
  }

  .page-vip-club__hero-title {
    font-size: clamp(32px, 4.5vw, 50px);
  }

  .page-vip-club__hero-description {
    font-size: clamp(16px, 2.2vw, 20px);
  }
}

@media (max-width: 768px) {
  .page-vip-club__section-spacing {
    padding: 40px 0;
  }

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

  .page-vip-club__section-description {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .page-vip-club__hero-section {
    min-height: 450px;
    padding-top: 10px !important;
    padding-bottom: 40px;
  }

  .page-vip-club__hero-title {
    font-size: clamp(28px, 6vw, 40px);
  }

  .page-vip-club__hero-description {
    font-size: clamp(15px, 3vw, 18px);
  }

  .page-vip-club__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-vip-club__btn-primary,
  .page-vip-club__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 16px;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-vip-club__container,
  .page-vip-club__content-grid,
  .page-vip-club__privileges-grid,
  .page-vip-club__tiers-grid,
  .page-vip-club__steps-list,
  .page-vip-club__faq-list,
  .page-vip-club__cta-container,
  .page-vip-club__cta-buttons,
  .page-vip-club__cta-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

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

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

  .page-vip-club__faq-answer {
    padding: 15px;
    font-size: 15px;
  }

  .page-vip-club__cta-section {
    padding: 60px 0;
  }

  .page-vip-club__cta-image-wrapper {
    margin-top: -60px; /* Adjust overlap */
  }

  .page-vip-club__steps-list li::before {
    position: static;
    transform: none;
    margin-bottom: 10px;
  }

  .page-vip-club__steps-list li {
    padding-top: 20px;
  }
}

@media (max-width: 480px) {
  .page-vip-club__tier-card {
    padding: 20px;
  }

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