:root {
  --bg: #0d0d0d;
  --surface: #141414;
  --surface-2: #1b1b1b;
  --surface-3: #232323;
  --line: #262626;
  --text: #ffffff;
  --text-2: #b3b3b3;
  --text-3: #6f6f6f;
  --accent: #ff2d2d;
  --accent-hover: #e61f1f;
  --sidebar: 232px;
  --topbar: 60px;
  --player: 72px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: Inter, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; padding: 0; }
input, select, textarea { font: inherit; color: inherit; }
svg { display: block; }
h1, h2, h3 { margin: 0; font-weight: 700; letter-spacing: -.01em; }
.muted { color: var(--text-2); }
.dim { color: var(--text-3); }
.sm { font-size: 12px; }
.xs { font-size: 11px; }

/* ---------- Topbar ---------- */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; height: var(--topbar); z-index: 40;
  background: var(--bg); border-bottom: 1px solid var(--line);
  display: flex; align-items: center; padding: 0 20px; gap: 20px;
}
.brand { display: flex; align-items: center; gap: 10px; width: calc(var(--sidebar) - 20px); font-weight: 800; font-size: 17px; letter-spacing: .02em; }
.brand-mark { width: 26px; height: 26px; background: var(--accent); border-radius: 6px; position: relative; }
.brand-mark::after { content: ""; position: absolute; left: 9px; top: 7px; border-left: 10px solid #fff; border-top: 6px solid transparent; border-bottom: 6px solid transparent; }
.searchbar { flex: 1; max-width: 640px; position: relative; }
.searchbar svg { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; fill: var(--text-3); }
.searchbar input {
  width: 100%; height: 38px; background: var(--surface-2); border: 1px solid transparent; border-radius: 6px;
  padding: 0 14px 0 40px; outline: none; color: var(--text);
}
.searchbar input::placeholder { color: var(--text-3); }
.searchbar input:focus { border-color: #3a3a3a; background: var(--surface-3); }
.topbar-right { margin-left: auto; display: flex; align-items: center; gap: 8px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  height: 36px; padding: 0 16px; border-radius: 6px; font-weight: 600; font-size: 13px;
  white-space: nowrap; transition: background .12s, color .12s, border-color .12s; border: 1px solid transparent;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); }
.btn-outline { border-color: #3a3a3a; color: var(--text); }
.btn-outline:hover { border-color: #666; }
.btn-ghost { color: var(--text-2); }
.btn-ghost:hover { color: var(--text); background: var(--surface-2); }
.btn-sm { height: 30px; padding: 0 12px; font-size: 12px; }
.btn-block { width: 100%; }
.btn-price { display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; background: var(--accent); color: #fff; border-radius: 999px; height: 30px; padding: 0 14px; font-size: 12px; font-weight: 700; }
.btn-price:hover { background: var(--accent-hover); }
.btn-price svg { width: 14px; height: 14px; fill: currentColor; }

/* ---------- Sidebar ---------- */
.sidebar {
  position: fixed; top: var(--topbar); left: 0; bottom: 0; width: var(--sidebar); z-index: 30;
  background: var(--bg); border-right: 1px solid var(--line); padding: 16px 12px; overflow-y: auto;
}
.side-group { margin-bottom: 22px; }
.side-title { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--text-3); padding: 0 12px; margin-bottom: 6px; }
.side-link {
  display: flex; align-items: center; gap: 12px; height: 38px; padding: 0 12px; border-radius: 6px;
  color: var(--text-2); font-weight: 500; font-size: 14px;
}
.side-link svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.side-link:hover { color: var(--text); background: var(--surface-2); }
.side-link.active { color: var(--text); background: var(--surface-2); }
.side-link.active svg { stroke: var(--accent); }
.side-genre { display: block; padding: 6px 12px; color: var(--text-2); font-size: 13px; border-radius: 6px; }
.side-genre:hover, .side-genre.active { color: var(--text); background: var(--surface-2); }

/* ---------- Main ---------- */
.main {
  margin-left: var(--sidebar); padding: calc(var(--topbar) + 28px) 32px calc(var(--player) + 40px);
  max-width: 1500px;
}
.section { margin-bottom: 40px; }
.section-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 14px; }
.section-head h2 { font-size: 20px; }
.section-head a.more { font-size: 13px; color: var(--text-2); }
.section-head a.more:hover { color: var(--text); }

/* ---------- Cover ---------- */
.cover { position: relative; background: var(--surface-2); overflow: hidden; border-radius: 4px; flex-shrink: 0; aspect-ratio: 1; }
.cover img { width: 100%; height: 100%; object-fit: cover; }
.cover-ph { width: 100%; height: 100%; background: linear-gradient(160deg, #2a2a2a, #111); }
.cover .ov {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,.45); opacity: 0; transition: opacity .12s;
}
.cover:hover .ov, .playing .cover .ov { opacity: 1; }
.play {
  width: 40px; height: 40px; border-radius: 50%; background: #fff; color: #000;
  display: flex; align-items: center; justify-content: center; transition: transform .1s;
}
.play:hover { transform: scale(1.06); }
.play svg { width: 16px; height: 16px; fill: currentColor; }
.play.lg { width: 56px; height: 56px; background: var(--accent); color: #fff; }
.play.lg svg { width: 22px; height: 22px; }
.play.sm { width: 32px; height: 32px; }
.play.sm svg { width: 12px; height: 12px; }

/* ---------- Hero (BeatStars style banner) ---------- */
.hero {
  display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: center;
  padding: 40px 44px; margin-bottom: 40px; border-radius: 10px; background: var(--surface);
  border: 1px solid var(--line); overflow: hidden; position: relative;
}
.hero h1 { font-size: 38px; line-height: 1.1; margin-bottom: 12px; }
.hero p { color: var(--text-2); font-size: 15px; margin: 0 0 22px; max-width: 480px; }
.hero-covers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; transform: rotate(-6deg) scale(1.08); }
.hero-covers .cover { box-shadow: 0 12px 30px rgba(0,0,0,.5); }
.hero-covers .cover:nth-child(2), .hero-covers .cover:nth-child(5) { transform: translateY(18px); }

/* ---------- Trending carousel ---------- */
.carousel { display: flex; gap: 18px; overflow-x: auto; padding-bottom: 8px; scrollbar-width: none; }
.carousel::-webkit-scrollbar { display: none; }
.ccard { width: 176px; flex-shrink: 0; }
.ccard .cover { margin-bottom: 10px; border-radius: 6px; }
.ccard .ct { font-weight: 600; font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ccard .cp { color: var(--text-2); font-size: 12px; margin-top: 2px; }
.ccard .cp a:hover { color: var(--text); text-decoration: underline; }

/* ---------- Track table ---------- */
.tbl { width: 100%; border-collapse: collapse; }
.tbl th {
  text-align: left; font-size: 11px; font-weight: 600; color: var(--text-3); text-transform: uppercase; letter-spacing: .06em;
  padding: 8px 10px; border-bottom: 1px solid var(--line);
}
.tbl td { padding: 8px 10px; border-bottom: 1px solid var(--line); vertical-align: middle; }
.tbl tr:hover td { background: var(--surface); }
.tbl tr.playing td { background: var(--surface-2); }
.tbl .c-num { width: 32px; color: var(--text-3); font-size: 12px; text-align: center; }
.tbl .c-cover { width: 64px; }
.tbl .c-cover .cover { width: 48px; }
.tbl .c-title { min-width: 240px; }
.tbl .t-name { font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 420px; }
.tbl .t-name a:hover { text-decoration: underline; }
.tbl .t-by { color: var(--text-2); font-size: 12px; margin-top: 2px; }
.tbl .t-by a:hover { color: var(--text); text-decoration: underline; }
.tbl .c-tags { width: 300px; max-width: 300px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tbl .c-time, .tbl .c-bpm, .tbl .c-key, .tbl .c-date { color: var(--text-2); font-size: 13px; white-space: nowrap; width: 80px; }
.tbl .c-date { width: 110px; }
.tbl .c-act { width: 160px; text-align: right; white-space: nowrap; }
.tag {
  display: inline-block; font-size: 12px; padding: 4px 10px; border-radius: 999px; background: var(--surface-2);
  color: var(--text-2); margin: 2px 4px 2px 0;
}
.tag:hover { background: var(--surface-3); color: var(--text); }
.ib { width: 30px; height: 30px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; color: var(--text-2); vertical-align: middle; }
.ib:hover { background: var(--surface-3); color: var(--text); }
.ib svg { width: 16px; height: 16px; fill: currentColor; }
.ib.liked { color: var(--accent); }
.empty { padding: 80px 0; text-align: center; color: var(--text-2); }

/* filtreler */
.filters { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; margin-bottom: 14px; }
.filters select {
  height: 32px; background: var(--surface-2); border: 1px solid var(--line); color: var(--text-2); border-radius: 6px; padding: 0 10px; outline: none;
}
.filters select:hover { color: var(--text); border-color: #3a3a3a; }
.pill-nav { display: flex; gap: 6px; }
.pill-nav a { padding: 6px 14px; border-radius: 999px; font-size: 13px; color: var(--text-2); background: var(--surface-2); }
.pill-nav a.active, .pill-nav a:hover { background: #fff; color: #000; }

/* ---------- Beat page ---------- */
.beat-top { display: grid; grid-template-columns: 240px 1fr; gap: 32px; align-items: end; margin-bottom: 28px; }
.beat-top .cover { width: 240px; border-radius: 6px; }
.beat-top .kind { font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--text-2); margin-bottom: 8px; }
.beat-top h1 { font-size: 30px; line-height: 1.15; margin-bottom: 8px; }
.beat-top .by { font-size: 15px; color: var(--text-2); }
.beat-top .by a { color: var(--text); font-weight: 600; }
.beat-top .by a:hover { text-decoration: underline; }
.beat-meta { display: flex; gap: 20px; flex-wrap: wrap; color: var(--text-2); font-size: 13px; margin: 14px 0 18px; }
.beat-meta span b { color: var(--text); font-weight: 600; }
.beat-ctrls { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.wave { height: 56px; display: flex; align-items: center; gap: 2px; margin: 22px 0 6px; cursor: pointer; }
.wave i { flex: 1; display: block; background: #3a3a3a; border-radius: 1px; min-height: 4px; }
.wave i.on { background: var(--accent); }
.wave.demo { cursor: default; }
.beat-body { display: grid; grid-template-columns: 1fr 380px; gap: 32px; align-items: start; }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: 8px; padding: 20px; }
.card h3 { font-size: 15px; margin-bottom: 14px; }
.card + .card { margin-top: 18px; }
.desc { color: var(--text-2); white-space: pre-wrap; line-height: 1.6; }
.infotbl { width: 100%; font-size: 13px; }
.infotbl td { padding: 6px 0; border-bottom: 1px solid var(--line); }
.infotbl td:first-child { color: var(--text-3); width: 140px; }
.url-box { display: flex; gap: 8px; }
.url-box input { flex: 1; height: 34px; background: var(--surface-2); border: 1px solid var(--line); border-radius: 6px; padding: 0 10px; font-size: 12px; color: var(--text-2); outline: none; }

/* licenses */
.lic-list { display: flex; flex-direction: column; gap: 8px; }
.lic {
  display: grid; grid-template-columns: 22px 1fr auto; gap: 14px; align-items: center;
  padding: 14px 16px; border: 1px solid var(--line); border-radius: 8px; cursor: pointer; background: var(--surface-2);
}
.lic:hover { border-color: #444; }
.lic.selected { border-color: var(--accent); background: rgba(255,45,45,.06); }
.lic .radio { width: 18px; height: 18px; border-radius: 50%; border: 2px solid #555; }
.lic.selected .radio { border-color: var(--accent); background: radial-gradient(circle, var(--accent) 45%, transparent 50%); }
.lic .ln { font-weight: 600; }
.lic .lf { color: var(--text-2); font-size: 12px; margin-top: 2px; }
.lic .lp { font-weight: 700; font-size: 15px; }
.lic-total { display: flex; justify-content: space-between; align-items: center; padding: 14px 0 12px; font-size: 15px; }
.lic-total b { font-size: 22px; }
.terms { color: var(--text-2); font-size: 13px; padding-left: 18px; margin: 10px 0 0; line-height: 1.7; }
.sticky { position: sticky; top: calc(var(--topbar) + 20px); }

/* related list */
.mini { display: flex; align-items: center; gap: 12px; padding: 8px 0; border-bottom: 1px solid var(--line); }
.mini:last-child { border-bottom: 0; }
.mini .cover { width: 44px; }
.mini .mt { font-weight: 600; font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mini .mp { color: var(--text-2); font-size: 12px; }
.mini .grow { flex: 1; min-width: 0; }

/* comments */
.comment-in { display: flex; gap: 10px; }
.comment-in input { flex: 1; height: 38px; background: var(--surface-2); border: 1px solid var(--line); border-radius: 6px; padding: 0 12px; outline: none; }
.avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--surface-3); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; flex-shrink: 0; }

/* ---------- Producer / Charts ---------- */
.banner { height: 200px; border-radius: 10px; background: linear-gradient(90deg, #1a1a1a, #2a1010 60%, #1a1a1a); border: 1px solid var(--line); margin-bottom: -60px; }
.prof { display: flex; align-items: flex-end; gap: 22px; padding: 0 28px; margin-bottom: 28px; }
.prof .avatar { width: 128px; height: 128px; font-size: 44px; border: 4px solid var(--bg); background: var(--surface-3); }
.prof h1 { font-size: 30px; }
.prof .stats { display: flex; gap: 22px; color: var(--text-2); font-size: 13px; margin-top: 6px; }
.prof .stats b { color: var(--text); }
.prof .act { margin-left: auto; padding-bottom: 8px; display: flex; gap: 8px; }
.pgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
.pcard { background: var(--surface); border: 1px solid var(--line); border-radius: 8px; padding: 22px; text-align: center; }
.pcard .avatar { width: 72px; height: 72px; font-size: 26px; margin: 0 auto 12px; }
.pcard .pn { font-weight: 700; font-size: 15px; }
.pcard .ps { color: var(--text-2); font-size: 12px; margin-top: 4px; }
.rank { font-size: 18px; font-weight: 800; color: var(--text-3); width: 40px; text-align: center; }
.rank.top { color: var(--accent); }

/* ---------- Player ---------- */
.player {
  position: fixed; left: 0; right: 0; bottom: 0; height: var(--player); z-index: 50;
  background: #111; border-top: 1px solid var(--line);
  display: grid; grid-template-columns: 320px 1fr 320px; align-items: center; gap: 16px; padding: 0 16px;
  transform: translateY(100%); transition: transform .2s;
}
.player.show { transform: none; }
.player .now { display: flex; align-items: center; gap: 12px; min-width: 0; }
.player .now .cover { width: 46px; }
.player .now .nt { font-weight: 600; font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.player .now .np { color: var(--text-2); font-size: 12px; }
.player .mid { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.player .ctr { display: flex; align-items: center; gap: 16px; }
.player .ctr .ib svg { width: 18px; height: 18px; }
.player .play { width: 34px; height: 34px; }
.player .play svg { width: 14px; height: 14px; }
.player .bar { display: flex; align-items: center; gap: 10px; width: 100%; max-width: 640px; font-size: 11px; color: var(--text-2); }
.player .prog { flex: 1; height: 3px; background: #333; border-radius: 2px; cursor: pointer; position: relative; }
.player .prog:hover { height: 5px; }
.player .prog i { position: absolute; left: 0; top: 0; bottom: 0; width: 0; background: var(--accent); border-radius: 2px; }
.player .end { display: flex; align-items: center; justify-content: flex-end; gap: 12px; }
.player input[type=range] { width: 90px; accent-color: #fff; }

/* ---------- Toast / modal ---------- */
.toast {
  position: fixed; bottom: calc(var(--player) + 16px); left: 50%; transform: translate(-50%, 10px);
  background: #fff; color: #000; padding: 10px 16px; border-radius: 6px; font-size: 13px; font-weight: 600;
  opacity: 0; pointer-events: none; transition: .15s; z-index: 100;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }
.modal-bg { position: fixed; inset: 0; background: rgba(0,0,0,.75); z-index: 90; display: none; align-items: center; justify-content: center; padding: 20px; }
.modal-bg.show { display: flex; }
.modal { width: 100%; max-width: 520px; background: var(--surface); border: 1px solid var(--line); border-radius: 10px; padding: 24px; }
.modal h2 { font-size: 18px; margin-bottom: 4px; }
.modal .foot { display: flex; justify-content: flex-end; gap: 8px; margin-top: 20px; }

/* ---------- Admin ---------- */
.admin { display: grid; grid-template-columns: 440px 1fr; gap: 28px; align-items: start; }
.field { margin-bottom: 12px; }
.field label { display: block; font-size: 12px; color: var(--text-2); margin-bottom: 5px; font-weight: 500; }
.field input[type=text], .field input[type=email], .field input[type=tel], .field input[type=url], .field input[type=number], .field input[type=date], .field input[type=password], .field select, .field textarea {
  width: 100%; height: 36px; background: var(--surface-2); border: 1px solid var(--line); border-radius: 6px; padding: 0 10px; outline: none;
}
.field textarea { height: auto; min-height: 80px; padding: 8px 10px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: #444; }
.field input::placeholder, .field textarea::placeholder { color: var(--text-3); }
.field input:-webkit-autofill { -webkit-box-shadow: 0 0 0 40px var(--surface-2) inset; -webkit-text-fill-color: var(--text); }
.cols2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.cols3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
.drop { display: block; border: 1px dashed #3a3a3a; border-radius: 6px; padding: 16px; text-align: center; color: var(--text-2); cursor: pointer; font-size: 13px; }
.drop:hover { border-color: #666; color: var(--text); }
.drop input { display: none; }
.fs { border: 1px solid var(--line); border-radius: 6px; padding: 12px; margin-bottom: 12px; }
.fs legend { font-size: 12px; color: var(--text-2); padding: 0 6px; }
.flash { padding: 12px 14px; border-radius: 6px; margin-bottom: 18px; font-size: 13px; font-weight: 500; }
.flash.ok { background: #14261a; color: #6fdc8c; border: 1px solid #1f3d28; }
.flash.error { background: #2a1414; color: #ff7a7a; border: 1px solid #4a1d1d; }
.login { max-width: 360px; margin: 120px auto 0; }
.login .brand { width: auto; justify-content: center; margin-bottom: 24px; font-size: 22px; }
.status-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: #444; margin-right: 6px; }
.status-dot.on { background: #4ade80; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .tbl .c-tags, .tbl .c-key, .tbl .c-date { display: none; }
  .beat-body { grid-template-columns: 1fr; }
  .hero { grid-template-columns: 1fr; }
  .hero-covers { display: none; }
  .admin { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  :root { --sidebar: 0px; }
  .sidebar { display: none; }
  .brand { width: auto; }
  .main { padding-left: 16px; padding-right: 16px; }
  .tbl .c-time, .tbl .c-bpm, .tbl .c-num { display: none; }
  .beat-top { grid-template-columns: 1fr; }
  .beat-top .cover { width: 200px; }
  .player { grid-template-columns: 1fr auto; }
  .player .end { display: none; }
  .hero { padding: 26px 20px; }
  .hero h1 { font-size: 28px; }
}

/* ---------- Cart / checkout / orders ---------- */
.cart-btn { position: relative; width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center; border-radius: 6px; color: var(--text-2); }
.cart-btn:hover { background: var(--surface-2); color: var(--text); }
.cart-btn svg { width: 20px; height: 20px; fill: currentColor; }
.cart-n { position: absolute; top: 2px; right: 2px; min-width: 16px; height: 16px; padding: 0 4px; border-radius: 8px; background: var(--accent); color: #fff; font-size: 10px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.inline-form { display: inline; }
.checkout-grid { display: grid; grid-template-columns: 1fr 360px; gap: 24px; align-items: start; }
.cart-row { display: flex; gap: 16px; align-items: center; padding: 16px 20px; border-bottom: 1px solid var(--line); }
.cart-row:last-child { border-bottom: 0; }
.card-head { padding: 14px 20px; border-bottom: 1px solid var(--line); font-weight: 700; font-size: 15px; }
.lic-select { height: 30px; background: var(--surface-2); border: 1px solid var(--line); color: var(--text-2); border-radius: 6px; padding: 0 8px; font-size: 12px; outline: none; }
.sum-line { display: flex; justify-content: space-between; padding: 6px 0; color: var(--text-2); font-size: 13px; }
.sum-line.total { border-top: 1px solid var(--line); margin-top: 6px; padding-top: 12px; color: var(--text); font-size: 16px; font-weight: 700; }
.pay-tabs { display: flex; gap: 8px; margin-bottom: 14px; }
.pay-tab { flex: 1; display: flex; align-items: center; gap: 8px; padding: 12px 14px; border: 1px solid var(--line); border-radius: 6px; cursor: pointer; color: var(--text-2); font-weight: 500; }
.pay-tab.active { border-color: var(--accent); color: var(--text); background: rgba(255,45,45,.06); }
.pay-tab input { accent-color: var(--accent); }
.field select { width: 100%; height: 36px; background: var(--surface-2); border: 1px solid var(--line); border-radius: 6px; padding: 0 10px; outline: none; }
.order-hero { display: flex; align-items: center; gap: 18px; padding: 22px 24px; background: var(--surface); border: 1px solid var(--line); border-radius: 10px; margin-bottom: 24px; }
.ok-mark { width: 48px; height: 48px; border-radius: 50%; background: #1a9e4a; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 22px; font-weight: 800; flex-shrink: 0; }
.prod-card { display: flex; align-items: center; gap: 12px; }
.prod-card .avatar { width: 44px; height: 44px; }
.avatar { overflow: hidden; }
.avatar img { width: 100%; height: 100%; object-fit: cover; }
code { background: var(--surface-2); padding: 2px 6px; border-radius: 4px; font-size: 12px; }
@media (max-width: 1000px) { .checkout-grid { grid-template-columns: 1fr; } .order-hero { flex-wrap: wrap; } }

/* fixed column widths for track tables */
.tbl-tracks { table-layout: fixed; }
.tbl-tracks th:nth-child(1) { width: 32px; }
.tbl-tracks th:nth-child(2) { width: 64px; }
.tbl-tracks th:nth-child(4) { width: 250px; }
.tbl-tracks th:nth-child(5), .tbl-tracks th:nth-child(6) { width: 62px; }
.tbl-tracks th:nth-child(7) { width: 72px; }
.tbl-tracks th:nth-child(8) { width: 108px; }
.tbl-tracks th:nth-child(9) { width: 175px; }
.tbl-tracks .t-name { max-width: none; }
@media (max-width: 1100px) { .tbl-tracks th:nth-child(4), .tbl-tracks th:nth-child(7), .tbl-tracks th:nth-child(8) { display: none; } }

/* ---------- Producer application ---------- */
.apply-hero { padding: 8px 0 22px; }
.apply-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 24px; }
.step { display: flex; align-items: center; gap: 12px; padding: 14px 16px; background: var(--surface); border: 1px solid var(--line); border-radius: 8px; font-size: 13px; color: var(--text-2); }
.step b { width: 28px; height: 28px; border-radius: 50%; background: var(--accent); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 13px; flex-shrink: 0; }
.chk-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px 12px; }
.chk { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-2); cursor: pointer; padding: 4px 0; }
.chk input { accent-color: var(--accent); }
.status { display: inline-block; padding: 2px 8px; border-radius: 999px; font-size: 11px; font-weight: 600; }
.status.pending { background: #2a2410; color: #f5c451; }
.status.approved { background: #14261a; color: #6fdc8c; }
.status.rejected { background: #2a1414; color: #ff7a7a; }
@media (max-width: 900px) { .apply-steps { grid-template-columns: 1fr 1fr; } .chk-grid { grid-template-columns: 1fr 1fr; } }
