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

/* Hero Section */
.page-vip-club__hero-section {
  position: relative;
  display: flex;
  flex-direction: column; /* Image on top, text below */
  align-items: center;
  justify-content: center;
  padding: 10px 20px 60px; /* Small top padding, more bottom padding */
  text-align: center;
  overflow: hidden;
  background-color: #08160F;
}

.page-vip-club__hero-image-wrapper {
  width: 100%;
  max-width: 100%; /* Ensure it takes full width */
  margin-bottom: 30px; /* Space between image and text */
}

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

.page-vip-club__hero-content {
  max-width: 900px;
  width: 100%; /* Ensure it takes full width of its container */
  z-index: 1;
}

.page-vip-club__main-title {
  font-size: clamp(2em, 3.5vw, 3.2em); /* Responsive H1 font size */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #F2FFF6;
}

.page-vip-club__description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #A7D9B8; /* Text Secondary */
}

.page-vip-club__cta-buttons {
  display: flex;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
  gap: 20px;
  justify-content: center;
}

.page-vip-club__btn-primary,
.page-vip-club__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: normal; /* Allow text to wrap */
  word-wrap: break-word; /* Allow text to break words */
  box-sizing: border-box;
  max-width: 100%; /* Ensure buttons don't overflow */
}

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

.page-vip-club__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(42, 209, 111, 0.4);
}

.page-vip-club__btn-secondary {
  background: transparent;
  color: #2AD16F; /* Use a lighter green for contrast */
  border: 2px solid #2AD16F; /* Border color */
}

.page-vip-club__btn-secondary:hover {
  background: rgba(42, 209, 111, 0.1);
  transform: translateY(-2px);
}

/* General Section Styling */
.page-vip-club__intro-section,
.page-vip-club__benefits-section,
.page-vip-club__tiers-section,
.page-vip-club__how-to-join-section,
.page-vip-club__terms-section,
.page-vip-club__faq-section,
.page-vip-club__final-cta-section {
  padding: 60px 20px;
  background-color: #08160F; /* Background */
  text-align: center;
}

.page-vip-club__container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%; /* Ensure container takes full width up to max-width */
  box-sizing: border-box;
}

.page-vip-club__section-title {
  font-size: clamp(1.8em, 3vw, 2.5em);
  font-weight: 700;
  margin-bottom: 30px;
  color: #F2FFF6; /* Text Main */
}

.page-vip-club__text-block {
  font-size: 1.05em;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #A7D9B8; /* Text Secondary */
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-vip-club__benefit-card {
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}

.page-vip-club__benefit-card:hover {
  transform: translateY(-5px);
}

.page-vip-club__benefit-icon {
  width: 100%; /* Image takes full width of card */
  max-width: 250px; /* But not too large */
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-vip-club__benefit-title {
  font-size: 1.4em;
  font-weight: 600;
  margin-bottom: 15px;
  color: #F2C14E; /* Gold */
}

.page-vip-club__benefit-description {
  font-size: 0.95em;
  line-height: 1.6;
  color: #A7D9B8; /* Text Secondary */
}

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

.page-vip-club__tier-card {
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border */
}

.page-vip-club__tier-title {
  font-size: 1.6em;
  font-weight: 700;
  margin-bottom: 15px;
  color: #57E38D; /* Glow */
}

.page-vip-club__tier-description {
  font-size: 1em;
  line-height: 1.6;
  color: #A7D9B8; /* Text Secondary */
}

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

.page-vip-club__join-steps li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  font-size: 1.1em;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main */
}

.page-vip-club__step-number {
  background-color: #11A84E; /* Main color */
  color: #F2FFF6;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9em;
  flex-shrink: 0;
  margin-right: 15px;
}

.page-vip-club__step-text {
  flex-grow: 1;
}

/* Terms Section */
.page-vip-club__terms-list {
  list-style: disc;
  padding-left: 20px;
  margin-top: 30px;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-vip-club__terms-list li {
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 10px;
  color: #A7D9B8; /* Text Secondary */
}

.page-vip-club__text-link {
  color: #2AD16F; /* Button color for links */
  text-decoration: underline;
  margin-top: 20px;
  display: inline-block;
  font-weight: 600;
}

.page-vip-club__text-link:hover {
  color: #57E38D; /* Glow */
}

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

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

.page-vip-club__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.15em;
  font-weight: 600;
  cursor: pointer;
  color: #F2FFF6; /* Text Main */
  list-style: none; /* Hide default marker */
}

.page-vip-club__faq-item summary::-webkit-details-marker {
  display: none; /* Hide default marker for webkit browsers */
}

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

.page-vip-club__faq-toggle {
  font-size: 1.5em;
  font-weight: 700;
  color: #57E38D; /* Glow */
  margin-left: 15px;
}

.page-vip-club__faq-answer {
  padding: 0 20px 20px;
  font-size: 1em;
  line-height: 1.6;
  color: #A7D9B8; /* Text Secondary */
}

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

/* Final CTA Section - same as hero CTA for consistency */
.page-vip-club__final-cta-section .page-vip-club__section-title {
  margin-bottom: 20px;
}
.page-vip-club__final-cta-section .page-vip-club__text-block {
  margin-bottom: 30px;
}

.page-vip-club__copyright {
  margin-top: 60px;
  font-size: 0.9em;
  color: #A7D9B8;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-vip-club__hero-image {
    width: 90%; /* Adjust image width for smaller desktops */
  }
}

@media (max-width: 768px) {
  .page-vip-club__hero-section,
  .page-vip-club__intro-section,
  .page-vip-club__benefits-section,
  .page-vip-club__tiers-section,
  .page-vip-club__how-to-join-section,
  .page-vip-club__terms-section,
  .page-vip-club__faq-section,
  .page-vip-club__final-cta-section {
    padding: 40px 15px; /* Adjust padding for mobile */
  }

  .page-vip-club__container {
    padding-left: 15px;
    padding-right: 15px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important; /* Prevent horizontal scroll */
  }

  .page-vip-club__main-title {
    font-size: clamp(1.8em, 8vw, 2.5em); /* Smaller H1 on mobile */
  }

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

  .page-vip-club__cta-buttons {
    flex-direction: column; /* Stack buttons vertically */
    gap: 15px;
  }

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

  .page-vip-club__section-title {
    font-size: clamp(1.5em, 7vw, 2em); /* Smaller section titles */
  }

  .page-vip-club__text-block,
  .page-vip-club__benefit-description,
  .page-vip-club__tier-description,
  .page-vip-club__join-steps li,
  .page-vip-club__terms-list li,
  .page-vip-club__faq-answer {
    font-size: 0.95em;
  }

  .page-vip-club__benefits-grid,
  .page-vip-club__tiers-grid {
    grid-template-columns: 1fr; /* Single column layout */
    gap: 20px;
  }

  .page-vip-club__hero-image,
  .page-vip-club__benefit-icon {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    box-sizing: border-box !important;
  }
  
  .page-vip-club img { /* General image responsive rule */
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    box-sizing: border-box !important;
  }

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

@media (max-width: 480px) {
  .page-vip-club__main-title {
    font-size: clamp(1.5em, 9vw, 2.2em);
  }
  .page-vip-club__section-title {
    font-size: clamp(1.3em, 8vw, 1.8em);
  }
  .page-vip-club__step-number {
    width: 25px;
    height: 25px;
    font-size: 0.8em;
  }
  .page-vip-club__join-steps li {
    font-size: 1em;
  }
}

/* Ensure no filter is used for images */
.page-vip-club img {
  filter: none !important; /* Explicitly disable any potential filters */
}