:root {
  --bg: #16111f;
  --panel: rgba(255,255,255,0.04);
  --border: rgba(255,255,255,0.09);
  --text: #f3eefc;
  --muted: #a99bc2;
  --accent: #a98bff;
  --accent-2: #8b5cf6;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; min-height: 100vh; color: var(--text);
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif; font-size: 16px;
  background: radial-gradient(900px 600px at 15% 0%, rgba(139,92,246,0.18), transparent 60%), var(--bg);
}
a { color: inherit; text-decoration: none; }

.nav {
  position: sticky; top: 0; z-index: 10;
  display: flex; justify-content: space-between; align-items: center; padding: 12px 24px;
  background: rgba(22,17,31,0.9); border-bottom: 1px solid var(--border);
}
.brand { font-size: 22px; font-weight: 800; letter-spacing: -.5px; }
.brand span, .hero h1 span { color: var(--accent); }
.nav nav { display: flex; gap: 8px; }
.pill { padding: 6px 14px; border-radius: 999px; font-size: 15px; font-weight: 600; border: 1px solid var(--border); color: var(--muted); }
.pill:hover { color: var(--text); }
.pill.primary { background: var(--accent-2); color: #fff; border-color: transparent; }

main { max-width: 1100px; margin: 0 auto; padding: 0 20px 80px; }
.hero { text-align: center; padding: 56px 0 40px; }
.hero h1 { font-weight: 800; font-size: clamp(48px, 8vw, 84px); margin: 0; letter-spacing: -3px; line-height: 1.05;
  text-shadow: 0 0 18px rgba(169,139,255,0.65), 0 0 50px rgba(139,92,246,0.55), 0 0 90px rgba(139,92,246,0.35); }
.hero h1 span { text-shadow: 0 0 20px rgba(169,139,255,0.9), 0 0 60px rgba(139,92,246,0.7); }
.hero p { margin: 10px 0 0; color: var(--muted); font-size: 20px; text-shadow: 0 0 14px rgba(169,139,255,0.35); }
.list-head h2 { text-shadow: 0 0 16px rgba(169,139,255,0.45); }
.brand { text-shadow: 0 0 14px rgba(169,139,255,0.5); }

.list-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 14px; }
.list-head h2 { margin: 0; font-size: 26px; font-weight: 700; }
.list-head span { color: var(--muted); font-size: 14px; }

.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 22px; }
.card { box-shadow: 0 0 30px rgba(139,92,246,0.18); border-radius: 16px; overflow: hidden; background: var(--panel); border: 1px solid var(--border); transition: transform .15s; }
.card:hover { transform: translateY(-3px); }
.thumb { position: relative; display: block; aspect-ratio: 1; background-size: cover; background-position: 70% center; }
.badge { position: absolute; top: 10px; left: 10px; padding: 3px 9px; border-radius: 999px; font-size: 13px; font-weight: 600; background: rgba(20,14,30,0.8); color: #ffd66b; }
.body { padding: 16px 18px 18px; }
.body h3 { margin: 0 0 6px; font-size: 26px; font-weight: 700; }
.body p { margin: 0 0 12px; font-size: 15px; color: var(--muted); line-height: 1.3; }
.chips { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.chip { font-size: 13px; font-weight: 600; padding: 2px 9px; border-radius: 999px; background: rgba(255,255,255,0.06); }
.play { display: block; text-align: center; padding: 12px; border-radius: 10px; font-size: 20px; font-weight: 700; background: var(--accent-2); color: #fff; box-shadow: 0 0 18px rgba(139,92,246,0.5); }
.play:hover { background: #9b72ff; }
