.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;
  box-sizing: border-box;
}

.page-vip-club__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 10px; /* Small top padding to avoid overlap with fixed header */
}

.page-vip-club__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  max-height: 500px; /* Limit height on desktop for better visibility of content below */
}

.page-vip-club__hero-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text readability */
  padding: 20px;
  box-sizing: border-box;
  z-index: 1;
}

.page-vip-club__main-title {
  font-size: clamp(2em, 4vw, 3.5em);
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-vip-club__hero-description {
  font-size: clamp(1em, 1.8vw, 1.3em);
  color: #F2FFF6; /* Text Main */
  max-width: 800px;
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.page-vip-club__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6; /* Text Main */\  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  max-width: 100%; /* For button responsiveness */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

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

.page-vip-club__cta-button--secondary {
  background: #11A84E; /* Main color */
  border: 2px solid #F2C14E; /* Gold */
}

.page-vip-club__section-title {
  font-size: clamp(1.8em, 3vw, 2.5em);
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  position: relative;
  padding-bottom: 10px;
}

.page-vip-club__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #11A84E; /* Main color */
  border-radius: 2px;
}

.page-vip-club__text-block {
  font-size: 1.05em;
  margin-bottom: 20px;
  text-align: justify;
  color: #F2FFF6; /* Text Main */
}

.page-vip-club__introduction-section,
.page-vip-club__levels-section,
.page-vip-club__benefits-section,
.page-vip-club__join-section,
.page-vip-club__faq-section,
.page-vip-club__conclusion-section {
  padding: 60px 0;
}

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

.page-vip-club__level-card {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  border: 1px solid #2E7A4E; /* Border */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-vip-club__level-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6);
}

.page-vip-club__level-icon {
  width: 100%;
  max-width: 150px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 50%;
  border: 3px solid #F2C14E; /* Gold */
  object-fit: cover;
}

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

.page-vip-club__level-description {
  font-size: 0.95em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  flex-grow: 1;
}

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

.page-vip-club__level-benefits li {
  color: #F2FFF6; /* Text Main */
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.page-vip-club__level-benefits li::before {
  content: '✓';
  color: #11A84E; /* Main color */
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-vip-club__benefit-category {
  margin-bottom: 60px;
}

.page-vip-club__benefit-subtitle {
  font-size: 1.9em;
  color: #11A84E; /* Main color */
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
  position: relative;
  padding-bottom: 10px;
}

.page-vip-club__benefit-subtitle::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #F2C14E; /* Gold */
  border-radius: 1.5px;
}

.page-vip-club__benefit-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-vip-club__benefit-card {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-vip-club__benefit-img {
  width: 100%;
  max-width: 250px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  border: 2px solid #1E3A2A; /* Divider */
}

.page-vip-club__card-title {
  font-size: 1.5em;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-vip-club__card-text {
  font-size: 0.95em;
  color: #A7D9B8; /* Text Secondary */
  flex-grow: 1;
}

.page-vip-club__join-steps {
  list-style: none;
  padding: 0;
  margin: 40px 0;
}

.page-vip-club__join-steps li {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  padding: 20px 25px;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #F2FFF6; /* Text Main */
  position: relative;
  padding-left: 50px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

.page-vip-club__join-steps li::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #11A84E; /* Main color */
  color: #F2FFF6; /* Text Main */
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 1.1em;
}

.page-vip-club__join-steps a {
  color: #57E38D; /* Glow */
  text-decoration: underline;
}

.page-vip-club__join-steps a:hover {
  color: #2AD16F;
}

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

.page-vip-club__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-vip-club__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15em;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  background-color: #1E3A2A; /* Divider - slightly darker for summary */
  transition: background-color 0.3s ease;
  list-style: none; /* Remove default marker for details/summary */
}

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

.page-vip-club__faq-item[open] .page-vip-club__faq-question {
  background-color: #0A4B2C; /* Deep Green */
}

.page-vip-club__faq-question:hover {
  background-color: #0A4B2C; /* Deep Green */
}

.page-vip-club__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #57E38D; /* Glow */
}

.page-vip-club__faq-item[open] .page-vip-club__faq-toggle {
  transform: rotate(45deg);
}

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

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

.page-vip-club__cta-wrapper {
  text-align: center;
  margin-top: 50px;
}

.text-highlight {
  color: #57E38D; /* Glow */
  font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-vip-club__hero-image {
    max-height: 400px;
  }
  .page-vip-club__main-title {
    font-size: clamp(1.8em, 5vw, 3em);
  }
  .page-vip-club__hero-description {
    font-size: clamp(0.9em, 2vw, 1.2em);
  }
  .page-vip-club__section-title {
    font-size: clamp(1.6em, 4vw, 2.2em);
  }
  .page-vip-club__benefit-subtitle {
    font-size: clamp(1.5em, 3.5vw, 1.8em);
  }
}

@media (max-width: 768px) {
  .page-vip-club__hero-image {
    max-height: 300px;
  }
  .page-vip-club__hero-content {
    position: static;
    background: none;
    padding: 30px 20px;
    min-height: auto;
  }
  .page-vip-club__main-title {
    position: static;
    color: #F2C14E; /* Gold */
    text-shadow: none;
    margin-bottom: 10px;
  }
  .page-vip-club__hero-description {
    position: static;
    color: #F2FFF6; /* Text Main */
    text-shadow: none;
    margin-bottom: 20px;
  }
  .page-vip-club__hero-section {
    padding-top: 0; /* No padding-top if content is static */
  }
  .page-vip-club__levels-grid,
  .page-vip-club__benefit-cards {
    grid-template-columns: 1fr;
  }
  .page-vip-club__introduction-section,
  .page-vip-club__levels-section,
  .page-vip-club__benefits-section,
  .page-vip-club__join-section,
  .page-vip-club__faq-section,
  .page-vip-club__conclusion-section {
    padding: 40px 0;
  }
  .page-vip-club__container {
    padding: 0 15px; /* Add padding for mobile content */
  }
  .page-vip-club__section-title {
    margin-bottom: 30px;
  }
  .page-vip-club__level-card,
  .page-vip-club__benefit-card {
    padding: 20px;
  }
  .page-vip-club__level-icon,
  .page-vip-club__benefit-img {
    
  }
  .page-vip-club__cta-button,
  .page-vip-club a[class*="button"],
  .page-vip-club a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-vip-club__cta-wrapper {
    padding: 0 15px; /* Ensure wrapper also has padding */
  }
  .page-vip-club__join-steps li {
    padding-left: 45px;
    font-size: 1em;
  }
  .page-vip-club__join-steps li::before {
    width: 25px;
    height: 25px;
    font-size: 1em;
    left: 10px;
  }
  .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 {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden;
  }
  .page-vip-club__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-vip-club__faq-answer {
    padding: 0 20px 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-vip-club__main-title {
    font-size: 1.8em;
  }
  .page-vip-club__hero-description {
    font-size: 0.9em;
  }
  .page-vip-club__section-title {
    font-size: 1.8em;
  }
  .page-vip-club__benefit-subtitle {
    font-size: 1.4em;
  }
  .page-vip-club__cta-button {
    font-size: 1em;
    padding: 12px 20px;
  }
  .page-vip-club__level-title {
    font-size: 1.5em;
  }
  .page-vip-club__card-title {
    font-size: 1.3em;
  }
}