/* Minimal dark theme focused on mixes */
:root {
  --bg: #0b0b0f;
  --card: #121219;
  --text: #f1f1f5;
  --muted: #a7a7b3;
  --accent: #7c5cff;
  --accent-2: #05d1ff;
  --border: #1e2030;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--text); font: 16px/1.6 system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif; }

.wrap { max-width: 1100px; margin: 0 auto; padding: 1rem; }

.site-header { position: sticky; top: 0; backdrop-filter: blur(6px); background: color-mix(in oklab, var(--bg) 85%, transparent); border-bottom: 1px solid var(--border); z-index: 10; }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: .75rem; }
.brand .logo { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 10px; background: linear-gradient(135deg, var(--accent), var(--accent-2)); font-weight: 800; }
.brand h1 { font-size: 1.1rem; margin: 0; letter-spacing: .5px; }
.social a { color: var(--muted); text-decoration: none; font-weight: 600; margin-left: 1rem; }
.social a:hover { color: var(--text); }

.hero { border-bottom: 1px solid var(--border); }
.hero--tight .wrap { padding: 2.25rem 1rem; text-align: left; }
.hero h2 { font-size: clamp(1.8rem, 3vw + 1rem, 2.4rem); margin: 0 0 .4rem; }
.muted { color: var(--muted); }

.mixes .wrap { padding-top: 1rem; padding-bottom: 2rem; }
.player { border-radius: 14px; overflow: hidden; border: 1px solid var(--border); background: var(--card); }
.player.primary { margin-bottom: 1rem; }
.buttons { display: flex; gap: .75rem; margin-top: 1rem; flex-wrap: wrap; }
.btn { display: inline-block; padding: .75rem 1rem; border-radius: 10px; background: var(--text); color: var(--bg); text-decoration: none; font-weight: 700; }
.site-footer { border-top: 1px solid var(--border); }
.site-footer small { color: var(--muted); }
