@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&family=Playfair+Display:wght@600;700&display=swap');
body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #F2F2F2;
  background-color: #1E1E1E;
}
/* Founder Section Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.founder-content {
  animation: fadeInUp 0.8s ease-out forwards;
}
/* Member Badge */
.member-badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #C5A244 0%, #E4C162 100%);
  color: #F2F2F2 !important;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 8px;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2), 
              inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(122, 30, 30, 0.3);
  transition: all 0.3s ease;
}

.member-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: all 0.6s ease;
}

.member-badge:hover {
  background: linear-gradient(135deg, #D97706 0%, #F59E0B 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3);
}

.member-badge:hover::before {
  left: 100%;
}

.member-badge i {
  color: #7A1E1E !important;
  margin-right: 6px;
  font-size: 0.9rem;
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(197, 162, 68, 0.4);
  }
  50% {
    box-shadow: 0 0 8px 4px rgba(197, 162, 68, 0.2);
  }
}

.member-badge {
  animation: pulseGlow 10s infinite;
}

/* Testimonial Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonial-card {
  opacity: 0;
  animation: fadeInUp 0.6s forwards;
}

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }
.testimonial-card:nth-child(4) { animation-delay: 0.4s; }
.testimonial-card:nth-child(5) { animation-delay: 0.5s; }
.testimonial-card:nth-child(6) { animation-delay: 0.6s; }
/* Mobile CTA Button Animation */
@keyframes pulseGlowMobile {
  0% {
    box-shadow: 0 0 0 0 rgba(217, 119, 6, 0.6);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(217, 119, 6, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(217, 119, 6, 0);
  }
}

.cta-button-mobile {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

.cta-button-mobile:hover {
  animation: pulseGlowMobile 2s infinite;
  transform: translateY(-2px);
}

.cta-button-mobile::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to bottom right,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.15) 50%,
    rgba(255,255,255,0) 100%
  );
  transform: rotate(30deg);
  transition: all 0.5s ease;
}

.cta-button-mobile:hover::before {
  left: 100%;
  top: 100%;
}

@media (max-width: 640px) {
  #join {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  
  .cta-button-mobile {
    padding-top: 1rem;
    padding-bottom: 1rem;
    font-size: 1rem;
  }
}
/* FAQ Section */
.faq-item {
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(122, 30, 30, 0.2);
}

.faq-answer {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  opacity: 1;
  max-height: 500px;
  padding: 1.5rem;
}

/* Force all text to use #F2F2F2 */
* {
  color: #F2F2F2 !important;
}

/* Override specific cases where !important is needed */
.text-gray-400,
.text-gray-300 {
  color: #F2F2F2 !important;
}
section {
  background-color: #1E1E1E;
}
/* VSL Video Styles */
iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
img {
  max-width: 100%;
  height: auto;
}
.drop-shadow-lg {
  filter: drop-shadow(0 4px 8px rgba(249, 115, 22, 0.3));
}

.transform-hover:hover {
  transform: scale(1.03);
  transition: transform 0.3s ease;
}
.font-serif {
  font-family: 'Playfair Display', serif;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.bg-gradient-dark {
  background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
}
.bg-gray-800\/50 {
  background-color: #1E1E1E;
  color: #F2F2F2;
}

.bg-gray-800 {
  background-color: #1E1E1E;
  color: #F2F2F2;
}
.text-orange-500 {
  color: #C5A244;
}
.bg-orange-600 {
  background-color: #C5A244;
}

.bg-orange-600:hover {
  background-color: #B5943D;
}
.border-orange-500,
.border-l-orange-500,
.border-r-orange-500,
.border-t-orange-500,
.border-b-orange-500,
.hover\\:border-orange-500:hover,
.border-orange-500\\/30,
.hover\\:border-orange-500:hover {
  border-color: #7A1E1E !important;
}
/* Animation classes */