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

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

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

.page-promotions-vip-exclusive__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  margin-bottom: 30px;
}

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

.page-promotions-vip-exclusive__hero-content {
  text-align: center;
  max-width: 900px;
  z-index: 1;
  color: var(--text-main);
}

.page-promotions-vip-exclusive__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--gold);
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-promotions-vip-exclusive__hero-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: var(--text-secondary);
}

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

.page-promotions-vip-exclusive__btn-primary,
.page-promotions-vip-exclusive__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-promotions-vip-exclusive__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

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

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

.page-promotions-vip-exclusive__btn-secondary:hover {
  background: rgba(46, 122, 78, 0.2);
  color: var(--glow);
}

/* General Section Styling */
.page-promotions-vip-exclusive__benefits-section,
.page-promotions-vip-exclusive__tiers-section,
.page-promotions-vip-exclusive__how-to-join-section,
.page-promotions-vip-exclusive__faq-section,
.page-promotions-vip-exclusive__cta-final-section {
  padding: 60px 0;
  background-color: var(--background);
}

.page-promotions-vip-exclusive__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: var(--text-main);
}

.page-promotions-vip-exclusive__section-description {
  font-size: 1.1rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: var(--text-secondary);
}

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

.page-promotions-vip-exclusive__benefit-card {
  background-color: var(--card-bg);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease;
  color: var(--text-main);
}

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

.page-promotions-vip-exclusive__benefit-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 50%;
  border: 2px solid var(--glow);
}

.page-promotions-vip-exclusive__benefit-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--glow);
}

.page-promotions-vip-exclusive__benefit-text {
  font-size: 1rem;
  color: var(--text-secondary);
}

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

.page-promotions-vip-exclusive__tier-card {
  background-color: var(--card-bg);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
  color: var(--text-main);
}

.page-promotions-vip-exclusive__tier-badge {
  width: 150px;
  height: auto;
  margin-bottom: 20px;
}

.page-promotions-vip-exclusive__tier-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--gold);
}

.page-promotions-vip-exclusive__tier-benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  font-size: 1rem;
  color: var(--text-secondary);
}

.page-promotions-vip-exclusive__tier-benefits-list li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.page-promotions-vip-exclusive__tier-benefits-list li::before {
  content: '✓';
  color: var(--glow);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-promotions-vip-exclusive__tier-note {
  text-align: center;
  margin-top: 40px;
  font-size: 1rem;
  color: var(--text-secondary);
}

.page-promotions-vip-exclusive__tier-note a {
  color: var(--glow);
  text-decoration: none;
  font-weight: 600;
}

.page-promotions-vip-exclusive__tier-note a:hover {
  text-decoration: underline;
}

/* How to Join Section */
.page-promotions-vip-exclusive__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-promotions-vip-exclusive__step-card {
  background-color: var(--card-bg);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
  color: var(--text-main);
}

.page-promotions-vip-exclusive__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(42, 209, 111, 0.4);
}

.page-promotions-vip-exclusive__step-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--glow);
}

.page-promotions-vip-exclusive__step-text {
  font-size: 1rem;
  color: var(--text-secondary);
}

.page-promotions-vip-exclusive__step-text a {
  color: var(--glow);
  text-decoration: none;
  font-weight: 600;
}

.page-promotions-vip-exclusive__step-text a:hover {
  text-decoration: underline;
}

.page-promotions-vip-exclusive__cta-bottom {
  text-align: center;
  margin-top: 40px;
}

/* FAQ Section */
.page-promotions-vip-exclusive__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

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

.page-promotions-vip-exclusive__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  background-color: var(--deep-green);
  color: var(--text-main);
  border-bottom: 1px solid var(--divider);
}

.page-promotions-vip-exclusive__faq-item[open] > .page-promotions-vip-exclusive__faq-question {
  border-bottom: 1px solid transparent; /* No border when open */
}

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

.page-promotions-vip-exclusive__faq-question .page-promotions-vip-exclusive__faq-toggle {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--gold);
  transition: transform 0.3s ease;
}

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

.page-promotions-vip-exclusive__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  color: var(--text-secondary);
  background-color: var(--card-bg);
}

/* Final CTA Section */
.page-promotions-vip-exclusive__cta-final-section {
  text-align: center;
  padding-bottom: 80px;
  background-color: var(--background);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions-vip-exclusive__hero-content {
    padding: 0 15px;
  }
}

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

  .page-promotions-vip-exclusive__container {
    padding: 0 15px;
  }

  .page-promotions-vip-exclusive__hero-section {
    padding-bottom: 40px;
  }

  .page-promotions-vip-exclusive__main-title {
    font-size: 2rem;
  }

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

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

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

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

  .page-promotions-vip-exclusive__section-description {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }

  .page-promotions-vip-exclusive__benefits-grid,
  .page-promotions-vip-exclusive__tiers-grid,
  .page-promotions-vip-exclusive__steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-promotions-vip-exclusive__benefits-section,
  .page-promotions-vip-exclusive__tiers-section,
  .page-promotions-vip-exclusive__how-to-join-section,
  .page-promotions-vip-exclusive__faq-section,
  .page-promotions-vip-exclusive__cta-final-section {
    padding: 40px 0;
  }

  .page-promotions-vip-exclusive__benefit-card,
  .page-promotions-vip-exclusive__tier-card,
  .page-promotions-vip-exclusive__step-card {
    padding: 25px;
  }

  .page-promotions-vip-exclusive__benefit-icon {
    width: 80px;
    height: 80px;
  }

  .page-promotions-vip-exclusive__benefit-title {
    font-size: 1.3rem;
  }

  .page-promotions-vip-exclusive__tier-title {
    font-size: 1.5rem;
  }

  .page-promotions-vip-exclusive__step-number {
    width: 50px;
    height: 50px;
    font-size: 1.8rem;
  }

  .page-promotions-vip-exclusive__step-title {
    font-size: 1.3rem;
  }

  .page-promotions-vip-exclusive__faq-question {
    padding: 15px 20px;
    font-size: 1.1rem;
  }

  .page-promotions-vip-exclusive__faq-answer {
    padding: 15px 20px;
  }

  /* Mobile image and video responsive adaptation */
  .page-promotions-vip-exclusive img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-promotions-vip-exclusive__hero-image-wrapper,
  .page-promotions-vip-exclusive__benefits-section,
  .page-promotions-vip-exclusive__tiers-section,
  .page-promotions-vip-exclusive__how-to-join-section,
  .page-promotions-vip-exclusive__faq-section,
  .page-promotions-vip-exclusive__cta-final-section,
  .page-promotions-vip-exclusive__container,
  .page-promotions-vip-exclusive__benefit-card,
  .page-promotions-vip-exclusive__tier-card,
  .page-promotions-vip-exclusive__step-card,
  .page-promotions-vip-exclusive__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-promotions-vip-exclusive__hero-section {
    padding-top: 10px !important; /* body already handles --header-offset */
  }
}

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

/* Ensure contrast for all text elements */
.page-promotions-vip-exclusive h1, .page-promotions-vip-exclusive h2, .page-promotions-vip-exclusive h3, .page-promotions-vip-exclusive h4, .page-promotions-vip-exclusive h5, .page-promotions-vip-exclusive h6 {
  color: var(--text-main);
}

.page-promotions-vip-exclusive p {
  color: var(--text-secondary);
}

.page-promotions-vip-exclusive__dark-section {
  background: var(--deep-green);
  color: var(--text-main);
}