.page-vip-club {
  color: var(--text-main-color, #F2FFF6); /* Default text color for dark background */
  background-color: var(--bg-color, #08160F); /* Overall page background */
  font-family: Arial, sans-serif;
  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;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-bottom: 60px; /* Space below content */
  padding-top: 10px; /* Small top padding, body handles header offset */
  overflow: hidden;
  background: linear-gradient(180deg, #08160F 0%, #11271B 100%); /* Adjusted to use custom colors */
}

.page-vip-club__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit height for hero image */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}

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

.page-vip-club__hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  padding: 0 20px;
}

.page-vip-club__main-title {
  font-size: clamp(2em, 4vw, 3.2em); /* Responsive font size */
  font-weight: 700;
  color: var(--text-main-color, #F2FFF6);
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(87, 227, 141, 0.5); /* Glow effect */
}

.page-vip-club__hero-description {
  font-size: 1.2em;
  color: var(--text-secondary-color, #A7D9B8);
  margin-bottom: 30px;
}

.page-vip-club__btn-primary,
.page-vip-club__btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
}

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

.page-vip-club__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 0 15px var(--glow-color, #57E38D);
}

.page-vip-club__btn-secondary {
  background: #ffffff;
  color: var(--primary-color, #11A84E);
  border: 2px solid var(--primary-color, #11A84E);
  margin: 10px;
}

.page-vip-club__btn-secondary:hover {
  background: var(--primary-color, #11A84E);
  color: #ffffff;
}

.page-vip-club__section-title {
  font-size: 2.5em;
  font-weight: 700;
  color: var(--text-main-color, #F2FFF6);
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.page-vip-club__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--glow-color, #57E38D);
  border-radius: 2px;
}

.page-vip-club__section-description {
  font-size: 1.1em;
  color: var(--text-secondary-color, #A7D9B8);
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
}

.page-vip-club__text-block {
  padding: 60px 0;
  background-color: var(--bg-color, #08160F);
  color: var(--text-main-color, #F2FFF6);
}

.page-vip-club__dark-section {
  background-color: var(--card-bg-color, #11271B);
  color: var(--text-main-color, #F2FFF6);
  padding: 60px 0;
}

.page-vip-club__card {
  background-color: var(--card-bg-color, #11271B);
  border: 1px solid var(--border-color, #2E7A4E);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-main-color, #F2FFF6);
  height: 100%; /* Ensure cards have equal height in grid */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-vip-club__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 20px var(--glow-color, #57E38D);
}

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

.page-vip-club__level-icon,
.page-vip-club__benefit-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  min-height: 200px;
}

.page-vip-club__level-title,
.page-vip-club__benefit-title,
.page-vip-club__step-title {
  font-size: 1.6em;
  font-weight: 600;
  color: var(--gold-color, #F2C14E);
  margin-bottom: 15px;
}

.page-vip-club__level-description,
.page-vip-club__benefit-text,
.page-vip-club__step-text {
  font-size: 1em;
  color: var(--text-secondary-color, #A7D9B8);
  margin-bottom: 15px;
  flex-grow: 1;
}

.page-vip-club__level-description a,
.page-vip-club__step-text a,
.page-vip-club__callout-text a,
.page-vip-club__faq-answer a,
.page-vip-club__why-list a,
.page-vip-club__final-cta a {
  color: var(--glow-color, #57E38D);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-vip-club__level-description a:hover,
.page-vip-club__step-text a:hover,
.page-vip-club__callout-text a:hover,
.page-vip-club__faq-answer a:hover,
.page-vip-club__why-list a:hover,
.page-vip-club__final-cta a:hover {
  color: var(--gold-color, #F2C14E);
  text-decoration: underline;
}

.page-vip-club__callout-text,
.page-vip-club__final-cta {
  font-size: 1.1em;
  color: var(--text-secondary-color, #A7D9B8);
  text-align: center;
  margin-top: 40px;
  line-height: 1.8;
}

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

.page-vip-club__step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.page-vip-club__step-number {
  font-size: 2.5em;
  font-weight: bold;
  color: var(--glow-color, #57E38D);
  margin-bottom: 15px;
  background: var(--deep-green-color, #0A4B2C);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--glow-color, #57E38D);
}

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

.page-vip-club__faq-item {
  margin-bottom: 20px;
  text-align: left;
  background-color: var(--card-bg-color, #11271B);
  border: 1px solid var(--border-color, #2E7A4E);
  border-radius: 12px;
  padding: 20px 30px;
  color: var(--text-main-color, #F2FFF6);
  cursor: pointer;
}

.page-vip-club__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2em;
  font-weight: 600;
  color: var(--text-main-color, #F2FFF6);
  list-style: none;
  cursor: pointer;
}

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

.page-vip-club__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.page-vip-club__faq-qtext {
  flex-grow: 1;
  padding-right: 10px;
}

.page-vip-club__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: var(--glow-color, #57E38D);
  transition: transform 0.3s ease;
}

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

.page-vip-club__faq-answer {
  padding-top: 15px;
  font-size: 1em;
  color: var(--text-secondary-color, #A7D9B8);
  line-height: 1.7;
}

.page-vip-club__why-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.page-vip-club__why-item {
  background-color: var(--card-bg-color, #11271B);
  border: 1px solid var(--border-color, #2E7A4E);
  border-radius: 12px;
  padding: 25px;
  font-size: 1.1em;
  color: var(--text-secondary-color, #A7D9B8);
  text-align: left;
  line-height: 1.6;
  position: relative;
  padding-left: 55px;
}

.page-vip-club__why-item::before {
  content: '✔';
  position: absolute;
  left: 20px;
  top: 25px;
  color: var(--glow-color, #57E38D);
  font-weight: bold;
  font-size: 1.2em;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-vip-club__main-title {
    font-size: clamp(2em, 5vw, 2.8em);
  }
  .page-vip-club__section-title {
    font-size: 2em;
  }
  .page-vip-club__levels-grid,
  .page-vip-club__benefits-grid,
  .page-vip-club__steps-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-vip-club__hero-section,
  .page-vip-club__levels-section,
  .page-vip-club__benefits-section,
  .page-vip-club__join-section,
  .page-vip-club__faq-section,
  .page-vip-club__why-choose-section {
    padding: 40px 0; /* Adjust vertical padding */
  }
  .page-vip-club__hero-section {
    padding-top: 10px !important; /* body handles header offset, small top padding */
  }
  .page-vip-club__main-title {
    font-size: clamp(1.8em, 6vw, 2.5em);
  }
  .page-vip-club__section-title {
    font-size: 1.8em;
  }
  .page-vip-club__hero-description,
  .page-vip-club__section-description {
    font-size: 1em;
  }
  .page-vip-club__btn-primary,
  .page-vip-club__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px;
    margin: 10px 0;
    font-size: 0.95em;
  }
  .page-vip-club__cta-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0 15px;
    box-sizing: border-box;
    max-width: 100%;
    width: 100%;
    overflow: hidden;
  }
  .page-vip-club__levels-grid,
  .page-vip-club__benefits-grid,
  .page-vip-club__steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
    box-sizing: border-box;
    max-width: 100%;
    width: 100%;
    overflow: hidden;
  }
  .page-vip-club__card {
    padding: 25px;
  }
  .page-vip-club__level-icon,
  .page-vip-club__benefit-image,
  .page-vip-club__hero-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-height: 200px !important;
  }
  .page-vip-club__faq-item {
    padding: 15px 20px;
    margin: 0 15px 15px 15px;
    box-sizing: border-box;
    max-width: 100%;
    width: 100%;
    overflow: hidden;
  }
  .page-vip-club__faq-item summary {
    font-size: 1.1em;
  }
  .page-vip-club__faq-answer {
    font-size: 0.95em;
  }
  .page-vip-club__why-list {
    grid-template-columns: 1fr;
    padding: 0 15px;
    box-sizing: border-box;
    max-width: 100%;
    width: 100%;
    overflow: hidden;
  }
  .page-vip-club__container {
    padding: 0 15px;
    box-sizing: border-box;
    max-width: 100%;
    width: 100%;
    overflow: hidden;
  }
  .page-vip-club__hero-section .page-vip-club__container {
    padding: 0;
  }
  .page-vip-club__hero-content {
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .page-vip-club__main-title {
    font-size: clamp(1.6em, 7vw, 2.2em);
  }
  .page-vip-club__section-title {
    font-size: 1.6em;
  }
  .page-vip-club__hero-description {
    font-size: 0.95em;
  }
  .page-vip-club__hero-image-wrapper {
    margin-bottom: 20px;
  }
}