    @font-face {
      font-family: "Cormorant Garamond";
      src: url("/fonts/CormorantGaramond-Variable.ttf") format("truetype");
      font-style: normal;
      font-weight: 400 700;
      font-display: swap;
    }

    @font-face {
      font-family: "Space Grotesk";
      src: url("/fonts/SpaceGrotesk-Variable.ttf") format("truetype");
      font-style: normal;
      font-weight: 300 700;
      font-display: swap;
    }

    :root {
      color-scheme: dark;
      --bg: #0a0a0f;
      --bg-ink: #050507;
      --panel: rgba(15, 15, 24, 0.85);
      --panel-strong: rgba(18, 18, 28, 0.95);
      --panel-border: rgba(255, 255, 255, 0.08);
      --text: #f2eee8;
      --muted: #b7aea2;
      --accent: #d97757;
      --accent-soft: rgba(217, 119, 87, 0.2);
      --glow: rgba(217, 119, 87, 0.5);
    }

    * {
      box-sizing: border-box;
    }

    html,
    body {
      height: 100%;
      overflow: hidden;
    }

    body {
      margin: 0;
      font-family: "Space Grotesk", "Segoe UI", sans-serif;
      background: radial-gradient(1200px 800px at 20% 10%, #171824 0%, transparent 70%),
        radial-gradient(900px 600px at 90% 40%, #1b1422 0%, transparent 65%),
        linear-gradient(135deg, #060608 0%, #0e0f18 55%, #08080c 100%);
      color: var(--text);
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      background: radial-gradient(1px 1px at 10% 20%, rgba(255, 255, 255, 0.3), transparent 40%),
        radial-gradient(1px 1px at 70% 80%, rgba(255, 255, 255, 0.2), transparent 50%),
        radial-gradient(1px 1px at 40% 60%, rgba(255, 255, 255, 0.15), transparent 45%);
      opacity: 0.35;
      pointer-events: none;
    }

    .shell {
      position: relative;
      z-index: 1;
      padding: 12px clamp(10px, 2vw, 32px);
      height: 100%;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .topbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 6px 12px;
      border: 1px solid var(--panel-border);
      background: var(--panel);
      border-radius: 12px;
      backdrop-filter: blur(20px);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
      width: 100%;
    }

    .brand {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .brand-title {
      font-family: "Cormorant Garamond", "Times New Roman", serif;
      font-size: 22px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .brand-sub {
      font-size: 12px;
      color: var(--muted);
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }

    .quote-banner {
      padding: 6px 10px;
      border-radius: 10px;
      border: 1px solid var(--panel-border);
      background: var(--panel);
      backdrop-filter: blur(20px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
      width: 100%;
    }

    .info-panel {
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: min(560px, 92vw);
      max-height: 80vh;
      border-radius: 16px;
      border: 1px solid var(--panel-border);
      background: rgba(10, 10, 16, 0.96);
      padding: 18px;
      box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
      overflow-y: auto;
      z-index: 10;
      backdrop-filter: blur(16px);
    }

    .info-panel[hidden] {
      display: none;
    }

    .info-panel::-webkit-scrollbar {
      width: 6px;
    }

    .info-panel::-webkit-scrollbar-thumb {
      background: rgba(255, 255, 255, 0.2);
      border-radius: 999px;
    }

    .info-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 14px;
      position: sticky;
      top: -18px;
      padding: 12px 0 8px;
      background: rgba(10, 10, 16, 0.96);
      z-index: 1;
    }

    .info-title {
      font-size: 12px;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      color: var(--muted);
    }

    .info-close {
      border: 1px solid var(--panel-border);
      background: rgba(20, 20, 30, 0.9);
      color: var(--text);
      padding: 6px 10px;
      border-radius: 999px;
      font-size: 10px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      cursor: pointer;
    }


    .layout {
      flex: 1;
      min-height: 0;
      display: grid;
      grid-template-columns: 1fr;
      grid-template-rows: 1fr auto;
      gap: 6px;
      width: 100%;
      margin: 0 auto;
    }

    .sidebar {
      order: 2;
      background: var(--panel);
      border: 1px solid var(--panel-border);
      border-radius: 12px;
      padding: 8px 12px;
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 12px;
      min-height: 0;
      overflow: hidden;
      backdrop-filter: blur(24px);
      animation: revealUp 0.8s ease forwards;
    }

    .sidebar h1 {
      font-family: "Cormorant Garamond", "Times New Roman", serif;
      font-size: 18px;
      margin: 0;
      letter-spacing: 0.04em;
      white-space: nowrap;
    }

    .artist-card {
      border-radius: 14px;
      border: 1px solid var(--panel-border);
      background: rgba(10, 10, 16, 0.6);
      padding: 16px;
      display: grid;
      gap: 10px;
    }

    .artist-label {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.24em;
      color: var(--muted);
    }

    .artist-name {
      font-family: "Cormorant Garamond", "Times New Roman", serif;
      font-size: 22px;
    }

    .artist-role {
      font-size: 13px;
      color: var(--muted);
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }

    .artist-tagline {
      font-size: 13px;
      color: rgba(242, 238, 232, 0.8);
      line-height: 1.4;
    }

    .artist-links,
    .artist-press {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      font-size: 12px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--muted);
    }

    .artist-links a,
    .artist-press a {
      color: var(--text);
      text-decoration: none;
      border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .artist-links a:hover,
    .artist-press a:hover {
      color: var(--accent);
      border-bottom-color: var(--accent);
    }

    .highlight-list {
      margin: 0;
      padding-left: 18px;
      color: var(--muted);
      font-size: 12px;
      line-height: 1.6;
    }

    .people-list a {
      color: var(--text);
      text-decoration: none;
      border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .people-list a:hover {
      color: var(--accent);
      border-bottom-color: var(--accent);
    }

    .highlight-list li {
      margin-bottom: 6px;
    }

    .sidebar > p {
      margin: 0;
      color: var(--muted);
      font-size: 11px;
      line-height: 1.4;
      display: none;
    }

    .sidebar-section {
      display: flex;
      flex-direction: column;
      gap: 4px;
      flex: 1;
      min-width: 0;
    }

    .sidebar-body {
      flex: 1;
      min-width: 0;
      display: flex;
      flex-direction: column;
      overflow-x: auto;
      overflow-y: hidden;
    }

    .sidebar-body::-webkit-scrollbar {
      height: 4px;
    }

    .sidebar-body::-webkit-scrollbar-thumb {
      background: rgba(255, 255, 255, 0.2);
      border-radius: 999px;
    }

    .section-title {
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: var(--muted);
      display: none;
    }

    .work-list {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      gap: 4px;
    }

    .work-select-wrap {
      display: none;
      align-items: center;
      gap: 8px;
      width: 100%;
      color: var(--muted);
      font-size: 10px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

    .work-select {
      min-width: 0;
      flex: 1;
      border: 1px solid var(--panel-border);
      border-radius: 8px;
      padding: 8px 10px;
      color: var(--text);
      background: var(--bg-ink);
      font: inherit;
      letter-spacing: normal;
      text-transform: none;
    }

    .work-item {
      border: 1px solid transparent;
      background: rgba(10, 10, 16, 0.6);
      color: var(--text);
      padding: 5px 10px;
      border-radius: 8px;
      text-align: left;
      display: flex;
      flex-direction: row;
      align-items: baseline;
      gap: 6px;
      cursor: pointer;
      transition: border 0.2s ease, background 0.2s ease;
      white-space: nowrap;
    }

    .work-item:hover {
      border-color: rgba(255, 255, 255, 0.18);
      background: rgba(18, 18, 26, 0.8);
    }

    .work-item.active {
      border-color: var(--accent);
      background: rgba(25, 18, 16, 0.85);
      box-shadow: inset 0 0 0 1px rgba(217, 119, 87, 0.2);
    }

    .work-name {
      font-size: 12px;
      font-weight: 500;
    }

    .work-kicker {
      font-size: 10px;
      color: var(--muted);
    }

    .sidebar-footer {
      font-size: 9px;
      color: rgba(242, 238, 232, 0.5);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      white-space: nowrap;
      display: none;
    }

    .quote-stack {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .quote-card {
      flex: 1 1 220px;
      border-radius: 8px;
      border: 1px solid var(--panel-border);
      background: rgba(8, 8, 12, 0.7);
      padding: 6px 10px;
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
    }

    .quote-card.is-link {
      cursor: pointer;
      transition: transform 0.2s ease, border 0.2s ease;
    }

    .quote-card.is-link:hover {
      transform: translateY(-2px);
      border-color: rgba(255, 255, 255, 0.2);
    }

    .quote-text {
      margin: 0 0 4px;
      font-family: "Cormorant Garamond", "Times New Roman", serif;
      font-size: 13px;
      line-height: 1.4;
      color: rgba(242, 238, 232, 0.92);
    }

    .quote-by {
      font-size: 11px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 6px;
    }

    .quote-description {
      margin: 0 0 8px;
      font-size: 12px;
      color: rgba(242, 238, 232, 0.75);
      line-height: 1.5;
    }

    .quote-work {
      font-size: 11px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 6px;
    }

    .quote-source {
      font-size: 11px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--muted);
    }

    .quote-source a {
      color: inherit;
      text-decoration: none;
      border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .quote-source a:hover {
      color: var(--accent);
      border-bottom-color: var(--accent);
    }

    .stage {
      order: 1;
      position: relative;
      display: flex;
      flex-direction: column;
      gap: 6px;
      min-height: 0;
      flex: 1;
      overflow: hidden;
      animation: revealUp 0.9s ease 0.05s forwards;
    }

    .stage-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      flex-wrap: wrap;
      padding: 6px 10px;
      border-radius: 10px;
      border: 1px solid var(--panel-border);
      background: rgba(10, 10, 16, 0.75);
      backdrop-filter: blur(14px);
    }

    .stage-body {
      position: relative;
      flex: 1;
      min-height: 0;
      display: flex;
      align-items: stretch;
      justify-content: stretch;
      overflow: hidden;
    }

    .now-showing {
      display: flex;
      align-items: baseline;
      gap: 10px;
    }

    .eyebrow {
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      color: var(--muted);
    }

    .now-title {
      font-family: "Cormorant Garamond", "Times New Roman", serif;
      font-size: clamp(18px, 3vw, 28px);
      margin: 0;
    }

    .work-subtitle {
      font-size: 13px;
      color: var(--muted);
      margin: 0;
      text-transform: uppercase;
      letter-spacing: 0.2em;
    }

    .work-count {
      font-size: 11px;
      color: rgba(242, 238, 232, 0.6);
      letter-spacing: 0.24em;
      text-transform: uppercase;
    }

    .stage-actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .volume-control {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 0 8px;
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: var(--muted);
    }

    .volume-control input[type="range"] {
      width: 70px;
      accent-color: var(--accent);
    }

    .btn {
      border: 1px solid var(--panel-border);
      background: rgba(10, 10, 16, 0.8);
      color: var(--text);
      padding: 10px 16px;
      border-radius: 999px;
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      cursor: pointer;
      transition: transform 0.2s ease, border 0.2s ease, background 0.2s ease;
    }

    .btn:hover {
      transform: translateY(-1px);
      border-color: rgba(255, 255, 255, 0.25);
    }

    .btn.primary {
      background: var(--accent);
      color: #1b0f0b;
      border-color: rgba(255, 255, 255, 0.1);
      box-shadow: 0 10px 30px rgba(217, 119, 87, 0.3);
    }

    .btn:disabled {
      opacity: 0.4;
      cursor: not-allowed;
      transform: none;
    }

    :where(button, a, input, select, ruffle-player):focus-visible {
      outline: 3px solid #ffd0bd;
      outline-offset: 3px;
    }

    .player-shell {
      position: relative;
      border-radius: 12px;
      background: var(--bg-ink);
      border: 1px solid rgba(255, 255, 255, 0.08);
      width: 100%;
      height: 100%;
      overflow: hidden;
      box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
    }

    #flash-container {
      position: relative;
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .launch-placeholder {
      position: absolute;
      inset: 0;
      z-index: 3;
      display: grid;
      place-content: center;
      gap: 8px;
      padding: 24px;
      text-align: center;
      background: radial-gradient(circle at center, rgba(34, 25, 31, 0.94), rgba(5, 5, 7, 0.98));
    }

    .launch-poster {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: contain;
      opacity: 0.58;
      filter: saturate(0.82) contrast(1.05);
    }

    .launch-placeholder::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(5, 5, 7, 0.28), rgba(5, 5, 7, 0.5)),
        radial-gradient(circle at center, rgba(5, 5, 7, 0.2), rgba(5, 5, 7, 0.72));
      pointer-events: none;
    }

    .launch-placeholder-title,
    .launch-placeholder-meta,
    .transfer-progress {
      position: relative;
      z-index: 1;
      text-shadow: 0 2px 18px rgba(0, 0, 0, 0.9);
    }

    .launch-placeholder[hidden] {
      display: none;
    }

    .launch-placeholder-title {
      font-family: "Cormorant Garamond", "Times New Roman", serif;
      font-size: clamp(24px, 5vw, 44px);
    }

    .launch-placeholder-meta {
      color: var(--muted);
      font-size: 12px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .transfer-progress {
      width: min(440px, calc(100vw - 72px));
      margin-top: 14px;
    }

    .transfer-progress[hidden] {
      display: none;
    }

    .transfer-progress progress {
      display: block;
      width: 100%;
      height: 8px;
      overflow: hidden;
      border: 0;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.1);
      color: var(--accent);
      accent-color: var(--accent);
    }

    .transfer-progress progress::-webkit-progress-bar {
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.1);
    }

    .transfer-progress progress::-webkit-progress-value {
      border-radius: 999px;
      background: var(--accent);
    }

    .transfer-progress progress::-moz-progress-bar {
      border-radius: 999px;
      background: var(--accent);
    }

    .transfer-progress-text {
      min-height: 1.4em;
      margin-top: 9px;
      color: var(--paper);
      font-size: 12px;
      letter-spacing: 0.04em;
    }

    .player-status {
      position: absolute;
      top: 12px;
      left: 50%;
      z-index: 5;
      transform: translateX(-50%);
      max-width: calc(100% - 24px);
      padding: 8px 12px;
      border: 1px solid var(--panel-border);
      border-radius: 999px;
      color: var(--text);
      background: rgba(10, 10, 16, 0.94);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
      font-size: 11px;
      text-align: center;
    }

    .player-status[data-state="error"] {
      border-color: #f08d78;
      color: #ffd0c7;
    }

    .player-status[data-state="cancelled"] {
      border-color: #8b8490;
      color: #d8d2db;
    }

    .player-shell::after {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(600px 320px at 15% 15%, rgba(217, 119, 87, 0.12), transparent 60%),
        radial-gradient(500px 260px at 80% 70%, rgba(90, 120, 155, 0.14), transparent 70%);
      pointer-events: none;
    }

    .about-modal {
      position: fixed;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 16px;
      background: rgba(6, 6, 10, 0.7);
      backdrop-filter: blur(6px);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.25s ease;
      z-index: 10;
    }

    .about-modal.is-open {
      opacity: 1;
      pointer-events: auto;
    }

    .about-modal[hidden] {
      display: none;
    }

    .about-panel {
      border-radius: 16px;
      border: 1px solid var(--panel-border);
      background: var(--panel-strong);
      padding: 18px 20px;
      width: min(560px, 92vw);
      max-height: 85vh;
      overflow-y: auto;
      transition: opacity 0.25s ease, transform 0.25s ease;
      opacity: 0;
      transform: translateY(8px);
      box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
    }

    .about-panel::-webkit-scrollbar {
      width: 6px;
    }

    .about-panel::-webkit-scrollbar-thumb {
      background: rgba(255, 255, 255, 0.2);
      border-radius: 999px;
    }

    .perf-panel {
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: min(400px, 92vw);
      max-height: 80vh;
      overflow-y: auto;
      border-radius: 16px;
      border: 1px solid var(--panel-border);
      background: rgba(10, 10, 16, 0.96);
      padding: 16px;
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
      z-index: 10;
      backdrop-filter: blur(16px);
    }

    .perf-panel[hidden] {
      display: none;
    }

    .perf-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      margin-bottom: 12px;
    }

    .perf-title {
      font-size: 12px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--muted);
    }

    .perf-close {
      border: 1px solid var(--panel-border);
      background: rgba(20, 20, 30, 0.9);
      color: var(--text);
      padding: 6px 10px;
      border-radius: 999px;
      font-size: 10px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      cursor: pointer;
    }

    .perf-grid {
      display: grid;
      gap: 12px;
    }

    .perf-field {
      display: grid;
      gap: 6px;
      font-size: 12px;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 0.12em;
    }

    .perf-field select,
    .perf-field input[type="range"] {
      width: 100%;
      background: rgba(20, 20, 30, 0.9);
      color: var(--text);
      border: 1px solid var(--panel-border);
      border-radius: 8px;
      padding: 6px 8px;
      font-size: 12px;
      font-family: inherit;
    }

    .perf-effective {
      font-size: 11px;
      color: var(--accent);
      letter-spacing: 0.08em;
    }

    .perf-actions {
      display: flex;
      gap: 8px;
      justify-content: flex-end;
      margin-top: 10px;
    }

.about-modal.is-open .about-panel {
      opacity: 1;
      transform: translateY(0);
    }

    .about-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 10px;
    }

    .about-panel h3 {
      margin: 0;
      font-size: 18px;
      font-family: "Cormorant Garamond", "Times New Roman", serif;
    }

    .about-close {
      border: 1px solid var(--panel-border);
      background: rgba(20, 20, 30, 0.9);
      color: var(--text);
      padding: 6px 10px;
      border-radius: 999px;
      font-size: 10px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      cursor: pointer;
    }

    .about-panel p {
      margin: 0 0 12px;
      color: rgba(242, 238, 232, 0.8);
      line-height: 1.6;
      font-size: 14px;
    }

    .about-panel ul {
      margin: 0 0 10px;
      padding-left: 18px;
      font-size: 13px;
      color: var(--muted);
    }

    .about-panel li {
      margin: 4px 0;
    }

    .about-panel a {
      color: var(--text);
      text-decoration: none;
      border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .about-panel a:hover {
      border-bottom-color: var(--accent);
      color: var(--accent);
    }

    .access-note,
    .provenance-note {
      margin-top: 18px;
      padding: 14px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.035);
    }

    .access-note h4,
    .provenance-note h4 {
      margin: 0 0 8px;
      color: var(--paper);
      font-size: 11px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }

    .access-note p,
    .provenance-note p {
      margin: 0;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.55;
    }

    .access-note .access-controls {
      margin-top: 9px;
      color: var(--text);
    }

    .provenance-note {
      border-color: rgba(208, 165, 92, 0.22);
      background: rgba(208, 165, 92, 0.055);
    }

    .meta-label {
      font-weight: 600;
      color: var(--text);
    }

    .player-shell {
      touch-action: none;
      position: relative;
    }

    #input-overlay {
      position: absolute;
      inset: 0;
      z-index: 2;
      cursor: crosshair;
      pointer-events: none;
    }

    #input-overlay.active {
      pointer-events: auto;
    }

    .player-shell:fullscreen {
      width: 100vw;
      height: 100vh;
      max-width: 100vw;
      max-height: 100vh;
      border: none;
      border-radius: 0;
      background: #000;
      box-shadow: none;
    }

    .player-shell:fullscreen::after {
      display: none;
    }

    @keyframes revealUp {
      from {
        opacity: 0;
        transform: translateY(12px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @media (max-width: 900px) {
      .quote-banner {
        display: none;
      }

      .topbar {
        padding: 4px 8px;
        border-radius: 8px;
      }

      .brand-sub {
        display: none;
      }
    }

    @media (max-width: 700px) {
      .shell {
        padding: 4px;
        gap: 4px;
      }

      .sidebar {
        padding: 4px 6px;
        border-radius: 6px;
      }

      .sidebar h1 {
        display: none;
      }

      .work-item {
        padding: 4px 8px;
      }

      .work-list {
        display: none;
      }

      .work-select-wrap {
        display: flex;
      }

      .work-kicker {
        display: none;
      }

      .stage-header {
        padding: 4px 6px;
        border-radius: 6px;
      }

      .stage-actions {
        flex-wrap: wrap;
        gap: 3px;
      }

      .stage-actions .btn {
        padding: 5px 8px;
        font-size: 10px;
      }

      .eyebrow, .work-subtitle, .work-count {
        display: none;
      }
    }

    @media (max-width: 480px) {
      .shell {
        padding: 0;
        gap: 2px;
      }

      .topbar {
        border-radius: 0;
        padding: 2px 6px;
      }

      .sidebar {
        border-radius: 0;
        padding: 3px 4px;
      }

      .player-shell {
        border-radius: 0;
        border: none;
      }

      .stage-header {
        border-radius: 0;
      }

      .now-title {
        font-size: 16px;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }
    }

    /* Cursor auto-hide */
    .input-toast {
      position: fixed;
      bottom: 24px;
      left: 50%;
      transform: translateX(-50%) translateY(8px);
      background: rgba(15, 15, 24, 0.9);
      border: 1px solid var(--panel-border);
      color: var(--muted);
      font-size: 11px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      padding: 6px 14px;
      border-radius: 999px;
      pointer-events: none;
      opacity: 0;
      transition: opacity 0.3s ease, transform 0.3s ease;
      z-index: 100;
      backdrop-filter: blur(8px);
    }

    .input-toast.visible {
      opacity: 1;
      transform: translateX(-50%) translateY(0);
    }

    .cursor-hidden, .cursor-hidden * {
      cursor: none !important;
    }

    .cursor-ping {
      position: fixed;
      pointer-events: none;
      z-index: 99999;
      width: 24px;
      height: 24px;
      border-radius: 50%;
      border: 1.5px solid rgba(217, 119, 87, 0.6);
      transform: translate(-50%, -50%) scale(0);
      opacity: 0;
      transition: none;
    }

    .cursor-ping.active {
      animation: cursor-ping-in 0.4s ease-out forwards;
    }

    @keyframes cursor-ping-in {
      0%   { transform: translate(-50%, -50%) scale(0); opacity: 0.8; }
      50%  { transform: translate(-50%, -50%) scale(1.2); opacity: 0.5; }
      100% { transform: translate(-50%, -50%) scale(1); opacity: 0; }
    }
