/* Dark Theme for index-3.html - Modern Minimalist Dark */
:root{
  --bg:#0f0f14;
  --text:#e8e8ef;
  --muted:#a4a7b7;
  --primary:#6c5ce7;
  --secondary:#00d1b2;
  --accent:#ffd166;
  --surface:#4e4595;
  --card:#10131a;
  --border:rgba(255,255,255,0.08);
  --shadow:0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
}

body{
  background:var(--bg);
  color:var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.navbar{
  background:var(--card)!important;
  border-bottom:1px solid var(--border);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.hero{
  padding:6rem 0;
  background: linear-gradient(135deg, var(--surface) 0%, var(--card) 100%);
}

.section{
  padding:5rem 0;
}

.bg-surface{
  background:var(--surface);
}

.text-muted{
  color:var(--muted)!important;
}

.btn-primary{
  background:var(--primary);
  border-color:var(--primary);
  font-weight:600;
  padding:0.75rem 2rem;
  border-radius:0.75rem;
  transition: all 0.2s ease;
}

.btn-primary:hover{
  background:#5a4fcf;
  border-color:#5a4fcf;
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(108, 92, 231, 0.3);
}

.btn-outline-secondary{
  border-color:var(--border);
  color:var(--text);
  font-weight:600;
  padding:0.75rem 2rem;
  border-radius:0.75rem;
  transition: all 0.2s ease;
}

.btn-outline-secondary:hover{
  background:var(--surface);
  border-color:var(--muted);
  color:var(--text);
}

.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:1rem;
  box-shadow: var(--shadow);
  transition: all 0.2s ease;
}

.card:hover{
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.footer{
  padding:3rem 0;
  border-top:1px solid var(--border);
  background:var(--surface);
}

.badge-logos img{
  max-height:40px;
  margin:.25rem 1rem .25rem 0;
  object-fit:contain;
  filter:brightness(0) invert(1);
}

.brandmark{
  font-weight:800;
  letter-spacing:-0.025em;
}

.rounded-3{
  border-radius:1rem!important;
}

.shadow-lg{
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.2)!important;
}

.feature-icon{
  font-size:2rem;
  line-height:1;
}

.feature-icon-large{
  font-size:3rem;
  line-height:1;
  opacity:0.8;
}

.check-icon{
  color:var(--secondary);
  font-weight:bold;
  font-size:1.2rem;
}

.stats-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:2rem;
}

.stat-item{
  padding:1.5rem;
  background:var(--card);
  border-radius:1rem;
  border:1px solid var(--border);
}

.stat-number{
  font-size:2.5rem;
  font-weight:800;
  color:var(--primary);
  line-height:1;
}

.stat-label{
  font-size:0.875rem;
  color:var(--muted);
  font-weight:600;
  margin-top:0.5rem;
}

.feature-item{
  padding:1rem;
  background:var(--surface);
  border-radius:0.75rem;
  border:1px solid var(--border);
  transition: all 0.2s ease;
}

.feature-item:hover{
  background:var(--card);
  transform: translateY(-2px);
}

.game-preview{
  position:relative;
}

.game-preview::before{
  content:'';
  position:absolute;
  top:-10px;
  left:-10px;
  right:-10px;
  bottom:-10px;
  background:linear-gradient(45deg, var(--primary), var(--secondary), var(--accent));
  border-radius:1.25rem;
  z-index:-1;
  opacity:0.1;
}

@media (max-width: 768px) {
  .hero{
    padding:4rem 0;
  }
  
  .section{
    padding:3rem 0;
  }
  
  .stats-grid{
    grid-template-columns:1fr;
    gap:1rem;
  }
}
