:root {
  --bg-1: #1a0033;
  --bg-2: #3d0066;
  --neon-pink: #ff3d8a;
  --neon-orange: #ff8c42;
  --neon-yellow: #ffd23f;
  --neon-green: #1fc7a8;
  --neon-cyan: #00c2ff;
  --neon-purple: #9b5de5;
  --neon-magenta: #f15bb5;
  --shadow: 0 8px 24px rgba(0,0,0,0.45);
}
* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html, body {
  margin: 0; padding: 0;
  height: 100%;
  background:
    radial-gradient(circle at 20% 10%, rgba(255,61,138,0.35), transparent 40%),
    radial-gradient(circle at 80% 90%, rgba(0,194,255,0.35), transparent 45%),
    radial-gradient(circle at 50% 50%, rgba(155,93,229,0.25), transparent 60%),
    linear-gradient(160deg, var(--bg-1), var(--bg-2));
  background-attachment: fixed;
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  overscroll-behavior: contain;
  user-select: none; -webkit-user-select: none;
}
body {
  display: flex; flex-direction: column;
  min-height: 100dvh;
  padding-bottom: env(safe-area-inset-bottom);
}

/* TOPBAR */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  background: linear-gradient(180deg, rgba(26,0,51,0.96), rgba(26,0,51,0.85));
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  padding-top: env(safe-area-inset-top);
  width: 100%;
}
/* DRAWER inline buttons */
#reloadBtn, #normalizeBtn {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  border-radius: 10px;
  padding: 8px 12px; font-size: 12px; font-weight: 700;
  cursor: pointer;
}

/* TABS — Emoji-only Navigation */
.tabs {
  display: flex; gap: 5px; align-items: center; 
  padding: 8px 10px;
  overflow-x: auto; scrollbar-width: none;
}
.tabs::-webkit-scrollbar { display: none; }
.tab {
  flex: 1 1 0;
  min-width: 40px;
  padding: 9px 4px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.08);
  color: #fff; font-size: 22px; line-height: 1;
  white-space: nowrap;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.tab.active {
  background: linear-gradient(135deg, var(--c1, var(--neon-pink)), var(--c2, var(--neon-purple)));
  box-shadow: 0 6px 20px var(--glow, rgba(255,61,138,0.45)), inset 0 0 0 1px rgba(255,255,255,0.25);
}
@media (min-width: 720px) {
  .tabs { justify-content: center; gap: 8px; }
  .tab { padding: 11px 14px; font-size: 24px; min-width: 56px; }
}

/* MAIN + PANELS */
main { flex: 1; padding: 4px 12px 150px; margin-top: 70px; }
.panel { scroll-margin-top: 70px; padding-top: 12px; }
@media (min-width: 720px) {
  main { margin-top: 78px; padding-left: 24px; padding-right: 24px; max-width: 1400px; margin-left: auto; margin-right: auto; }
  .panel { scroll-margin-top: 78px; }
}
.section-title {
  font-size: 18px; font-weight: 900;
  margin: 6px 4px 12px;
  display: flex; align-items: center; gap: 8px;
}
.section-title .pill {
  font-size: 11px;
  background: rgba(255,255,255,0.15);
  padding: 2px 8px; border-radius: 999px; font-weight: 700;
}
.empty {
  text-align: center; padding: 30px 20px;
  color: rgba(255,255,255,0.65); font-size: 13px; line-height: 1.5;
}
.empty .big { font-size: 36px; margin-bottom: 6px; }

/* GRID — responsive: 3 cols mobile, bis 5 cols desktop */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
@media (min-width: 720px) { .grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1000px) { .grid { grid-template-columns: repeat(5, 1fr); } }

/* Music-Panel: 1 col mobile → 3 cols desktop (override default 3 cols) */
#panel-music .grid { grid-template-columns: 1fr; }
@media (min-width: 720px) { #panel-music .grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { #panel-music .grid { grid-template-columns: repeat(3, 1fr); } }
.sfx {
  position: relative;
  padding: 14px 6px;
  min-height: 78px;
  border-radius: 14px;
  border: none;
  color: #fff;
  font-weight: 800; font-size: 12px; line-height: 1.15;
  text-shadow: 0 2px 4px rgba(0,0,0,0.45);
  box-shadow: var(--shadow), inset 0 -3px 0 rgba(0,0,0,0.18);
  overflow: hidden;
  word-break: break-word; hyphens: auto;
}
.sfx::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.25), transparent 55%);
  pointer-events: none;
}
.sfx::after {
  content: ""; position: absolute; top: 6px; right: 6px;
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(31,199,168,0.9);
  box-shadow: 0 0 6px rgba(31,199,168,0.7);
  opacity: 0; transition: opacity 0.2s;
}
.sfx.normalized::after { opacity: 1; }
/* Next-up: weißer Outline-Ring vor dem Abspielen */
.sfx.next-up {
  box-shadow: 0 0 0 3px rgba(255,255,255,0.85), 0 6px 18px rgba(0,0,0,0.35);
}
/* Currently playing: grüner Outline-Ring (überschreibt next-up) */
.sfx.playing,
.sfx.playing.next-up {
  box-shadow: 0 0 0 3px var(--neon-green), 0 0 18px rgba(31,199,168,0.6), 0 8px 24px rgba(0,0,0,0.4);
}
#panel-bingo .sfx {
  min-height: 84px; text-transform: uppercase; letter-spacing: 0.2px;
}

/* MUSIC-ähnliche Tiles */
#panel-music .sfx, #panel-bingo-win .sfx, #panel-bingo-pruefen .sfx { min-height: 78px; }

/* BOTTOM BAR */
.bottom-bar {
  position: fixed; left: 0; right: 0; bottom: 0;
  padding: 6px 10px calc(6px + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, rgba(26,0,51,0), rgba(10,0,25,0.96) 25%);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  display: flex; flex-direction: column; gap: 6px;
  z-index: 50;
}
.now-playing {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  font-size: 12px; min-height: 30px;
}
.now-playing .dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: #555;
}
.now-playing.active .dot {
  background: var(--neon-green);
  box-shadow: 0 0 12px var(--neon-green);
  animation: blink 1s ease-in-out infinite;
}
@keyframes blink { 50% { opacity: 0.35; } }
.now-playing .label {
  flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  font-weight: 700;
}
.duck-indicator {
  width: 36px; height: 8px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
  display: none;
}
.duck-indicator.visible { display: block; }
.duck-indicator .fill {
  height: 100%;
  background: linear-gradient(90deg, var(--neon-pink), var(--neon-yellow));
  width: 0%;
  transition: width 0.1s;
}

.ctrl-row {
  display: flex; align-items: center; gap: 8px;
  padding: 4px 8px;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
}
.ctrl-row .icn { font-size: 16px; width: 22px; text-align: center; flex-shrink: 0; }
.slider {
  -webkit-appearance: none; appearance: none;
  flex: 1; height: 28px;
  background: transparent; margin: 0;
}
.slider:focus { outline: none; }
.slider::-webkit-slider-runnable-track {
  height: 6px;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-pink));
  border-radius: 999px;
}
.slider::-moz-range-track {
  height: 6px;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-pink));
  border-radius: 999px;
}
.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.4), 0 0 0 2px rgba(255,255,255,0.3);
  margin-top: -8px;
}
.slider::-moz-range-thumb {
  width: 22px; height: 22px; border: none; border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.4), 0 0 0 2px rgba(255,255,255,0.3);
}
.vol-pct {
  font-size: 11px; font-weight: 700;
  color: rgba(255,255,255,0.7);
  min-width: 36px; text-align: right;
  font-variant-numeric: tabular-nums;
}
.loop-btn {
  border: none; background: rgba(255,255,255,0.1);
  color: #fff; border-radius: 10px;
  padding: 6px 10px; font-size: 12px; font-weight: 800;
  display: flex; align-items: center; gap: 4px;
  min-width: 70px; justify-content: center; flex-shrink: 0;
}
.loop-btn[data-state="one"] {
  background: linear-gradient(135deg, var(--neon-yellow), var(--neon-orange));
  color: #2a0044;
}
.loop-btn[data-state="all"] {
  background: linear-gradient(135deg, var(--neon-green), var(--neon-cyan));
  color: #002233;
}
.stop-row { display: flex; gap: 6px; }

/* BURGER BUTTON — sitzt jetzt am Ende der Tab-Bar */
.tabs .burger-btn {
  flex: 0 0 auto;
  margin-left: auto;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  color: #fff; border-radius: 999px;
  width: 40px; height: 40px;
  font-size: 18px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}

/* SPIELMOMENTE — 1 col mobile, 2 cols desktop */
.moments-grid { display: grid; grid-template-columns: 1fr; gap: 9px; margin-bottom: 20px; }
@media (min-width: 720px) { .moments-grid { grid-template-columns: repeat(2, 1fr); } }
.moment-btn {
  display: flex; align-items: center; gap: 13px;
  width: 100%; padding: 15px 16px;
  border: none; border-radius: 18px;
  color: #fff; font-weight: 900;
  text-align: left;
  box-shadow: var(--shadow), inset 0 -3px 0 rgba(0,0,0,0.2);
  position: relative; overflow: hidden;
  cursor: pointer;
}
.moment-btn::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.22), transparent 60%);
  pointer-events: none;
}
.moment-btn.triggered {
  box-shadow: 0 0 0 3px rgba(255,255,255,0.85), var(--shadow);
}
.m-emoji { font-size: 30px; line-height: 1; flex-shrink: 0; }
.m-text { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.m-label { font-size: 15px; font-weight: 900; line-height: 1.2; }
.m-sub { font-size: 11px; font-weight: 600; opacity: 0.75; }
.m-hk {
  position: absolute; top: 6px; left: 8px;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 5px;
  font-size: 11px; font-weight: 900;
  padding: 1px 6px;
  color: rgba(255,255,255,0.85);
  font-family: monospace;
  pointer-events: none;
}

/* HOTKEY BADGE auf SFX-Buttons */
.sfx .hk-badge {
  position: absolute; bottom: 4px; right: 5px;
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 4px;
  font-size: 9px; font-weight: 800;
  padding: 1px 4px;
  color: rgba(255,255,255,0.72);
  pointer-events: none;
  line-height: 1.4;
}

/* HOTKEY-LISTEN im Drawer */
.hk-sections { display: flex; gap: 10px; }
.hk-section { flex: 1; }
.hk-section-title {
  font-size: 10px; font-weight: 800;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase; letter-spacing: 0.8px;
  margin-bottom: 5px;
}
.hk-list { display: flex; flex-direction: column; gap: 3px; }
.hk-item {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 7px; padding: 4px 7px;
}
.hk-key {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.28);
  border-bottom-width: 2px;
  border-radius: 5px;
  padding: 1px 5px;
  font-size: 11px; font-weight: 800;
  min-width: 20px; text-align: center;
  flex-shrink: 0; font-family: monospace;
  color: #fff;
}
.hk-name {
  font-size: 10px; font-weight: 700;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  color: rgba(255,255,255,0.8);
}

.stop-btn {
  flex: 1; padding: 12px 8px;
  border: none; border-radius: 12px;
  color: #fff; font-weight: 800; font-size: 13px;
  box-shadow: var(--shadow), inset 0 -3px 0 rgba(0,0,0,0.2);
}
.stop-btn:disabled { opacity: 0.4; }
.stop-music { background: linear-gradient(135deg, #1fc7a8, #00c2ff); }
.stop-music.is-playing { background: linear-gradient(135deg, #ff8c42, #ff3d8a); }
.stop-fx { background: linear-gradient(135deg, #00c2ff, #9b5de5); }

/* Music-Button-Pair: Stop/Play + Next (Next nur im Durchlauf-Modus sichtbar) */
.music-btn-pair { display: flex; flex: 1; gap: 0; min-width: 0; }
.music-btn-pair .stop-music { flex: 1; min-width: 0; }
.next-music {
  display: none;
  flex: 0 0 auto;
  padding: 12px 10px;
  font-size: 16px;
  background: linear-gradient(135deg, #1fc7a8, #00c2ff);
}
body.music-mode-continuous .next-music { display: inline-block; }
body.music-mode-continuous .music-btn-pair .stop-music {
  border-top-right-radius: 0; border-bottom-right-radius: 0;
}
body.music-mode-continuous .music-btn-pair .next-music {
  border-top-left-radius: 0; border-bottom-left-radius: 0;
  border-left: 1px solid rgba(0,0,0,0.2);
}

/* SETTINGS DRAWER */
.backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s;
  z-index: 100;
}
.backdrop.open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  max-height: 88vh;
  background: linear-gradient(180deg, #2a0055, #1a0033);
  border-top-left-radius: 22px; border-top-right-radius: 22px;
  box-shadow: 0 -20px 60px rgba(0,0,0,0.55);
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(.2,.9,.3,1);
  z-index: 101;
  display: flex; flex-direction: column;
  padding-bottom: env(safe-area-inset-bottom);
}
.drawer.open { transform: translateY(0); }
.drawer-handle {
  width: 44px; height: 5px;
  background: rgba(255,255,255,0.3);
  border-radius: 999px;
  margin: 10px auto 8px;
  flex-shrink: 0;
}
.drawer-head {
  padding: 0 16px 8px;
  display: flex; align-items: center; gap: 8px;
  flex-shrink: 0;
}
.drawer-head h2 {
  font-size: 16px; font-weight: 900;
  margin: 0; flex: 1;
}
.drawer-close {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  border-radius: 999px;
  padding: 4px 10px; font-size: 12px; font-weight: 700;
}
.drawer-body {
  overflow-y: auto;
  padding: 8px 16px 24px;
  -webkit-overflow-scrolling: touch;
}
.group {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 12px 14px;
  margin-bottom: 12px;
}
.group h3 {
  font-size: 13px; font-weight: 800;
  margin: 0 0 10px;
  display: flex; align-items: center; gap: 6px;
}
.group h3 .help {
  margin-left: auto;
  font-size: 10px; font-weight: 600;
  color: rgba(255,255,255,0.45);
}
.row {
  display: flex; align-items: center; gap: 8px;
  margin: 8px 0;
}
.row .lbl {
  width: 110px;
  font-size: 11px; font-weight: 700;
  color: rgba(255,255,255,0.75);
}
.row .val {
  width: 50px; text-align: right;
  font-size: 11px; font-weight: 700;
  color: rgba(255,255,255,0.85);
  font-variant-numeric: tabular-nums;
}
.row select {
  flex: 1; background: rgba(0,0,0,0.25);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 6px 8px;
  font-size: 12px;
}
.toggle {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 8px 12px;
  color: #fff; font-weight: 800; font-size: 13px;
  cursor: pointer;
}
.toggle.on {
  background: linear-gradient(135deg, var(--neon-green), var(--neon-cyan));
  color: #002233;
}
.vu {
  width: 100%; height: 10px;
  background: rgba(0,0,0,0.4);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}
.vu .vu-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, #1fc7a8, #ffd23f 70%, #ff3d8a 95%);
  transition: width 0.05s linear;
}
.vu .vu-thresh {
  position: absolute; top: -2px; bottom: -2px;
  width: 2px; background: rgba(255,255,255,0.5);
  pointer-events: none;
}
.row-buttons { display: flex; gap: 8px; flex-wrap: wrap; }
.row-buttons button {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  border-radius: 10px;
  padding: 8px 12px; font-size: 12px; font-weight: 700;
}
.row-buttons button.danger {
  border-color: rgba(255,61,138,0.5);
  color: #ff7aaa;
}

.preset-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7px;
  margin: 8px 0 10px;
}
.preset-btn {
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-radius: 12px;
  padding: 9px 7px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.15;
  box-shadow: inset 0 -2px 0 rgba(0,0,0,0.14);
}
.preset-btn.active {
  background: linear-gradient(135deg, var(--neon-green), var(--neon-cyan));
  color: #002233;
  border-color: rgba(255,255,255,0.34);
  box-shadow: 0 0 14px rgba(31,199,168,0.35), inset 0 -2px 0 rgba(0,0,0,0.12);
}
/* Voice-Presets im Filter-Panel: 3 → 4 → 5 Spalten je nach Breite */
.voice-presets-live {
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 10px;
}
@media (min-width: 720px) { .voice-presets-live { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1000px) { .voice-presets-live { grid-template-columns: repeat(5, 1fr); } }
.voice-presets-live .preset-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 6px;
  font-size: 12px;
}
.voice-presets-live .vp-emoji { font-size: 22px; line-height: 1; }
.voice-presets-live .vp-label { font-size: 11px; text-align: center; }

/* TOAST */
.toast {
  position: fixed; left: 50%; bottom: 100px;
  transform: translateX(-50%) translateY(20px);
  background: rgba(0,0,0,0.85);
  color: #fff;
  padding: 10px 16px; border-radius: 12px;
  font-size: 13px; font-weight: 700;
  z-index: 999;
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 0.25s, transform 0.25s;
  pointer-events: none;
  max-width: 86vw; text-align: center; line-height: 1.4;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast.error { background: rgba(140,20,60,0.95); }

.confetti {
  position: fixed; top: -10px; width: 8px; height: 14px;
  pointer-events: none; z-index: 9999;
  animation: fall linear forwards;
}
@keyframes fall { to { transform: translateY(110vh) rotate(720deg); } }

/* FADE BUTTON */
.fade-music-btn { background: linear-gradient(135deg, #ffd23f, #ff8c42); color: #2a0044; }

/* CUE OVERLAY */
.cue-overlay {
  position: fixed; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, rgba(30,0,58,0.98), rgba(16,0,32,0.99));
  border-top-left-radius: 20px; border-top-right-radius: 20px;
  box-shadow: 0 -16px 50px rgba(0,0,0,0.6);
  padding-bottom: calc(90px + env(safe-area-inset-bottom));
  max-height: 88vh;
  z-index: 54;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(.2,.9,.3,1);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  display: flex; flex-direction: column;
}
.cue-overlay.open { transform: translateY(0); }
.cue-drag-handle {
  width: 44px; height: 5px;
  background: rgba(255,255,255,0.28);
  border-radius: 999px;
  margin: 10px auto 0;
  flex-shrink: 0;
}
.cue-head {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 14px 10px;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.cue-head-title {
  font-size: 13px; font-weight: 900;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase; letter-spacing: 1px;
  flex: 1;
}
.cue-head-btn {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff; border-radius: 8px;
  padding: 5px 11px; font-size: 11px; font-weight: 800;
}
.cue-stop-btn-active {
  background: linear-gradient(135deg, #ff3d8a, #9b5de5) !important;
  border-color: rgba(255,255,255,0.3) !important;
}
.cue-list-scroll {
  overflow-y: auto; -webkit-overflow-scrolling: touch;
  padding: 10px 12px 6px;
  flex: 1;
}
.cue-card {
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 14px;
  padding: 10px 12px;
  margin-bottom: 9px;
  transition: border-color 0.2s, background 0.2s;
}
.cue-card.running {
  border-color: rgba(31,199,168,0.55);
  background: rgba(31,199,168,0.07);
}
.cue-card-head {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 8px;
}
.cue-name { flex: 1; font-size: 13px; font-weight: 800; }
.cue-play-btn {
  border: none;
  width: 36px; height: 36px; border-radius: 50%;
  font-size: 15px; font-weight: 900;
  background: linear-gradient(135deg, var(--neon-green), var(--neon-cyan));
  color: #002233;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(31,199,168,0.38);
  flex-shrink: 0;
}
.cue-play-btn.is-playing {
  background: linear-gradient(135deg, #ff3d8a, #9b5de5);
  box-shadow: 0 4px 12px rgba(255,61,138,0.4);
}
.cue-steps {
  display: flex; align-items: center; flex-wrap: wrap; gap: 4px;
}
.cue-step-chip {
  display: inline-flex; align-items: center;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 8px;
  padding: 4px 8px;
  font-size: 10px; font-weight: 700;
  color: rgba(255,255,255,0.7);
  white-space: nowrap;
  transition: all 0.18s ease;
}
.cue-step-chip.step-active {
  background: linear-gradient(135deg, var(--neon-green), var(--neon-cyan));
  color: #002233; border-color: transparent;
  box-shadow: 0 0 10px rgba(31,199,168,0.45);
  transform: scale(1.08);
}
.cue-step-chip.step-done {
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.28);
  border-color: rgba(255,255,255,0.06);
}
.cue-arrow { font-size: 10px; color: rgba(255,255,255,0.28); flex-shrink: 0; }
