/* style/vip-exclusive-services.css */

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

.page-vip-exclusive-services {
  background-color: var(--page-vip-bg-primary); /* Dark background from custom colors */
  color: var(--page-vip-text-main); /* Light text for dark background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  font-size: 16px;
}

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

/* Section Styles */
.page-vip-exclusive-services__hero-section,
.page-vip-exclusive-services__why-vip-section,
.page-vip-exclusive-services__vip-tiers-section,
.page-vip-exclusive-services__exclusive-games-section,
.page-vip-exclusive-services__how-to-join-section,
.page-vip-exclusive-services__faq-section,
.page-vip-exclusive-services__cta-section {
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-vip-exclusive-services__hero-section {
  padding-top: 10px; /* Small top padding as body already handles header offset */
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--page-vip-text-main);
}

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

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

.page-vip-exclusive-services__hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative; /* Ensure content is above any background effects */
  z-index: 2; /* Ensure text is above image (if any unintentional overlap) */
}

.page-vip-exclusive-services__hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--page-vip-gold);
  line-height: 1.2;
  letter-spacing: 1px;
}

.page-vip-exclusive-services__hero-description {
  font-size: 1.25rem;
  margin-bottom: 40px;
  color: var(--page-vip-text-secondary);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-vip-exclusive-services__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--page-vip-text-main);
  position: relative;
  padding-bottom: 15px;
}

.page-vip-exclusive-services__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--page-vip-gold);
  border-radius: 2px;
}

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

/* Buttons */
.page-vip-exclusive-services__hero-cta-buttons,
.page-vip-exclusive-services__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-vip-exclusive-services__btn-primary,
.page-vip-exclusive-services__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  cursor: pointer;
  box-sizing: border-box;
}

.page-vip-exclusive-services__btn-primary {
  background: var(--page-vip-btn-gradient);
  color: #ffffff; /* White text for contrast */
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-vip-exclusive-services__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

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

.page-vip-exclusive-services__btn-secondary:hover {
  background-color: var(--page-vip-gold);
  color: var(--page-vip-bg-primary);
  transform: translateY(-2px);
}

/* Why VIP Section */
.page-vip-exclusive-services__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-vip-exclusive-services__benefit-card {
  background-color: var(--page-vip-bg-card);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease;
  border: 1px solid var(--page-vip-border);
}

.page-vip-exclusive-services__benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-vip-exclusive-services__benefit-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-vip-exclusive-services__benefit-title {
  font-size: 1.4rem;
  color: var(--page-vip-text-main);
  margin-bottom: 15px;
}

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

.page-vip-exclusive-services__benefit-text a {
  color: var(--page-vip-gold);
  text-decoration: none;
}

.page-vip-exclusive-services__benefit-text a:hover {
  text-decoration: underline;
}

/* VIP Tiers Section */
.page-vip-exclusive-services__image-wrapper {
  margin: 40px auto;
  max-width: 1000px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

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

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

.page-vip-exclusive-services__tier-card {
  background-color: var(--page-vip-bg-card);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: left;
  border: 1px solid var(--page-vip-border);
}

.page-vip-exclusive-services__tier-title {
  font-size: 1.5rem;
  color: var(--page-vip-gold);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.page-vip-exclusive-services__tier-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 3px;
  background-color: var(--page-vip-deep-green);
  border-radius: 2px;
}

.page-vip-exclusive-services__tier-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-vip-exclusive-services__tier-features li {
  color: var(--page-vip-text-secondary);
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.page-vip-exclusive-services__tier-features li::before {
  content: '✓';
  color: var(--page-vip-glow);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Exclusive Games Section */
.page-vip-exclusive-services__feature-list {
  list-style: none;
  padding: 0;
  margin: 50px auto;
  max-width: 800px;
  text-align: left;
}

.page-vip-exclusive-services__feature-list li {
  background-color: var(--page-vip-bg-card);
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  color: var(--page-vip-text-main);
  font-size: 1.1rem;
  border-left: 5px solid var(--page-vip-gold);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-vip-exclusive-services__feature-list li strong {
  color: var(--page-vip-gold);
}

.page-vip-exclusive-services__feature-list li a {
  color: var(--page-vip-glow);
  text-decoration: none;
}

.page-vip-exclusive-services__feature-list li a:hover {
  text-decoration: underline;
}

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

.page-vip-exclusive-services__step-card {
  background-color: var(--page-vip-bg-card);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  border: 1px solid var(--page-vip-border);
}

.page-vip-exclusive-services__step-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--page-vip-gold);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  padding: 0 10px;
}

.page-vip-exclusive-services__step-number::before,
.page-vip-exclusive-services__step-number::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30px;
  height: 2px;
  background-color: var(--page-vip-gold);
}

.page-vip-exclusive-services__step-number::before {
  left: -20px;
}

.page-vip-exclusive-services__step-number::after {
  right: -20px;
}

.page-vip-exclusive-services__step-title {
  font-size: 1.4rem;
  color: var(--page-vip-text-main);
  margin-bottom: 15px;
}

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

.page-vip-exclusive-services__step-text a {
  color: var(--page-vip-glow);
  text-decoration: none;
}

.page-vip-exclusive-services__step-text a:hover {
  text-decoration: underline;
}

/* FAQ Section */
.page-vip-exclusive-services__faq-list {
  max-width: 900px;
  margin: 50px auto;
  text-align: left;
}

.page-vip-exclusive-services__faq-item {
  background-color: var(--page-vip-bg-card);
  border: 1px solid var(--page-vip-border);
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.page-vip-exclusive-services__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--page-vip-text-main);
  cursor: pointer;
  list-style: none;
  outline: none;
}

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

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

.page-vip-exclusive-services__faq-qtext {
  color: var(--page-vip-text-main);
}

.page-vip-exclusive-services__faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--page-vip-gold);
  margin-left: 15px;
  transition: transform 0.3s ease;
}

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

.page-vip-exclusive-services__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 1rem;
  color: var(--page-vip-text-secondary);
  line-height: 1.6;
}

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

.page-vip-exclusive-services__faq-answer a {
  color: var(--page-vip-glow);
  text-decoration: none;
}

.page-vip-exclusive-services__faq-answer a:hover {
  text-decoration: underline;
}

/* General link styling for content areas */
.page-vip-exclusive-services a {
  color: var(--page-vip-glow);
  text-decoration: none;
}

.page-vip-exclusive-services a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-vip-exclusive-services__hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
  }

  .page-vip-exclusive-services__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  }

  .page-vip-exclusive-services__benefits-grid,
  .page-vip-exclusive-services__tiers-grid,
  .page-vip-exclusive-services__steps-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

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

  .page-vip-exclusive-services__hero-section,
  .page-vip-exclusive-services__why-vip-section,
  .page-vip-exclusive-services__vip-tiers-section,
  .page-vip-exclusive-services__exclusive-games-section,
  .page-vip-exclusive-services__how-to-join-section,
  .page-vip-exclusive-services__faq-section,
  .page-vip-exclusive-services__cta-section {
    padding: 60px 0;
  }

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

  .page-vip-exclusive-services__container {
    padding-left: 15px;
    padding-right: 15px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-vip-exclusive-services__hero-image,
  .page-vip-exclusive-services__main-image,
  .page-vip-exclusive-services__benefit-icon,
  .page-vip-exclusive-services img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-vip-exclusive-services__hero-image-wrapper,
  .page-vip-exclusive-services__image-wrapper,
  .page-vip-exclusive-services__benefit-card,
  .page-vip-exclusive-services__tier-card,
  .page-vip-exclusive-services__step-card,
  .page-vip-exclusive-services__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    margin-left: auto;
    margin-right: auto;
  }

  .page-vip-exclusive-services__hero-cta-buttons,
  .page-vip-exclusive-services__cta-buttons {
    flex-direction: column;
    gap: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 15px;
  }

  .page-vip-exclusive-services__btn-primary,
  .page-vip-exclusive-services__btn-secondary,
  .page-vip-exclusive-services a[class*="button"],
  .page-vip-exclusive-services 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: 15px 10px; /* Adjust padding for smaller screens */
  }

  .page-vip-exclusive-services__section-title::after {
    width: 60px;
  }

  .page-vip-exclusive-services__tier-title::after {
    width: 40px;
  }

  .page-vip-exclusive-services__step-number::before,
  .page-vip-exclusive-services__step-number::after {
    width: 20px;
  }
}

@media (max-width: 480px) {
  .page-vip-exclusive-services__hero-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .page-vip-exclusive-services__section-title {
    font-size: clamp(1.6rem, 5.5vw, 2.2rem);
  }

  .page-vip-exclusive-services__hero-description {
    font-size: 1rem;
  }

  .page-vip-exclusive-services__faq-item summary {
    font-size: 1rem;
    padding: 15px;
  }

  .page-vip-exclusive-services__faq-answer {
    padding: 0 15px 15px 15px;
  }
}