/* style/vip-exclusive.css */
:root {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --btn-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --card-bg: #11271B;
  --bg: #08160F;
  --text-main: #F2FFF6;
  --text-secondary: #A7D9B8;
  --border-color: #2E7A4E;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green-color: #0A4B2C;
}

.page-vip-exclusive {
  background-color: var(--bg);
  color: var(--text-main);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-vip-exclusive__section-title {
  font-size: clamp(2em, 2.5vw, 3em);
  color: var(--gold-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

.page-vip-exclusive__subtitle {
  font-size: 1.8em;
  color: var(--text-main);
  text-align: center;
  margin-top: 50px;
  margin-bottom: 30px;
  font-weight: 600;
}

.page-vip-exclusive__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: var(--text-secondary);
  text-align: justify;
}

.page-vip-exclusive__list-item {
  margin-bottom: 10px;
  color: var(--text-secondary);
}

.page-vip-exclusive__list-item strong {
  color: var(--text-main);
}

.page-vip-exclusive__dark-section {
  background-color: var(--deep-green-color);
  padding: 60px 0;
}

/* Hero Section */
.page-vip-exclusive__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0 60px 0; /* body already handles header offset */
  background-color: var(--bg);
  overflow: hidden;
}

.page-vip-exclusive__hero-image-wrapper {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
}

.page-vip-exclusive__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-vip-exclusive__hero-content {
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -100px; /* Adjust to slightly overlap with image for visual flow */
  position: relative;
  z-index: 2;
  background-color: var(--deep-green-color);
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.page-vip-exclusive__main-title {
  font-size: clamp(2.5em, 4.5vw, 3.5em);
  color: var(--gold-color);
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.03em;
}

.page-vip-exclusive__hero-description {
  font-size: 1.2em;
  color: var(--text-secondary);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-vip-exclusive__cta-buttons--center {
  margin-top: 40px;
}

.page-vip-exclusive__btn-primary,
.page-vip-exclusive__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-vip-exclusive__btn-primary {
  background: var(--btn-gradient);
  color: var(--text-main);
  border: none;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-vip-exclusive__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-vip-exclusive__btn-secondary {
  background-color: transparent;
  color: var(--gold-color);
  border: 2px solid var(--gold-color);
}

.page-vip-exclusive__btn-secondary:hover {
  background-color: var(--gold-color);
  color: var(--deep-green-color);
  transform: translateY(-3px);
}

/* Introduction Section */
.page-vip-exclusive__introduction-section {
  padding: 60px 0;
}

/* Benefits Section */
.page-vip-exclusive__benefits-section {
  padding: 60px 0;
  background-color: var(--bg);
}

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

.page-vip-exclusive__card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-main);
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.page-vip-exclusive__card-icon {
  width: 200px; /* Min size 200x200 */
  height: 200px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-vip-exclusive__card-title {
  font-size: 1.5em;
  color: var(--gold-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-vip-exclusive__card-text {
  font-size: 1em;
  color: var(--text-secondary);
}

.page-vip-exclusive__table-wrapper {
  overflow-x: auto;
  margin-top: 40px;
  border: 1px solid var(--border-color);
  border-radius: 10px;
}

.page-vip-exclusive__vip-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px; /* Ensure table is readable on smaller desktops */
}

.page-vip-exclusive__vip-table th,
.page-vip-exclusive__vip-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid var(--divider-color);
  color: var(--text-secondary);
}

.page-vip-exclusive__vip-table th {
  background-color: var(--deep-green-color);
  color: var(--text-main);
  font-weight: bold;
}

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

.page-vip-exclusive__vip-table tbody tr:nth-child(even) {
  background-color: rgba(0, 0, 0, 0.1);
}

.page-vip-exclusive__vip-table tbody tr:hover {
  background-color: rgba(42, 209, 111, 0.1);
}

/* How To Join Section */
.page-vip-exclusive__how-to-join-section {
  padding: 60px 0;
}

.page-vip-exclusive__step-list {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
  margin-top: 30px;
}

.page-vip-exclusive__step-list .page-vip-exclusive__list-item {
  counter-increment: step-counter;
  margin-bottom: 20px;
  padding-left: 40px;
  position: relative;
  font-size: 1.1em;
  color: var(--text-secondary);
}

.page-vip-exclusive__step-list .page-vip-exclusive__list-item::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  background: var(--gold-color);
  color: var(--deep-green-color);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.1em;
}

.page-vip-exclusive__step-list .page-vip-exclusive__list-item a {
  color: var(--gold-color);
  text-decoration: none;
}

.page-vip-exclusive__step-list .page-vip-exclusive__list-item a:hover {
  text-decoration: underline;
}

/* Experience Section */
.page-vip-exclusive__experience-section {
  padding: 60px 0;
  background-color: var(--bg);
}

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

.page-vip-exclusive__experience-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-vip-exclusive__experience-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-vip-exclusive__experience-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-vip-exclusive__experience-item h3,
.page-vip-exclusive__experience-item p {
  padding: 20px;
}

.page-vip-exclusive__experience-title {
  font-size: 1.4em;
  color: var(--gold-color);
  margin-bottom: 10px;
  font-weight: 600;
}

.page-vip-exclusive__experience-text {
  font-size: 0.95em;
  color: var(--text-secondary);
}

/* Support Section */
.page-vip-exclusive__support-section {
  padding: 60px 0;
}

.page-vip-exclusive__support-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-vip-exclusive__support-list .page-vip-exclusive__list-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
}

.page-vip-exclusive__support-list .page-vip-exclusive__list-item::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: var(--gold-color);
  font-weight: bold;
}

/* FAQ Section */
.page-vip-exclusive__faq-section {
  padding: 60px 0;
  background-color: var(--bg);
}

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

.page-vip-exclusive__faq-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-vip-exclusive__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  list-style: none; /* For details/summary */
}

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

.page-vip-exclusive__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: var(--gold-color);
  margin-left: 15px;
}

.page-vip-exclusive__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 1em;
  color: var(--text-secondary);
}

.page-vip-exclusive__faq-item[open] .page-vip-exclusive__faq-question {
  background-color: var(--deep-green-color);
}

/* Final CTA Section */
.page-vip-exclusive__cta-final-section {
  padding: 60px 0;
  text-align: center;
}

/* Floating Buttons */
.page-vip-exclusive__floating-btn {
  position: fixed;
  right: 20px;
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1em;
  text-decoration: none;
  color: var(--text-main);
  background: var(--btn-gradient);
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.6);
  transition: all 0.3s ease;
  z-index: 1000;
  cursor: pointer;
  white-space: nowrap; /* Prevent text wrapping on desktop */
}

.page-vip-exclusive__floating-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.8);
}

.page-vip-exclusive__floating-btn--register {
  bottom: 90px;
}

.page-vip-exclusive__floating-btn--login {
  bottom: 30px;
}

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

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

  .page-vip-exclusive__container,
  .page-vip-exclusive__hero-content,
  .page-vip-exclusive__introduction-section .page-vip-exclusive__container,
  .page-vip-exclusive__benefits-section .page-vip-exclusive__container,
  .page-vip-exclusive__how-to-join-section .page-vip-exclusive__container,
  .page-vip-exclusive__experience-section .page-vip-exclusive__container,
  .page-vip-exclusive__support-section .page-vip-exclusive__container,
  .page-vip-exclusive__faq-section .page-vip-exclusive__container,
  .page-vip-exclusive__cta-final-section .page-vip-exclusive__container {
    padding-left: 15px !important;
    padding-right: 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-vip-exclusive__hero-section {
    padding: 10px 0 30px 0;
  }

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

  .page-vip-exclusive__main-title {
    font-size: 2em; /* Adjusted for mobile readability */
  }

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

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

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

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

  .page-vip-exclusive__card-icon,
  .page-vip-exclusive__experience-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-vip-exclusive__vip-table {
    min-width: 100%; /* Allow table to shrink on mobile */
  }

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

  .page-vip-exclusive__floating-btn {
    font-size: 0.9em;
    padding: 10px 20px;
    right: 15px;
    white-space: normal; /* Allow text wrapping for smaller screens */
    word-wrap: break-word;
    text-align: center;
  }

  .page-vip-exclusive__floating-btn--register {
    bottom: 80px;
  }

  .page-vip-exclusive__floating-btn--login {
    bottom: 20px;
  }
}