/* VS96 Premium Landing — Tailwind-compatible custom layer + neon casino theme */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Space+Grotesk:wght@500;700&display=swap');

:root {
  --vs96-gold: #f5c518;
  --vs96-gold-light: #ffe066;
  --vs96-red: #e63946;
  --vs96-red-dark: #c1121f;
  --vs96-purple: #7b2cbf;
  --vs96-blue: #4361ee;
  --vs96-dark: #0a0a0f;
  --vs96-dark-2: #12121a;
  --vs96-dark-3: #1a1a28;
  --vs96-glass: rgba(255, 255, 255, 0.06);
  --vs96-glass-border: rgba(255, 255, 255, 0.12);
  --vs96-glow-gold: 0 0 30px rgba(245, 197, 24, 0.45);
  --vs96-glow-red: 0 0 25px rgba(230, 57, 70, 0.4);
  --vs96-glow-purple: 0 0 35px rgba(123, 44, 191, 0.35);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'Outfit', system-ui, sans-serif;
  background: var(--vs96-dark);
  color: #e8e8f0;
  line-height: 1.7;
  overflow-x: hidden;
}

.font-display { font-family: 'Space Grotesk', 'Outfit', sans-serif; }

/* Particle background */
.particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 20%, rgba(123, 44, 191, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(67, 97, 238, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse 50% 30% at 50% 50%, rgba(245, 197, 24, 0.06) 0%, transparent 60%);
}

.particles::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 10% 20%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 30% 70%, rgba(245,197,24,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 70% 30%, rgba(230,57,70,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 80%, rgba(255,255,255,0.25) 0%, transparent 100%);
  animation: twinkle 8s ease-in-out infinite alternate;
}

@keyframes twinkle {
  0% { opacity: 0.5; }
  100% { opacity: 1; }
}

/* Glass cards */
.glass-card {
  background: var(--vs96-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--vs96-glass-border);
  border-radius: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 197, 24, 0.35);
  box-shadow: var(--vs96-glow-gold);
}

/* Neon text */
.neon-gold {
  color: var(--vs96-gold);
  text-shadow: 0 0 10px rgba(245, 197, 24, 0.6), 0 0 30px rgba(245, 197, 24, 0.3);
}

.neon-red {
  color: var(--vs96-red);
  text-shadow: 0 0 10px rgba(230, 57, 70, 0.5);
}

.gradient-text {
  background: linear-gradient(135deg, var(--vs96-gold-light) 0%, var(--vs96-gold) 40%, var(--vs96-red) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* CTA buttons */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-weight: 700;
  font-size: 1.125rem;
  text-decoration: none;
  border-radius: 9999px;
  background: linear-gradient(135deg, var(--vs96-red) 0%, var(--vs96-red-dark) 50%, var(--vs96-purple) 100%);
  color: #fff;
  border: 2px solid rgba(245, 197, 24, 0.5);
  box-shadow: var(--vs96-glow-red), inset 0 1px 0 rgba(255,255,255,0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: pulse-glow 2.5s ease-in-out infinite;
}

.btn-cta:hover {
  transform: scale(1.04);
  box-shadow: var(--vs96-glow-gold), var(--vs96-glow-red);
}

.btn-cta-secondary {
  background: transparent;
  border: 2px solid var(--vs96-gold);
  color: var(--vs96-gold);
  box-shadow: none;
  animation: none;
}

.btn-cta-secondary:hover {
  background: rgba(245, 197, 24, 0.1);
  box-shadow: var(--vs96-glow-gold);
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: var(--vs96-glow-red), inset 0 1px 0 rgba(255,255,255,0.2); }
  50% { box-shadow: 0 0 40px rgba(230, 57, 70, 0.6), var(--vs96-glow-gold); }
}

/* Hero */
.hero-section {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(10, 10, 15, 0.92) 0%,
    rgba(18, 18, 26, 0.85) 40%,
    rgba(123, 44, 191, 0.25) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-logo {
  filter: drop-shadow(0 0 25px rgba(245, 197, 24, 0.5));
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Trust badges */
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.9rem;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(245, 197, 24, 0.25);
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* Feature cards grid */
.feature-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--vs96-purple), var(--vs96-blue));
  font-size: 1.4rem;
  box-shadow: var(--vs96-glow-purple);
}

/* Game cards */
.game-card img {
  transition: transform 0.4s ease;
}

.game-card:hover img {
  transform: scale(1.05);
}

/* TOC */
.toc-nav a {
  color: var(--vs96-gold-light);
  text-decoration: none;
  border-bottom: 1px dashed rgba(245, 197, 24, 0.3);
  transition: color 0.2s;
}

.toc-nav a:hover {
  color: #fff;
  border-bottom-color: var(--vs96-gold);
}

/* FAQ */
.faq-item {
  border-left: 3px solid var(--vs96-gold);
  padding-left: 1.25rem;
}

.faq-item h3 {
  color: var(--vs96-gold-light);
}

/* Author EEAT box */
.author-box {
  border: 1px solid rgba(245, 197, 24, 0.3);
  background: linear-gradient(135deg, rgba(26, 26, 40, 0.9), rgba(18, 18, 26, 0.95));
}

/* Table */
.vs96-table {
  width: 100%;
  border-collapse: collapse;
}

.vs96-table th,
.vs96-table td {
  padding: 0.85rem 1rem;
  border: 1px solid var(--vs96-glass-border);
  text-align: left;
}

.vs96-table th {
  background: rgba(123, 44, 191, 0.25);
  color: var(--vs96-gold);
  font-weight: 700;
}

.vs96-table tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.02);
}

/* Navbar sticky */
.navbar-sticky {
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--vs96-glass-border);
}

/* Footer */
.footer-gradient {
  background: linear-gradient(180deg, var(--vs96-dark-2) 0%, #050508 100%);
  border-top: 1px solid rgba(245, 197, 24, 0.2);
}

/* Testimonial */
.testimonial-card {
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -0.5rem;
  left: 1rem;
  font-size: 4rem;
  color: var(--vs96-gold);
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 1;
}

/* Step numbers */
.step-num {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--vs96-gold), var(--vs96-red));
  color: #000;
  font-weight: 800;
  flex-shrink: 0;
}

/* Promo banner strip */
.promo-strip {
  background: linear-gradient(90deg, var(--vs96-red-dark), var(--vs96-purple), var(--vs96-blue));
  animation: shimmer 3s linear infinite;
  background-size: 200% 100%;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Responsive utilities complementing Tailwind */
@media (max-width: 768px) {
  .hero-section { min-height: 85vh; }
  .btn-cta { padding: 0.875rem 1.5rem; font-size: 1rem; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
