:root {
  --bg: #121212;
  --panel: #1e1e1e;
  --panel-2: #2a2a2a;
  --text: #f5f5f5;
  --muted: #a7a7a7;
  --accent: #1db954;
  --accent-dark: #169c46;
  --warn: #f5a623;
  --danger: #e5484d;
  --line: #3ea6ff;
  --radius: 12px;
  --shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 16px;
}

h1, h2, h3 { margin: 0 0 8px; line-height: 1.2; }
h1 { font-size: 1.8rem; }
h2 { font-size: 1.2rem; }
h3 { font-size: 1rem; color: var(--muted); }
p { margin: 0 0 10px; }
a { color: var(--accent); }
code { background: var(--panel-2); padding: 2px 6px; border-radius: 6px; font-size: 0.9em; word-break: break-all; }

.hero { text-align: center; padding: 24px 0 8px; }
.lead { color: var(--muted); font-size: 1.1rem; }

.panel {
  background: var(--panel);
  border-radius: var(--radius);
  padding: 20px;
  margin: 16px 0;
  box-shadow: var(--shadow);
}
.muted-panel { background: transparent; box-shadow: none; padding: 8px 0; }
.page-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; flex-wrap: wrap; margin-top: 8px; }

.muted { color: var(--muted); }
.small { font-size: 0.85rem; }
.center { text-align: center; justify-content: center; }
.ok { color: var(--accent); }

.steps { padding-left: 20px; }
.steps li { margin-bottom: 8px; }

.row { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; margin: 8px 0; }
.row.space { justify-content: space-between; }
.row .input { flex: 1; min-width: 200px; }
.actions { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; margin-top: 12px; }

.fields { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px; }
.field { display: flex; flex-direction: column; gap: 4px; font-size: 0.9rem; color: var(--muted); }
.field-check { flex-direction: row; align-items: center; gap: 8px; align-self: end; padding-bottom: 8px; }
.field input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--accent); }

.input, select.input {
  background: var(--panel-2);
  color: var(--text);
  border: 1px solid #3a3a3a;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 1rem;
  width: 100%;
}
.input:focus { outline: 2px solid var(--accent); outline-offset: 0; }

.btn {
  background: var(--panel-2);
  color: var(--text);
  border: 1px solid #3a3a3a;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, transform 0.05s;
}
.btn:hover:not(:disabled) { background: #363636; }
.btn:active:not(:disabled) { transform: scale(0.98); }
.btn:disabled { opacity: 0.45; cursor: not-allowed; }
.btn-primary { background: var(--accent); border-color: var(--accent); color: #062b14; }
.btn-primary:hover:not(:disabled) { background: var(--accent-dark); }
.btn-danger { border-color: var(--danger); color: var(--danger); }
.btn-link { background: transparent; border-color: transparent; color: var(--accent); padding-left: 8px; padding-right: 8px; }
.btn-sm { padding: 6px 12px; font-size: 0.85rem; }
.btn-lg { padding: 14px 24px; font-size: 1.05rem; }
.btn-xl { padding: 18px 32px; font-size: 1.25rem; }

.alert { padding: 12px 14px; border-radius: 8px; }
.alert-error { background: rgba(229, 72, 77, 0.15); color: #ff9a9e; }
.alert-warn { background: rgba(245, 166, 35, 0.15); color: #ffd28a; }

.badge { border-radius: 999px; padding: 2px 10px; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; }
.badge-ok { background: var(--accent); color: #062b14; }
.badge-warn { background: var(--warn); color: #3a2600; }

.user-line { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.avatar { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; }

/* Listas de Spotify */
.playlist-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 10px; margin: 8px 0; }
.playlist-item {
  display: flex; gap: 10px; align-items: center; text-align: left;
  background: var(--panel-2); border: 2px solid transparent; border-radius: 10px; padding: 8px; color: var(--text); cursor: pointer;
}
.playlist-item:hover { border-color: #4a4a4a; }
.playlist-item.selected { border-color: var(--accent); }
.playlist-item.unavailable { opacity: 0.5; }
.playlist-cover { width: 56px; height: 56px; border-radius: 6px; object-fit: cover; flex-shrink: 0; }
.playlist-cover.placeholder { display: flex; align-items: center; justify-content: center; background: #3a3a3a; font-size: 1.6rem; }
.playlist-meta { display: flex; flex-direction: column; overflow: hidden; }
.playlist-meta strong { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* Anfitrión */
.device-list { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.volume { width: 160px; accent-color: var(--accent); }
.counter { font-size: 1.2rem; font-weight: 700; color: var(--muted); }
.now-playing { min-height: 90px; display: flex; align-items: center; }
.track-big { display: flex; gap: 16px; align-items: center; }
.track-big img { width: 80px; height: 80px; border-radius: 8px; }
.track-title { font-size: 1.6rem; font-weight: 800; }
.track-artist { color: var(--muted); font-size: 1.1rem; }
.hidden-track .track-title { color: var(--accent); }
.progress { height: 8px; background: var(--panel-2); border-radius: 999px; overflow: hidden; margin: 12px 0; }
.progress-bar { height: 100%; width: 0; background: var(--accent); transition: width 0.1s linear; }
.game-panel { border: 1px solid #2f2f2f; }

.stat { padding: 6px 10px; border-radius: 8px; }
.stat-full { background: rgba(29, 185, 84, 0.2); }
.stat-line { background: rgba(62, 166, 255, 0.15); }
.verdict { font-weight: 700; font-size: 1.05rem; }
.verdict-full { color: var(--accent); }
.verdict-line { color: var(--line); }
.verdict-none { color: var(--muted); }

.history { padding-left: 0; list-style: none; margin: 0; max-height: 320px; overflow: auto; }
.history li { padding: 6px 0; border-bottom: 1px solid #2a2a2a; }
.history-n { display: inline-block; width: 36px; color: var(--muted); }

/* Tarjetas */
.card-grid { display: grid; gap: 6px; margin: 12px 0; }
.cell {
  background: var(--panel-2);
  border: 2px solid #3a3a3a;
  border-radius: 8px;
  padding: 8px 6px;
  min-height: 72px;
  display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center;
  color: var(--text);
  font: inherit;
  overflow: hidden;
  transition: background 0.15s, border-color 0.15s;
}
.card-grid.interactive .cell:not(.free) { cursor: pointer; }
.card-grid.interactive .cell:not(.free):hover { border-color: #5a5a5a; }
.cell-title { font-weight: 700; font-size: 0.85rem; line-height: 1.2; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.cell-sub { font-size: 0.72rem; color: var(--muted); margin-top: 2px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.cell.free { background: rgba(29, 185, 84, 0.2); border-color: var(--accent); }
.cell-free { font-weight: 800; color: var(--accent); }
.cell.marked { background: var(--accent); border-color: var(--accent); color: #062b14; }
.cell.marked .cell-sub { color: #0b4a22; }
.cell.marked .cell-free { color: #062b14; }
.cell.in-line { box-shadow: 0 0 0 3px var(--line); }
.card-grid.size-5 .cell { min-height: 64px; }
.card-grid.compact .cell { min-height: 56px; padding: 4px; }
.card-grid.compact .cell-title { font-size: 0.72rem; }
.card-grid.compact .cell-sub { font-size: 0.62rem; }

.cards-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 16px; }
.card-sheet { background: var(--panel); border-radius: var(--radius); padding: 14px; box-shadow: var(--shadow); }
.card-sheet-header { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; flex-wrap: wrap; }

.player-grid .card-grid { gap: 8px; }
.player-grid .cell { min-height: 88px; }
.banner { text-align: center; font-size: 1.2rem; font-weight: 800; padding: 12px; border-radius: var(--radius); background: var(--panel); margin: 8px 0; }
.banner-line { background: rgba(62, 166, 255, 0.2); color: var(--line); }
.banner-full { background: var(--accent); color: #062b14; font-size: 1.5rem; }

/* Avisos */
#toasts { position: fixed; bottom: 16px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; gap: 8px; z-index: 100; width: min(480px, calc(100% - 32px)); }
.toast { background: var(--panel-2); color: var(--text); padding: 12px 16px; border-radius: 10px; box-shadow: var(--shadow); opacity: 0; transform: translateY(10px); transition: opacity 0.25s, transform 0.25s; }
.toast.show { opacity: 1; transform: none; }
.toast-error { background: var(--danger); color: #fff; }
.toast-success { background: var(--accent); color: #062b14; }

@media (max-width: 600px) {
  .container { padding: 10px; }
  .panel { padding: 14px; }
  .track-title { font-size: 1.25rem; }
  .btn-xl { width: 100%; }
  .cell-title { font-size: 0.75rem; }
  .card-grid.size-5 .cell-sub { display: none; }
  .player-grid .cell { min-height: 72px; }
}

@media print {
  body { background: #fff; color: #000; }
  .no-print, #toasts { display: none !important; }
  .container { max-width: none; padding: 0; }
  .cards-list { display: block; }
  .card-sheet { box-shadow: none; background: none; border: 1px solid #000; page-break-inside: avoid; break-inside: avoid; margin: 0 0 12mm; padding: 6mm; }
  .card-sheet-header h3 { color: #000; }
  .cell { background: #fff; color: #000; border-color: #000; min-height: 22mm; }
  .cell-sub { color: #333; }
  .cell.free { background: #eee; }
  .muted { color: #333; }
}

/* Códigos QR */
.card-qr { width: 96px; height: 96px; flex-shrink: 0; }
.card-qr svg { width: 100%; height: 100%; display: block; border-radius: 6px; }
.card-sheet-header { align-items: flex-start; }
.deal-panel { text-align: center; }
.deal-qr { margin: 0 auto; width: min(80vw, 62vh, 640px); }
.deal-qr svg { width: 100%; height: auto; display: block; border-radius: 12px; }
.deal-hint { color: var(--muted); margin: 12px 0; }
.deal-jump { width: 120px; }
.deal-jump .input { padding: 8px; }
@media print {
  .card-qr { width: 30mm; height: 30mm; }
}

/* Clasificación */
.leaderboard { display: flex; flex-direction: column; gap: 4px; margin: 8px 0 16px; }
.lb-row {
  display: grid; grid-template-columns: 28px minmax(90px, 1.2fr) minmax(80px, 2fr) 52px minmax(70px, auto);
  align-items: center; gap: 10px; width: 100%; text-align: left;
  background: var(--panel-2); border: 1px solid transparent; border-radius: 8px; padding: 8px 10px; color: var(--text); font: inherit; cursor: pointer;
}
.lb-row:hover { border-color: #4a4a4a; }
.lb-full { border-color: var(--accent); }
.lb-line { border-color: var(--line); }
.lb-rank { color: var(--muted); font-variant-numeric: tabular-nums; }
.lb-name { font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lb-bar { display: block; height: 10px; background: #3a3a3a; border-radius: 0 4px 4px 0; overflow: hidden; }
.lb-bar-fill { display: block; height: 100%; background: var(--accent); border-radius: 0 4px 4px 0; transition: width 0.3s; }
.lb-value { color: var(--muted); font-variant-numeric: tabular-nums; text-align: right; }
.lb-status { color: var(--muted); font-size: 0.85rem; white-space: nowrap; }
.lb-full .lb-status, .lb-line .lb-status { color: var(--text); font-weight: 600; }
.deal-name { width: min(100%, 320px); }
@media (max-width: 600px) {
  .lb-row { grid-template-columns: 24px minmax(70px, 1fr) minmax(60px, 1.4fr) 48px; }
  .lb-status { grid-column: 2 / -1; }
}

/* Tarjeta en directo */
.live { text-align: center; margin: 0 0 8px; }
.live-now { background: var(--panel); border-radius: var(--radius); padding: 10px 12px; margin: 0; font-weight: 600; }
.live-msg { background: rgba(62, 166, 255, 0.15); color: var(--text); border-radius: var(--radius); padding: 10px 12px; margin: 8px 0 0; font-weight: 600; }
.feed { margin: 12px 0; }
.feed-list { list-style: none; padding: 0; margin: 0; max-height: 240px; overflow: auto; background: var(--panel); border-radius: var(--radius); }
.feed-list li { padding: 8px 12px; border-bottom: 1px solid #2a2a2a; font-size: 0.95rem; }
.feed-n { display: inline-block; width: 32px; color: var(--muted); }

/* Letra (karaoke) */
.lyrics { margin: 12px 0 0; }
.lyrics h3 { margin: 0; }
.lyrics-body { max-height: 260px; overflow: auto; background: var(--panel-2); border-radius: var(--radius); padding: 12px 14px; scroll-behavior: smooth; }
.lyrics.compact .lyrics-body { max-height: 200px; }
.lyric-line { margin: 0; padding: 4px 0; font-size: 1.05rem; line-height: 1.4; color: var(--muted); transition: color 0.2s, transform 0.2s; }
.lyric-line.past { color: #7a7a7a; }
.lyric-line.current { color: var(--text); font-weight: 700; font-size: 1.15rem; transform: translateX(4px); }
.lyrics-body:has(.lyric-line.current) .lyric-line:not(.current):not(.past) { color: var(--muted); }
.version { margin-top: -6px; }
.player-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 6px; }
.player-list li { background: var(--panel-2); border-radius: 8px; padding: 8px 12px; }

/* Generador de éxitos */
.generator { background: var(--panel-2); border-radius: 10px; padding: 10px 14px; margin-bottom: 12px; }
.generator summary { cursor: pointer; font-weight: 600; padding: 4px 0; }
.generator .fields { margin-top: 10px; }
.check-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 4px 12px; }
.check-grid .field-check { padding-bottom: 0; align-self: auto; }
.gen-result { margin-top: 8px; }
.selected-source { background: rgba(29, 185, 84, 0.15); border-radius: 8px; padding: 10px 12px; }

/* ---- Biznet Crowd Mic (modo concierto) ---- */
.sing-panel { text-align: center; transition: background 0.3s; }
.sing-state { padding: 12px 0; }
.sing-icon { font-size: 4rem; line-height: 1; }
.sing-panel h2 { margin: 8px 0 4px; }
.sing-actions { justify-content: center; flex-direction: column; }
.sing-actions .btn { width: 100%; }
.st-ready { background: linear-gradient(180deg, rgba(29, 185, 84, 0.25), var(--panel)); }
.st-prep { background: linear-gradient(180deg, rgba(245, 166, 35, 0.25), var(--panel)); }
.st-live { background: linear-gradient(180deg, rgba(229, 72, 77, 0.35), var(--panel)); }
.st-muted { background: linear-gradient(180deg, rgba(245, 166, 35, 0.15), var(--panel)); }
.st-off { background: linear-gradient(180deg, rgba(120, 120, 120, 0.25), var(--panel)); }
.live-pulse { width: 18px; height: 18px; border-radius: 50%; background: var(--danger); margin: 0 auto 8px; animation: pulse 1s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(229, 72, 77, 0.6); } 100% { box-shadow: 0 0 0 16px rgba(229, 72, 77, 0); } }
.dj-counts .stat strong { font-size: 1.4rem; }
.stat-ready { background: rgba(29, 185, 84, 0.2); }
.stat-prep { background: rgba(245, 166, 35, 0.2); }
.stat-live { background: rgba(229, 72, 77, 0.25); }
.slot-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 12px; }
.slot { background: var(--panel-2); border-radius: var(--radius); padding: 12px; border: 2px solid transparent; }
.slot h3 { margin: 0; color: var(--text); }
.slot-name { font-size: 1.2rem; font-weight: 700; margin: 6px 0; }
.slot-live { border-color: var(--danger); }
.slot-prepared, .slot-preparing { border-color: var(--warn); }
.slot-muted { border-color: var(--muted); }
.slot-selected { border-color: var(--accent); }
.slot-metrics { display: flex; flex-wrap: wrap; gap: 4px 8px; margin: 4px 0; }
.badge-live { background: var(--danger); color: #fff; }
.badge-muted { background: var(--muted); color: #111; }
.aec-good { color: var(--accent); }
.aec-fair { color: var(--warn); }
.aec-bad { color: var(--danger); }
.ready-list { list-style: none; padding: 0; margin: 8px 0 0; max-height: 60vh; overflow: auto; }
.ready-row { display: flex; justify-content: space-between; align-items: center; gap: 8px; padding: 8px 0; border-bottom: 1px solid var(--panel-2); flex-wrap: wrap; }
.ready-row .actions { margin-top: 0; }
.ready-info { display: flex; flex-direction: column; }
.metrics { background: var(--panel-2); padding: 8px; border-radius: 8px; white-space: pre-wrap; overflow-x: auto; }
.technical { margin-top: 12px; }
.technical summary, details.panel summary { cursor: pointer; font-weight: 700; }
.audio-panel audio { margin-top: 4px; }
.concert-access .actions { margin-top: 8px; }
.concert-qr svg { max-width: 240px; }

/* ---- Bingo Hit Live ---- */
.live-video-wrap { margin: 8px 0 12px; }
.live-frame { position: relative; aspect-ratio: 16 / 9; background: #000; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.live-video { width: 100%; height: 100%; object-fit: cover; display: block; background: #000; }
.live-preview { object-fit: contain; }
.live-placeholder { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--muted); text-align: center; padding: 12px; background: linear-gradient(180deg, #1a1a1a, #0d0d0d); }
.live-placeholder-icon { font-size: 2.5rem; margin-bottom: 4px; }
.live-placeholder[hidden] { display: none; }
.live-topbar { position: absolute; top: 8px; left: 8px; right: 8px; display: flex; gap: 8px; align-items: center; pointer-events: none; }
.live-badge { border-radius: 999px; padding: 3px 10px; font-size: 0.75rem; font-weight: 800; letter-spacing: 0.04em; background: rgba(0, 0, 0, 0.6); color: var(--muted); }
.live-badge.live-on { background: var(--danger); color: #fff; animation: live-blink 1.6s infinite; }
@keyframes live-blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.55; } }
.live-link-state { font-size: 0.75rem; font-weight: 700; padding: 3px 8px; border-radius: 999px; background: rgba(0, 0, 0, 0.6); }
.live-link-state:empty { display: none; }
.link-reconnecting { color: var(--warn); }
.link-interrupted, .link-offline { color: var(--danger); }
.live-viewers { margin-left: auto; background: rgba(0, 0, 0, 0.6); padding: 3px 8px; border-radius: 999px; }
.live-overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(0, 0, 0, 0.45); }
.live-overlay[hidden] { display: none; }
.live-cta { box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5); }
.cam-paused .live-video { filter: brightness(0.3) blur(6px); }
.reaction-layer { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.reaction-float { position: absolute; bottom: 0; font-size: 1.8rem; animation: reaction-up 2.1s ease-out forwards; opacity: 0; }
@keyframes reaction-up { 0% { transform: translateY(0) scale(0.6); opacity: 0; } 15% { opacity: 1; } 100% { transform: translateY(-160px) scale(1.2); opacity: 0; } }
.live-reactions { display: flex; gap: 6px; justify-content: center; margin-top: 8px; }
.reaction-btn { font-size: 1.25rem; padding: 6px 12px; }
.live-video-wrap.live-floating .live-frame { position: fixed; top: 10px; right: 10px; width: 42vw; max-width: 260px; z-index: 50; aspect-ratio: 16 / 9; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6); cursor: pointer; }
.live-video-wrap.live-floating .live-reactions { display: none; }
.live-video-wrap.live-floating .live-topbar { font-size: 0.7rem; }
.live-video-wrap.live-floating .live-overlay .btn { font-size: 0.8rem; padding: 6px 10px; }
.bingo-btn { width: 100%; margin: 4px 0 8px; animation: pulse-btn 1.2s infinite; }
.bingo-btn[hidden] { display: none; }
@keyframes pulse-btn { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.03); } }
.winner-overlay { position: fixed; inset: 0; background: rgba(0, 0, 0, 0.75); display: flex; align-items: center; justify-content: center; z-index: 100; padding: 16px; }
.winner-card { background: var(--panel); border-radius: 20px; padding: 28px 24px; text-align: center; max-width: 360px; width: 100%; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7); animation: winner-pop 0.4s ease-out; }
.winner-emoji { font-size: 3.5rem; }
.winner-name { font-size: 1.8rem; font-weight: 800; color: var(--accent); margin: 4px 0; }
@keyframes winner-pop { from { transform: scale(0.6); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.level-meter { flex: 1; height: 10px; background: var(--panel-2); border-radius: 999px; overflow: hidden; min-width: 120px; }
.level-fill { height: 100%; width: 0; background: linear-gradient(90deg, var(--accent), var(--warn) 75%, var(--danger)); transition: width 0.1s linear; }
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 8px 16px; }
.kv { display: flex; flex-direction: column; }
.kv strong { word-break: break-all; }
.bingo-claims li.ok { border-left: 3px solid var(--accent); }
.live-panel .fields { margin-top: 8px; }
.live-video-wrap.live-floating::before { content: ''; display: block; aspect-ratio: 16 / 9; }

/* ---- Plataforma Bingo Hit: eventos, compra, paneles ---- */
.event-hero { margin: 8px 0 12px; }
.event-cover { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.event-head h1 { margin: 8px 0 4px; }
.event-facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 8px; margin-bottom: 8px; }
.event-fact { display: flex; gap: 8px; align-items: center; background: var(--panel-2); border-radius: 8px; padding: 8px 10px; font-weight: 600; }
.event-fact-icon { font-size: 1.2rem; }
.countdown-clock { font-size: 2rem; font-weight: 800; letter-spacing: 0.05em; font-variant-numeric: tabular-nums; }
.acquire h2 { margin-top: 0; }
.qty-row { display: flex; align-items: center; gap: 12px; margin: 8px 0; flex-wrap: wrap; }
.qty-btn { font-size: 1.4rem; width: 48px; padding: 6px 0; }
.qty-value { font-size: 1.6rem; min-width: 32px; text-align: center; }
.order-total { font-size: 1.3rem; font-weight: 800; color: var(--accent); margin: 4px 0 8px; }
.acquire .btn-xl { width: 100%; margin-top: 8px; }
.card-tabs-wrap { display: flex; flex-direction: column; align-items: center; gap: 4px; margin: 8px 0; }
.card-tabs { display: flex; gap: 6px; flex-wrap: wrap; justify-content: center; }
.player-card[hidden] { display: none; }
.event-card { background: var(--panel-2); border-radius: var(--radius); padding: 12px; margin: 10px 0; border-left: 4px solid transparent; }
.event-card h3 { margin: 0; color: var(--text); }
.event-card.status-live { border-left-color: var(--danger); }
.event-card.status-published { border-left-color: var(--accent); }
.event-card.status-draft { border-left-color: var(--warn); }
.radio-row { display: flex; gap: 12px; flex-wrap: wrap; margin: 6px 0; }
.radio { display: flex; align-items: center; gap: 6px; background: var(--panel-2); padding: 8px 12px; border-radius: 8px; cursor: pointer; }
.wizard h3 { margin: 16px 0 6px; color: var(--accent); }
.wizard textarea.input { min-height: 60px; resize: vertical; }
.table-wrap { overflow-x: auto; }
.table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.table th, .table td { text-align: left; padding: 6px 8px; border-bottom: 1px solid var(--panel-2); white-space: nowrap; }
.perm-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 6px 12px; margin: 8px 0; }
