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

.page-vip-club__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding for first section */
  margin-bottom: 40px;
}

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

.page-vip-club__hero-content {
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -100px; /* Overlap slightly for visual effect */
  position: relative;
  z-index: 1;
  background: rgba(17, 39, 27, 0.9); /* Card BG with transparency */
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid #2E7A4E; /* Border */
}

.page-vip-club__main-title {
  color: #F2C14E; /* Gold */
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  /* No fixed font-size for H1 */
}

.page-vip-club__hero-description {
  color: #A7D9B8; /* Text Secondary */
  font-size: 1.1em;
  margin-bottom: 30px;
}

.page-vip-club__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
  color: #F2FFF6;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1em;
  transition: background 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-vip-club__cta-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
}

.page-vip-club__cta-button--secondary {
  background: #11271B; /* Card BG */
  color: #F2FFF6; /* Text Main */
  border: 2px solid #2AD16F; /* Green from button gradient */
}

.page-vip-club__cta-button--secondary:hover {
  background: #2AD16F;
  color: #08160F;
  transform: translateY(-2px);
}

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

.page-vip-club__section-title {
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 20px;
  font-size: 2.2em;
  font-weight: bold;
}

.page-vip-club__section-description {
  color: #A7D9B8; /* Text Secondary */
  text-align: center;
  font-size: 1.05em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-vip-club__benefits-section, .page-vip-club__levels-section, .page-vip-club__support-section {
  padding: 60px 0;
  margin-bottom: 40px;
}

.page-vip-club__dark-section {
  background-color: #11271B; /* Card BG */
  color: #F2FFF6; /* Text Main */
}

.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: #0A4B2C; /* Deep Green */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

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

.page-vip-club__benefit-icon {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 10px;
  border: 1px solid #2E7A4E;
}

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

.page-vip-club__benefit-text {
  color: #A7D9B8; /* Text Secondary */
}

.page-vip-club__join-section {
  padding: 60px 0;
  margin-bottom: 40px;
}

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

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

.page-vip-club__step-title {
  color: #2AD16F; /* Green from button gradient */
  font-size: 1.6em;
  margin-bottom: 15px;
}

.page-vip-club__step-text {
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
}

.page-vip-club__step-button {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
  color: #F2FFF6;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: background 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-vip-club__step-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

.page-vip-club__levels-table-wrapper {
  overflow-x: auto;
  margin-top: 40px;
  border: 1px solid #2E7A4E;
  border-radius: 15px;
  background-color: #0A4B2C; /* Deep Green */
}

.page-vip-club__levels-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px; /* Ensure table is wide enough for mobile overflow */
}

.page-vip-club__levels-table th,
.page-vip-club__levels-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid #1E3A2A; /* Divider */
}

.page-vip-club__levels-table th {
  background-color: #11271B; /* Card BG */
  color: #F2C14E; /* Gold */
  font-weight: bold;
  text-transform: uppercase;
}

.page-vip-club__levels-table tbody tr:last-child td {
  border-bottom: none;
}

.page-vip-club__levels-table td {
  color: #A7D9B8; /* Text Secondary */
}

.page-vip-club__levels-table tbody tr:nth-child(even) {
  background-color: #0A4B2C; /* Deep Green */
}

.page-vip-club__levels-table tbody tr:nth-child(odd) {
  background-color: #11271B; /* Card BG */
}

.page-vip-club__table-note {
  color: #A7D9B8; /* Text Secondary */
  text-align: center;
  margin-top: 20px;
  font-size: 0.9em;
}

.page-vip-club__rewards-section {
  padding: 60px 0;
  margin-bottom: 40px;
}

.page-vip-club__rewards-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-vip-club__rewards-text {
  flex: 1;
  min-width: 300px;
  color: #F2FFF6; /* Text Main */
}

.page-vip-club__rewards-text ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-vip-club__rewards-text li {
  margin-bottom: 10px;
  color: #A7D9B8; /* Text Secondary */
}

.page-vip-club__rewards-text p {
  margin-bottom: 15px;
}

.page-vip-club__rewards-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-vip-club__image-right {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 15px;
  border: 1px solid #2E7A4E; /* Border */
}

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

.page-vip-club__support-item {
  background: #0A4B2C; /* Deep Green */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-vip-club__support-title {
  color: #2AD16F; /* Green from button gradient */
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-vip-club__support-text {
  color: #A7D9B8; /* Text Secondary */
}

.page-vip-club__final-text {
  color: #A7D9B8; /* Text Secondary */
  text-align: center;
  margin-top: 40px;
  margin-bottom: 30px;
}

.page-vip-club__faq-section {
  padding: 60px 0;
  margin-bottom: 40px;
}

.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: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-vip-club__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15em;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  background-color: #0A4B2C; /* Deep Green */
  border-bottom: 1px solid #1E3A2A; /* Divider */
  transition: background-color 0.3s ease;
  list-style: none; /* 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: #13994A; /* Darker green on open */
  border-bottom: 1px solid #2AD16F;
}

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

.page-vip-club__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #F2FFF6;
}

.page-vip-club__faq-answer {
  padding: 15px 25px 20px;
  background-color: #11271B; /* Card BG */
  color: #A7D9B8; /* Text Secondary */
  font-size: 1em;
}

.page-vip-club__faq-answer p {
  margin-bottom: 10px;
}

.page-vip-club__conclusion-section {
  padding: 60px 0 80px;
  text-align: center;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-vip-club__hero-content {
    margin-top: -80px;
  }

  .page-vip-club__section-title {
    font-size: 2em;
  }

  .page-vip-club__benefits-grid, .page-vip-club__steps-grid, .page-vip-club__support-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-vip-club {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-vip-club__hero-section {
    padding-top: 10px !important;
  }

  .page-vip-club__hero-content {
    margin-top: -60px;
    padding: 30px 15px;
  }

  .page-vip-club__main-title {
    font-size: 1.8em;
  }

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

  .page-vip-club__cta-button {
    padding: 12px 25px;
    font-size: 1em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-vip-club__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-vip-club__section-title {
    font-size: 1.8em;
    margin-bottom: 15px;
  }

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

  .page-vip-club__benefits-section, .page-vip-club__join-section, .page-vip-club__levels-section, .page-vip-club__rewards-section, .page-vip-club__support-section, .page-vip-club__faq-section, .page-vip-club__conclusion-section {
    padding: 40px 0;
    margin-bottom: 20px;
  }

  .page-vip-club__benefits-grid, .page-vip-club__steps-grid, .page-vip-club__support-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-vip-club__benefit-card, .page-vip-club__step-card, .page-vip-club__support-item {
    padding: 20px;
  }

  .page-vip-club__benefit-icon {
    height: 150px;
  }

  .page-vip-club__rewards-content {
    flex-direction: column;
  }

  .page-vip-club__image-right {
    margin-top: 30px;
  }

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

  .page-vip-club__faq-answer {
    padding: 10px 20px 15px;
  }

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

  /* Table responsive */
  .page-vip-club__levels-table-wrapper {
    margin-left: -15px;
    margin-right: -15px;
    width: calc(100% + 30px);
    border-radius: 0;
  }

  .page-vip-club__levels-table th, .page-vip-club__levels-table td {
    padding: 10px;
    font-size: 0.9em;
  }

  .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-buttons,
  .page-vip-club__button-group,
  .page-vip-club__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
  
  .page-vip-club__hero-section {
    padding-top: 10px !important;
  }
}

@media (max-width: 480px) {
  .page-vip-club__main-title {
    font-size: 1.5em;
  }

  .page-vip-club__section-title {
    font-size: 1.5em;
  }
}