/* ============ DJ CRIT ============ */
:root {
  --bg: #07070b;
  --bg2: #0d0d15;
  --panel: #10101a;
  --line: rgba(255, 255, 255, 0.08);
  --text: #f2f2f7;
  --dim: #8d8da0;
  --acid: #ccff33;
  --acid-dim: rgba(204, 255, 51, 0.14);
  --pink: #ff2d95;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Space Grotesk", system-ui, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
  padding-bottom: 90px; /* room for sticky player */
}

::selection { background: var(--acid); color: #000; }

/* film-grain overlay */
.noise {
  position: fixed; inset: 0; z-index: 40; pointer-events: none; opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
}

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 28px;
  background: linear-gradient(rgba(7, 7, 11, 0.92), rgba(7, 7, 11, 0.75) 70%, transparent);
  backdrop-filter: blur(8px);
}
.nav-logo {
  font-family: "Unbounded", sans-serif; font-weight: 900; font-size: 18px;
  color: var(--text); text-decoration: none; letter-spacing: 0.06em;
}
.nav-logo:hover { color: var(--acid); }
.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-links a {
  color: var(--dim); text-decoration: none; font-weight: 700; font-size: 13px;
  letter-spacing: 0.14em; transition: color 0.15s;
}
.nav-links a:hover { color: var(--acid); }
.nav-sc { display: inline-flex; }

/* ---------- hero ---------- */
.hero {
  min-height: 92vh; display: flex; flex-direction: column; justify-content: center;
  position: relative;
  background:
    radial-gradient(ellipse 70% 45% at 50% 0%, rgba(204, 255, 51, 0.09), transparent),
    radial-gradient(ellipse 45% 35% at 85% 85%, rgba(255, 45, 149, 0.08), transparent),
    var(--bg);
}
.hero-inner { padding: 120px 28px 60px; max-width: 1100px; margin: 0 auto; width: 100%; }
.hero-kicker {
  color: var(--dim); font-size: 12px; font-weight: 700; letter-spacing: 0.3em;
  margin-bottom: 18px;
}
.hero-title {
  font-family: "Unbounded", sans-serif; font-weight: 900;
  font-size: clamp(64px, 16vw, 190px);
  line-height: 0.92; letter-spacing: -0.01em;
}
.hero-line { display: block; }
.hero-crit {
  color: var(--acid);
  text-shadow:
    0 0 18px rgba(204, 255, 51, 0.55),
    0 0 70px rgba(204, 255, 51, 0.28);
  position: relative;
  animation: flicker 7s infinite;
}
@keyframes flicker {
  0%, 91%, 94%, 100% { opacity: 1; }
  92%, 93% { opacity: 0.65; }
}
.hero-tag { margin-top: 26px; color: var(--dim); font-size: clamp(15px, 2vw, 19px); }
.hero-tag em { color: var(--text); font-style: normal; border-bottom: 2px solid var(--acid); }

.hero-cta { display: flex; gap: 14px; margin-top: 38px; flex-wrap: wrap; }
.btn {
  font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 14px;
  letter-spacing: 0.1em; padding: 15px 28px; border-radius: 4px;
  cursor: pointer; text-decoration: none; border: none; transition: all 0.15s;
}
.btn-acid { background: var(--acid); color: #0a0a00; }
.btn-acid:hover { box-shadow: 0 0 30px rgba(204, 255, 51, 0.5); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--line); }
.btn-ghost:hover { border-color: var(--acid); color: var(--acid); }

/* ticker */
.ticker {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  overflow: hidden; padding: 12px 0; background: var(--bg2);
}
.ticker-track {
  display: flex; width: max-content;
  animation: ticker 28s linear infinite;
  font-family: "Unbounded", sans-serif; font-weight: 700; font-size: 13px;
  color: var(--dim); letter-spacing: 0.2em; white-space: nowrap;
}
@keyframes ticker { to { transform: translateX(-50%); } }

/* ---------- sections ---------- */
main { max-width: 1100px; margin: 0 auto; padding: 0 28px; }
.section-title {
  font-family: "Unbounded", sans-serif; font-weight: 700;
  font-size: clamp(26px, 4vw, 40px); letter-spacing: 0.02em;
  margin: 90px 0 36px;
}
.accent { color: var(--acid); }

/* ---------- mix cards ---------- */
.mix-list { display: flex; flex-direction: column; gap: 18px; }

.mix-card {
  display: grid; grid-template-columns: 128px 1fr; gap: 22px;
  background: var(--panel); border: 1px solid var(--line); border-radius: 10px;
  padding: 20px; transition: border-color 0.2s, transform 0.2s;
  position: relative;
}
.mix-card:hover { border-color: rgba(255, 255, 255, 0.2); transform: translateY(-2px); }
.mix-card.featured { border-color: var(--acid-dim); background: linear-gradient(120deg, rgba(204,255,51,0.05), var(--panel) 45%); }
.mix-card.playing { border-color: var(--mix-accent, var(--acid)); }

.mix-badge {
  position: absolute; top: -10px; left: 18px;
  background: var(--acid); color: #0a0a00; font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em; padding: 3px 10px; border-radius: 3px;
}

.mix-art { width: 128px; height: 128px; border-radius: 6px; overflow: hidden; flex-shrink: 0; }
.mix-art svg { display: block; width: 100%; height: 100%; }

.mix-body { min-width: 0; display: flex; flex-direction: column; gap: 8px; }
.mix-top { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.mix-title { font-family: "Unbounded", sans-serif; font-weight: 700; font-size: 19px; }
.mix-meta { color: var(--dim); font-size: 13px; letter-spacing: 0.06em; }
.mix-tags { display: flex; gap: 6px; }
.mix-tag {
  font-size: 10px; font-weight: 700; letter-spacing: 0.14em; color: var(--mix-accent, var(--acid));
  border: 1px solid currentColor; border-radius: 3px; padding: 2px 7px; opacity: 0.9;
}
.mix-blurb { color: var(--dim); font-size: 14px; }

.mix-controls { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.mix-play {
  width: 46px; height: 46px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--mix-accent, var(--acid)); color: #0a0a0a;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: transform 0.12s, box-shadow 0.12s;
}
.mix-play:hover { transform: scale(1.08); box-shadow: 0 0 22px var(--mix-accent, var(--acid)); }
.mix-wave { flex: 1; height: 52px; cursor: pointer; min-width: 0; }
.mix-time { color: var(--dim); font-size: 12px; font-variant-numeric: tabular-nums; white-space: nowrap; }

/* ---------- links ---------- */
.link-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
.link-tile {
  display: flex; align-items: center; gap: 18px;
  background: var(--panel); border: 1px solid var(--line); border-radius: 10px;
  padding: 26px; text-decoration: none; color: var(--text);
  transition: border-color 0.2s, transform 0.2s;
}
.link-tile strong { font-family: "Unbounded", sans-serif; font-size: 15px; letter-spacing: 0.06em; display: block; }
.link-tile span { color: var(--dim); font-size: 13px; }
.link-sc:hover { border-color: #ff5500; transform: translateY(-3px); }
.link-sc svg { color: #ff5500; flex-shrink: 0; }
.tile-arrow { margin-left: auto; font-size: 20px; color: var(--dim); }
.link-sc:hover .tile-arrow { color: #ff5500; }
.link-soon { opacity: 0.45; border-style: dashed; flex-direction: column; align-items: flex-start; gap: 4px; }

/* ---------- footer ---------- */
.footer {
  margin-top: 100px; padding: 34px 28px; border-top: 1px solid var(--line);
  display: flex; justify-content: center; gap: 14px;
  color: var(--dim); font-size: 12px; letter-spacing: 0.18em; font-weight: 700;
}
.footer-dot { color: var(--acid); }

/* ---------- sticky player ---------- */
.player[hidden] { display: none; }
.player {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 60;
  display: flex; align-items: center; gap: 16px;
  background: rgba(13, 13, 21, 0.96); backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  padding: 12px 22px;
  animation: playerIn 0.25s ease;
}
@keyframes playerIn { from { transform: translateY(100%); } }
.player-art { width: 48px; height: 48px; border-radius: 5px; overflow: hidden; flex-shrink: 0; }
.player-art svg { display: block; width: 100%; height: 100%; }
.player-info { min-width: 0; }
.player-info strong { display: block; font-size: 14px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.player-info span { color: var(--dim); font-size: 12px; font-variant-numeric: tabular-nums; }
.player-btn {
  width: 44px; height: 44px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--acid); color: #0a0a0a; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.player-btn:hover { box-shadow: 0 0 18px rgba(204, 255, 51, 0.5); }
.player-wave { flex: 1; height: 42px; cursor: pointer; min-width: 0; }

/* ---------- mobile ---------- */
@media (max-width: 640px) {
  .nav { padding: 12px 18px; }
  .hero-inner { padding: 100px 18px 50px; }
  main { padding: 0 18px; }
  .mix-card { grid-template-columns: 84px 1fr; gap: 14px; padding: 16px; }
  .mix-art { width: 84px; height: 84px; }
  .mix-title { font-size: 16px; }
  .mix-blurb { display: none; }
  .mix-wave { height: 44px; }
  .player-wave { display: none; }
  .player-info { flex: 1; }
  body { padding-bottom: 76px; }
}
