:root {
  --bg: #07080d;
  --bg2: #0d1020;
  --gold: #ffca3a;
  --gold-2: #ff9e2c;
  --red: #ff2e51;
  --red-2: #c81d3c;
  --ink: #eef1ff;
  --muted: #8a90b8;
  --ok: #37e28a;
}

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

html, body {
  width: 100%; height: 100%;
  background: var(--bg);
  color: var(--ink);
  font-family: "Segoe UI", system-ui, sans-serif;
  overflow: hidden;
}

/* ---------- Background layers ---------- */
.bg-arena {
  position: fixed; inset: 0;
  background:
    radial-gradient(120% 90% at 50% -10%, #1b2140 0%, var(--bg2) 45%, var(--bg) 100%);
  z-index: 0;
}
.bg-glow {
  position: fixed; inset: -20%;
  background:
    radial-gradient(40% 40% at 30% 30%, rgba(255,46,81,0.18), transparent 60%),
    radial-gradient(45% 45% at 72% 65%, rgba(255,202,58,0.16), transparent 60%);
  filter: blur(20px);
  z-index: 1;
  animation: drift 18s ease-in-out infinite alternate;
}
@keyframes drift {
  0%   { transform: translate3d(-2%, -1%, 0) scale(1.02); }
  100% { transform: translate3d(3%, 2%, 0) scale(1.08); }
}
#particles { position: fixed; inset: 0; z-index: 2; }
.vignette {
  position: fixed; inset: 0; z-index: 3; pointer-events: none;
  box-shadow: inset 0 0 26vh 8vh rgba(0,0,0,0.75);
}

/* ---------- Scene system ---------- */
.scene {
  position: fixed; inset: 0; z-index: 5;
  display: flex;
  align-items: center; justify-content: center;
  flex-direction: column;
  padding: 4vh 4vw;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .45s ease, visibility .45s ease;
}
.scene.is-active { opacity: 1; visibility: visible; pointer-events: auto; z-index: 6; }

/* ---------- IDLE ---------- */
.idle-wrap { text-align: center; }
.badge {
  display: inline-block;
  letter-spacing: .55em;
  font-size: clamp(11px, 1.4vw, 20px);
  font-weight: 700;
  color: var(--gold);
  padding: .55em 1.2em;
  border: 1px solid rgba(255,202,58,.35);
  border-radius: 999px;
  background: rgba(255,202,58,.06);
  text-indent: .55em;
  margin-bottom: 4.5vh;
}
.logo {
  font-weight: 900;
  font-size: clamp(64px, 18vw, 320px);
  line-height: .9;
  letter-spacing: -.02em;
  display: flex; justify-content: center; gap: .12em;
  filter: drop-shadow(0 8px 40px rgba(255,46,81,.35));
}
.logo .arm {
  color: var(--ink);
  -webkit-text-stroke: 2px rgba(255,255,255,.15);
}
.logo .zonk {
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-2) 55%, var(--red) 120%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.logo-sub {
  margin-top: 2vh;
  font-size: clamp(18px, 3.4vw, 54px);
  font-weight: 800;
  letter-spacing: .7em;
  text-indent: .7em;
  color: var(--ink);
  opacity: .92;
}
.pulse-line {
  margin: 5vh auto 0;
  width: min(48vw, 640px); height: 4px;
  background: rgba(255,255,255,.08);
  border-radius: 99px; overflow: hidden;
}
.pulse-line span {
  display: block; height: 100%; width: 40%;
  background: linear-gradient(90deg, transparent, var(--gold), var(--red), transparent);
  animation: sweep 2.4s ease-in-out infinite;
}
@keyframes sweep {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(320%); }
}
.idle-foot {
  margin-top: 5vh;
  color: var(--muted);
  font-size: clamp(12px, 1.6vw, 22px);
  letter-spacing: .2em;
  display: inline-flex; align-items: center; gap: .8em;
}
.idle-foot .dot {
  width: .7em; height: .7em; border-radius: 50%;
  background: var(--ok); box-shadow: 0 0 12px var(--ok);
  animation: blink 1.4s ease-in-out infinite;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: .25; } }

/* ---------- CLASSEMENT ---------- */
#scene-classement { justify-content: flex-start; }
.cls-head { text-align: center; margin: 2vh 0 3vh; }
.cls-kicker {
  letter-spacing: .5em; text-indent: .5em; color: var(--gold);
  font-weight: 700; font-size: clamp(12px, 1.5vw, 20px);
}
.cls-head h2 {
  font-size: clamp(40px, 8vw, 120px); font-weight: 900; letter-spacing: .04em;
  background: linear-gradient(180deg, var(--ink), var(--muted));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.cls-sub { color: var(--muted); font-size: clamp(13px, 1.6vw, 22px); letter-spacing: .05em; margin-top: .6em; }
.cls-next-tag { color: var(--muted); font-size: clamp(11px, 1.2vw, 16px); }
.cls-next-tag b { color: var(--gold); }
.cls-body { width: min(1200px, 92vw); }
.cls-empty {
  text-align: center; color: var(--muted);
  font-size: clamp(16px, 2.4vw, 30px);
  padding: 10vh 0; border: 1px dashed rgba(255,255,255,.12); border-radius: 18px;
}
.cls-table { width: 100%; border-collapse: collapse; font-size: clamp(16px, 2vw, 30px); }
.cls-table th, .cls-table td { padding: .7em 1em; text-align: left; }
.cls-table thead th { color: var(--gold); letter-spacing: .1em; font-size: .7em; text-transform: uppercase; }
.cls-table tbody tr { background: rgba(255,255,255,.03); }
.cls-table tbody tr + tr { border-top: 6px solid transparent; }
.cls-table .rank { width: 1em; color: var(--gold); font-weight: 900; }

/* ---------- MEJA LOT (2 kolom) ---------- */
#scene-lot { justify-content: flex-start; }
.lot-head { text-align: center; margin: 2vh 0 2vh; }
.lot-kicker { letter-spacing: .5em; text-indent: .5em; color: var(--gold); font-weight: 700; font-size: clamp(11px, 1.4vw, 18px); }
.lot-head h2 { font-size: clamp(32px, 6vw, 90px); font-weight: 900; letter-spacing: .05em; background: linear-gradient(180deg, var(--ink), var(--muted)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lot-board { width: min(1700px, 96vw); flex: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; overflow: hidden; padding-bottom: 3vh; }
.lot-col { display: flex; flex-direction: column; min-height: 0; border: 1px solid rgba(255,255,255,.1); border-radius: 18px; background: rgba(255,255,255,.02); overflow: hidden; }
.lot-col-a { box-shadow: inset 3px 0 0 var(--grp-a, #4d8dff); }
.lot-col-b { box-shadow: inset 3px 0 0 var(--grp-b, #ff8a3a); }
.lot-col-m { box-shadow: inset 3px 0 0 var(--gold); }
.lot-board.single-col { grid-template-columns: 1fr; max-width: 900px; margin: 0 auto; }
.lot-col-head { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; border-bottom: 1px solid rgba(255,255,255,.08); }
.lot-badge { font-weight: 900; letter-spacing: .1em; font-size: clamp(18px, 2.4vw, 34px); padding: .1em .6em; border-radius: 10px; }
.lot-badge.a { color: #cfe0ff; background: rgba(77,141,255,.18); }
.lot-badge.b { color: #ffe0c8; background: rgba(255,138,58,.18); }
.lot-badge.m { color: var(--gold); background: rgba(255,202,58,.18); }
.lot-col-count { font-weight: 900; font-size: clamp(20px, 2.6vw, 40px); color: var(--gold); }
.lot-col-body { flex: 1; overflow-y: auto; padding: 14px; display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 12px; align-content: start; }
.lot-empty { grid-column: 1/-1; text-align: center; color: var(--muted); padding: 8vh 0; font-size: clamp(14px, 1.8vw, 24px); }
.lot-table { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 12px; padding: 10px 12px; }
.lot-table.fresh { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold), 0 0 24px rgba(255,202,58,.3); }
.lot-table .lt-code { font-weight: 900; font-size: clamp(15px, 1.5vw, 22px); letter-spacing: .03em; margin-bottom: 6px; }
.lot-col-a .lt-code { color: #cfe0ff; } .lot-col-b .lt-code { color: #ffe0c8; }
.lot-table .lt-name { font-size: clamp(12px, 1.15vw, 17px); line-height: 1.45; color: var(--ink); }
.lot-table .lt-id { font-family: ui-monospace, Menlo, Consolas, monospace; font-weight: 700; font-size: .82em; color: var(--gold); opacity: .92; margin-left: 4px; white-space: nowrap; }
.ps-card .pc-id { margin-top: 6px; font-family: ui-monospace, Menlo, Consolas, monospace; font-weight: 700; letter-spacing: .08em; color: var(--gold); font-size: clamp(12px, 1.1vw, 16px); }
.lot-table .lt-name span { color: var(--muted); }

/* Papan Classement: daftar per orang (flat list), bukan grid kartu per meja seperti papan LOT. */
#cls-board .lot-col-body { display: flex; flex-direction: column; gap: 6px; }
.lt-winrow {
  display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px; padding: 7px 12px; font-size: clamp(13px, 1.3vw, 19px);
}
.lt-winname { font-weight: 800; color: var(--ink); }
.lt-windash { color: var(--muted); }
.lt-winicon { flex: none; }
.lt-wintag { margin-left: auto; color: var(--muted); font-size: .72em; letter-spacing: .04em; }
.lot-col-a .lt-wintag { color: #9db8e8; } .lot-col-b .lt-wintag { color: #e8b98f; } .lot-col-m .lt-wintag { color: var(--gold); }
.lt-winrow.fill { border-style: dashed; border-color: var(--gold); background: rgba(255,202,58,.08); }
.lt-winrow.fill .lt-wintag { color: var(--gold); }

.lot-badge.sf { color: #ff8fd0; background: rgba(255,143,208,.18); }
.lot-badge.f { color: var(--ok); background: rgba(55,226,138,.18); }
.lot-col-sf { box-shadow: inset 3px 0 0 #ff8fd0; } .lot-col-sf .lt-wintag { color: #ff8fd0; }
.lot-col-f { box-shadow: inset 3px 0 0 var(--ok); } .lot-col-f .lt-wintag { color: var(--ok); }
.lt-winrow.final-place { font-size: clamp(15px, 1.8vw, 26px); padding: 10px 16px; }
.lt-winrow.final-place .lt-winicon { font-size: 1.3em; }
.lt-winrow.pending { opacity: .85; background: rgba(255,255,255,.03); border-style: dashed; }
.lt-winrow.pending .lt-winicon { animation: lot-pending-spin 2.2s linear infinite; display: inline-block; }
.lt-winrow.final-place .lt-wintag { color: var(--gold); font-weight: 800; }

/* ---- Reveal Klasemen Akhir (hadiah Mobil) ---- */
.cls-grand { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold), 0 0 60px rgba(255,202,58,.25); }
.cls-winner-hero {
  text-align: center; padding: 3vh 2vw 3.5vh; margin: 0 2vw 1vh;
  background: radial-gradient(ellipse at center, rgba(255,202,58,.16), transparent 70%);
  border-bottom: 1px solid rgba(255,202,58,.3);
}
.cls-winner-car { font-size: clamp(48px, 8vw, 110px); filter: drop-shadow(0 0 24px rgba(255,202,58,.6)); animation: cls-car-bounce 1.8s ease-in-out infinite; }
@keyframes cls-car-bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.cls-winner-label { letter-spacing: .35em; text-indent: .35em; color: var(--gold); font-weight: 800; font-size: clamp(12px, 1.6vw, 20px); margin-top: 1vh; }
.cls-winner-name {
  font-size: clamp(28px, 6vw, 72px); font-weight: 900; margin-top: 1vh;
  background: linear-gradient(180deg, #fff, var(--gold) 60%, var(--gold-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: cls-winner-glow 2.4s ease-in-out infinite;
}
@keyframes cls-winner-glow {
  0%, 100% { filter: drop-shadow(0 0 6px rgba(255,202,58,.4)); }
  50% { filter: drop-shadow(0 0 26px rgba(255,202,58,.85)); }
}

.confetti-layer { position: fixed; inset: 0; pointer-events: none; z-index: 500; overflow: hidden; }
.confetti-piece {
  position: absolute; top: -20px; width: 10px; height: 16px; opacity: .95; border-radius: 2px;
  animation-name: confetti-fall; animation-timing-function: cubic-bezier(.4,.1,.6,.9); animation-fill-mode: forwards;
}
@keyframes confetti-fall {
  0% { transform: translate(0, 0) rotate(0deg); opacity: 1; }
  100% { transform: translate(var(--drift), 108vh) rotate(var(--rot)); opacity: .25; }
}

.lot-pending { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3vh; }
.lot-pending-dice { font-size: clamp(50px, 9vw, 130px); animation: lot-pending-spin 2.2s linear infinite; }
.lot-pending-text { letter-spacing: .3em; text-indent: .3em; color: var(--gold); font-weight: 800; font-size: clamp(16px, 2.2vw, 32px); }
@keyframes lot-pending-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* ---------- SHOWCASE PESERTA ---------- */
#scene-participants { justify-content: flex-start; }
.ps-head { text-align: center; margin: 2vh 0 2vh; }
.ps-kicker { letter-spacing: .5em; text-indent: .5em; color: var(--gold); font-weight: 700; font-size: clamp(11px, 1.4vw, 18px); }
.ps-head h2 {
  font-size: clamp(36px, 7vw, 104px); font-weight: 900; letter-spacing: .06em;
  background: linear-gradient(180deg, var(--ink), var(--muted)); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.ps-meta { margin-top: .6vh; display: inline-flex; gap: .8em; align-items: center; font-size: clamp(14px, 1.8vw, 26px); color: var(--muted); }
.ps-meta b { color: var(--gold); }
.ps-dot { opacity: .5; }
.ps-grid {
  width: min(1600px, 95vw); flex: 1; overflow: hidden;
  display: grid; gap: 16px; align-content: center;
  grid-template-columns: repeat(var(--cols, 5), 1fr);
}
.ps-empty { grid-column: 1/-1; text-align: center; color: var(--muted); padding: 12vh 0; font-size: clamp(16px, 2.4vw, 30px); }
.ps-card {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 10px; padding: 16px 12px;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.1); border-radius: 16px;
}
.ps-card img {
  width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 12px;
  background: var(--bg2); border: 1px solid rgba(255,255,255,.08);
}
.ps-card .pc-name { font-weight: 800; font-size: clamp(14px, 1.35vw, 22px); line-height: 1.1; }
.ps-card .pc-sub { color: var(--gold); font-size: clamp(11px, 1vw, 15px); letter-spacing: .05em; }
.ps-card .pc-dom { color: var(--muted); font-size: clamp(10px, .95vw, 14px); }
.ps-progress { width: min(1600px, 95vw); height: 4px; background: rgba(255,255,255,.08); border-radius: 99px; overflow: hidden; margin: 1.5vh 0 3vh; }
.ps-progress span { display: block; height: 100%; width: 0%; background: linear-gradient(90deg, var(--gold), var(--red)); }

/* ---------- DAFTAR HADIR ---------- */
#scene-attendance { justify-content: flex-start; }
.att-head { text-align: center; margin: 2vh 0 2.5vh; }
.att-kicker { letter-spacing: .5em; text-indent: .5em; color: var(--gold); font-weight: 700; font-size: clamp(11px, 1.4vw, 18px); }
.att-head h2 {
  font-size: clamp(36px, 7vw, 100px); font-weight: 900; letter-spacing: .04em;
  background: linear-gradient(180deg, var(--gold), var(--gold-2)); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.att-meta { margin-top: 1vh; display: inline-flex; gap: 1.4em; align-items: center; font-size: clamp(14px, 1.8vw, 26px); color: var(--muted); }
.att-activity { color: var(--ink); border: 1px solid rgba(255,255,255,.15); padding: .2em .9em; border-radius: 99px; letter-spacing: .15em; font-size: .8em; }
.att-count b { color: var(--ok); font-size: 1.35em; }
.att-grid {
  width: min(1500px, 94vw); flex: 1; overflow: hidden;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 14px; align-content: start; padding-bottom: 4vh;
}
.att-empty { grid-column: 1/-1; text-align: center; color: var(--muted); padding: 12vh 0; border: 1px dashed rgba(255,255,255,.12); border-radius: 18px; font-size: clamp(16px, 2.4vw, 30px); }
.att-card {
  display: flex; align-items: center; gap: 12px; padding: 10px 14px;
  background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
}
.att-card.fresh { border-color: var(--ok); box-shadow: 0 0 0 1px var(--ok), 0 0 30px rgba(55,226,138,.35); }
.att-card img { width: 54px; height: 54px; border-radius: 10px; object-fit: cover; background: var(--bg2); flex: none; }
.att-card .ac-name { font-weight: 800; font-size: clamp(15px, 1.5vw, 22px); line-height: 1.1; }
.att-card .ac-sub { color: var(--muted); font-size: clamp(11px, 1.1vw, 15px); }

/* Pop check-in besar */
.checkin {
  position: fixed; left: 50%; top: 50%; transform: translate(-50%, -50%) scale(.7);
  z-index: 40; opacity: 0; pointer-events: none;
  display: flex; align-items: center; gap: 28px;
  background: linear-gradient(180deg, rgba(20,24,40,.96), rgba(10,12,22,.96));
  border: 2px solid var(--ok); border-radius: 24px; padding: 28px 40px;
  box-shadow: 0 30px 90px rgba(55,226,138,.35);
}
.checkin-photo { width: clamp(120px, 16vw, 220px); height: clamp(120px, 16vw, 220px); border-radius: 18px; object-fit: cover; background: var(--bg2); }
.checkin-name { font-size: clamp(30px, 5vw, 76px); font-weight: 900; color: var(--ink); line-height: 1; }
.checkin-tag { margin-top: .4em; font-size: clamp(20px, 3vw, 44px); font-weight: 900; letter-spacing: .1em; color: var(--ok); }

/* ---------- Flash + connection ---------- */
.flash {
  position: fixed; left: 50%; bottom: 8vh; transform: translateX(-50%) translateY(30px);
  z-index: 20; opacity: 0;
  background: linear-gradient(180deg, var(--red), var(--red-2));
  color: #fff; font-weight: 800; letter-spacing: .06em;
  padding: 1em 2em; border-radius: 14px;
  font-size: clamp(16px, 2.2vw, 32px);
  box-shadow: 0 20px 60px rgba(255,46,81,.4);
}
.conn {
  position: fixed; right: 16px; bottom: 12px; z-index: 30;
  display: inline-flex; align-items: center; gap: .5em;
  font-size: 12px; color: var(--muted); letter-spacing: .1em;
  background: rgba(0,0,0,.35); padding: .4em .8em; border-radius: 99px;
}
.conn-dot { width: 9px; height: 9px; border-radius: 50%; background: #999; }
.conn.on  .conn-dot { background: var(--ok); box-shadow: 0 0 10px var(--ok); }
.conn.off .conn-dot { background: var(--red); box-shadow: 0 0 10px var(--red); }

/* ================= BAGAN (corong per ronde) ================= */
#scene-bagan { justify-content: flex-start; }
.bagan-head { text-align: center; margin: 2vh 0 1.5vh; }
.bagan-kicker { letter-spacing: .5em; text-indent: .5em; color: var(--gold); font-weight: 700; font-size: clamp(11px, 1.4vw, 18px); }
.bagan-head h2 { font-size: clamp(32px, 6vw, 90px); font-weight: 900; letter-spacing: .05em; background: linear-gradient(180deg, var(--ink), var(--muted)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.bagan-sub { color: var(--muted); font-size: clamp(13px, 1.6vw, 22px); letter-spacing: .05em; margin-top: .5em; }
.bagan-track {
  width: min(1800px, 97vw); flex: 1; min-height: 0;
  display: flex; align-items: center; gap: 6px;
  overflow-x: auto; overflow-y: hidden; padding: 2vh 12px 3vh;
}
.bagan-empty { margin: auto; color: var(--muted); font-size: clamp(16px, 2.4vw, 30px); }
.bagan-stage {
  flex: 0 0 auto; width: clamp(168px, 15vw, 236px);
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 20px 16px; border-radius: 18px;
  border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.03);
  box-shadow: inset 0 3px 0 var(--stg, var(--gold));
}
.bagan-stage.st-grp { --stg: #4d8dff; }
.bagan-stage.st-m   { --stg: var(--gold); }
.bagan-stage.st-sf  { --stg: #ff8fd0; }
.bagan-stage.st-f   { --stg: var(--ok); }
.bagan-stage.st-champ {
  --stg: var(--gold); width: clamp(188px, 16vw, 256px);
  background: radial-gradient(120% 120% at 50% 0, rgba(255,202,58,.16), rgba(255,255,255,.03));
}
.bs-round { color: var(--muted); font-weight: 800; letter-spacing: .18em; font-size: clamp(11px, 1.2vw, 16px); }
.bs-phase { color: var(--stg, var(--gold)); font-weight: 900; letter-spacing: .05em; font-size: clamp(15px, 1.7vw, 24px); margin-top: 2px; }
.bs-groups .bg-gtag { display: inline-block; font-size: .72em; font-weight: 900; padding: .05em .45em; border-radius: 6px; margin-left: 3px; }
.bg-gtag.g-a { color: #cfe0ff; background: rgba(77,141,255,.22); }
.bg-gtag.g-b { color: #ffe0c8; background: rgba(255,138,58,.22); }
.bs-num { font-size: clamp(38px, 5vw, 74px); font-weight: 900; color: var(--ink); line-height: 1; margin-top: 10px; }
.bs-numlbl { color: var(--muted); font-size: clamp(11px, 1.1vw, 15px); letter-spacing: .12em; text-transform: uppercase; }
.bs-bar { width: 100%; height: 8px; border-radius: 6px; background: rgba(255,255,255,.08); margin: 12px 0 10px; overflow: hidden; }
.bs-bar span { display: block; height: 100%; border-radius: 6px; background: var(--stg, var(--gold)); box-shadow: 0 0 14px var(--stg, var(--gold)); }
.bs-meta { color: var(--ink); font-size: clamp(12px, 1.25vw, 18px); }
.bs-meta b { color: var(--stg, var(--gold)); }
.bs-prog { color: var(--muted); font-size: clamp(10px, 1vw, 14px); margin-top: 4px; }
.bagan-arrow { flex: 0 0 auto; color: var(--muted); font-size: clamp(20px, 2.4vw, 38px); opacity: .8; }
.bagan-arrow.dim { opacity: .4; }
.bs-trophy { font-size: clamp(40px, 5vw, 72px); filter: drop-shadow(0 0 18px rgba(255,202,58,.55)); }
.st-champ .bs-champ-name { font-size: clamp(16px, 1.8vw, 26px); font-weight: 900; color: var(--gold); margin-top: 6px; }
.st-champ.pending .bs-champ-name { color: var(--muted); font-weight: 700; }
