* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; background: #0a0a0f; color: #e0e0e0; }
.accent { color: #00c8ff; }

.header { background: rgba(10,10,15,0.95); border-bottom: 1px solid #1a1a2e; padding: 16px 0; position: sticky; top: 0; z-index: 100; backdrop-filter: blur(10px); }
.header .container { display: flex; align-items: center; justify-content: space-between; }
.logo { font-size: 22px; font-weight: 700; color: #fff; }
nav { display: flex; align-items: center; gap: 24px; }
nav a { color: #aaa; text-decoration: none; font-size: 15px; transition: color .2s; }
nav a:hover { color: #fff; }
.btn-outline { border: 1px solid #333; border-radius: 8px; padding: 8px 18px; }
.btn-primary { background: #00c8ff; color: #000 !important; border-radius: 8px; padding: 8px 18px; font-weight: 600; }
.btn-primary:hover { background: #00aadd; }

.hero { padding: 90px 0 70px; text-align: center; background: radial-gradient(ellipse at 50% 0%, rgba(0,200,255,0.08) 0%, transparent 60%); }
.hero-badge { display: inline-block; background: rgba(0,200,255,0.1); border: 1px solid rgba(0,200,255,0.3); color: #00c8ff; border-radius: 20px; padding: 6px 16px; font-size: 13px; margin-bottom: 24px; }
h1 { font-size: 56px; font-weight: 800; line-height: 1.1; color: #fff; margin-bottom: 20px; }
.hero-sub { font-size: 18px; color: #888; max-width: 560px; margin: 0 auto 36px; line-height: 1.6; }
.hero-btns { display: flex; gap: 16px; justify-content: center; margin-bottom: 60px; }
.btn-lg { padding: 14px 32px; font-size: 16px; border-radius: 10px; text-decoration: none; font-weight: 600; }
.btn-ghost { border: 1px solid #333; color: #ddd; transition: border-color .2s; }
.btn-ghost:hover { border-color: #666; }
.hero-stats { display: flex; gap: 48px; justify-content: center; }
.stat { display: flex; flex-direction: column; align-items: center; }
.stat-n { font-size: 28px; font-weight: 700; color: #fff; }
.stat-l { font-size: 13px; color: #666; margin-top: 4px; }

.games { padding: 80px 0; }
h2 { font-size: 36px; font-weight: 700; color: #fff; margin-bottom: 40px; text-align: center; }
.games-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.game-card { border-radius: 12px; padding: 24px; min-height: 160px; display: flex; flex-direction: column; justify-content: space-between; border: 1px solid rgba(255,255,255,0.06); cursor: pointer; transition: transform .2s, border-color .2s; }
.game-card:hover { transform: translateY(-4px); border-color: rgba(0,200,255,0.2); }
.game-genre { font-size: 11px; font-weight: 700; color: #00c8ff; letter-spacing: 2px; }
.game-title { font-size: 18px; font-weight: 600; color: #fff; line-height: 1.3; }

.features { padding: 80px 0; background: #0d0d15; }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature-card { background: #111118; border: 1px solid #1a1a2e; border-radius: 12px; padding: 28px 24px; }
.feature-icon { font-size: 32px; margin-bottom: 16px; }
.feature-card h3 { font-size: 17px; font-weight: 600; color: #fff; margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: #777; line-height: 1.6; }

.faq { padding: 80px 0; }
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #111118; border: 1px solid #1a1a2e; border-radius: 10px; padding: 20px 24px; }
.faq-q { font-size: 16px; font-weight: 600; color: #fff; margin-bottom: 10px; }
.faq-a { font-size: 14px; color: #777; line-height: 1.6; }

.footer { border-top: 1px solid #1a1a2e; padding: 40px 0; }
.footer .container { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.footer-logo { font-size: 18px; font-weight: 700; color: #555; }
.footer-links { display: flex; gap: 32px; }
.footer-links a { color: #555; text-decoration: none; font-size: 13px; }
.footer-links a:hover { color: #888; }
.footer-copy { font-size: 12px; color: #444; }

@media (max-width: 768px) {
  h1 { font-size: 34px; }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { gap: 24px; }
  nav .btn-outline, nav .btn-primary { display: none; }
}
