/* Falah Fest - Dark Theme */
:root {
  --bg-0: #07090f;
  --bg-1: #0d1220;
  --bg-2: #131a2c;
  --bg-3: #1a2238;
  --line: rgba(255,255,255,.08);
  --line-2: rgba(255,255,255,.14);
  --txt: #e6ecff;
  --txt-2: #aab2c8;
  --txt-3: #7c8499;
  --acc: #7c5cff;
  --acc-2: #00d4ff;
  --ok: #22c55e;
  --warn: #f59e0b;
  --err: #ef4444;
  --gold: #fbbf24;
  --silver: #cbd5e1;
  --bronze: #d97706;
  --grad: linear-gradient(135deg, #7c5cff 0%, #00d4ff 100%);
  --grad-2: linear-gradient(135deg, #ff5e93 0%, #7c5cff 100%);
  --grad-3: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
  --shadow: 0 10px 40px rgba(0,0,0,.4);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter", sans-serif;
  background: radial-gradient(1200px 600px at 0% 0%, rgba(124,92,255,.12), transparent 60%),
              radial-gradient(1000px 500px at 100% 0%, rgba(0,212,255,.10), transparent 60%),
              var(--bg-0);
  color: var(--txt);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  min-height: 100%;
}

a { color: var(--acc-2); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Layout shell */
.shell { display: flex; min-height: 100vh; }
.sidebar {
  width: 260px;
  background: var(--bg-1);
  border-right: 1px solid var(--line);
  padding: 20px 14px;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  flex-shrink: 0;
}
.sidebar .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  padding: 6px 8px;
}
.sidebar .brand img { width: 38px; height: 38px; border-radius: 10px; background: var(--grad); padding: 4px; }
.sidebar .brand .b-title { font-weight: 700; font-size: 16px; line-height: 1.1; }
.sidebar .brand .b-sub { font-size: 11px; color: var(--txt-3); }

.nav-group { margin-bottom: 18px; }
.nav-group .lbl { font-size: 11px; text-transform: uppercase; color: var(--txt-3); margin: 8px 8px 4px; letter-spacing: .08em; }
.nav-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; margin-bottom: 2px;
  border-radius: 10px; color: var(--txt-2);
  font-size: 14px; font-weight: 500;
  transition: background .15s, color .15s;
}
.nav-item:hover { background: var(--bg-2); color: var(--txt); text-decoration: none; }
.nav-item.active { background: var(--bg-3); color: var(--txt); border: 1px solid var(--line-2); }
.nav-item .ic { width: 18px; text-align: center; opacity: .85; }

.content {
  flex: 1;
  min-width: 0;
  padding: 22px 28px 60px;
}
.topbar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px;
}
.topbar h1 { font-size: 22px; font-weight: 700; }
.topbar .sub { font-size: 13px; color: var(--txt-3); margin-top: 2px; }
.topbar .right { display: flex; gap: 10px; align-items: center; }

.menu-toggle { display: none; }

@media (max-width: 900px) {
  .shell { flex-direction: column; }
  .sidebar {
    position: fixed; top: 0; left: -280px; height: 100vh; width: 260px; z-index: 50;
    transition: left .22s;
  }
  .sidebar.open { left: 0; box-shadow: 0 0 30px rgba(0,0,0,.6); }
  .menu-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 38px; height: 38px; background: var(--bg-2); border: 1px solid var(--line);
    border-radius: 10px; color: var(--txt); font-size: 18px;
  }
  .content { padding: 16px 14px 80px; }
  .topbar h1 { font-size: 18px; }
  .scrim {
    position: fixed; inset: 0; background: rgba(0,0,0,.55); z-index: 40;
    opacity: 0; pointer-events: none; transition: opacity .2s;
  }
  .scrim.open { opacity: 1; pointer-events: auto; }
}

/* Cards */
.card {
  background: var(--bg-1); border: 1px solid var(--line);
  border-radius: 16px; padding: 18px; margin-bottom: 16px;
}
.card h2 { font-size: 16px; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.card h2 .badge { font-size: 10px; padding: 3px 8px; border-radius: 20px; background: var(--bg-3); color: var(--txt-2); }

.grid { display: grid; gap: 14px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 720px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }
@media (min-width: 721px) and (max-width: 1100px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }

.stat {
  background: var(--bg-1); border: 1px solid var(--line); border-radius: 14px;
  padding: 16px 18px; position: relative; overflow: hidden;
}
.stat::before {
  content:""; position:absolute; right:-30px; top:-30px; width:120px; height:120px;
  background: var(--grad); opacity:.10; border-radius:50%;
}
.stat .lbl { font-size: 12px; color: var(--txt-3); text-transform: uppercase; letter-spacing: .06em; }
.stat .val { font-size: 26px; font-weight: 700; margin-top: 4px; }
.stat .delta { font-size: 12px; color: var(--ok); margin-top: 4px; }

/* Forms */
.input, .select, textarea.input {
  width: 100%; padding: 11px 13px;
  background: var(--bg-2); border: 1px solid var(--line);
  color: var(--txt); border-radius: 10px;
  font-size: 14px; font-family: inherit;
}
.input:focus, .select:focus, textarea.input:focus {
  outline: none; border-color: var(--acc); box-shadow: 0 0 0 3px rgba(124,92,255,.18);
}
label { display: block; font-size: 13px; color: var(--txt-2); margin-bottom: 6px; }
.field { margin-bottom: 12px; }
.field-row { display: flex; gap: 10px; }
.field-row .field { flex: 1; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 16px; font-size: 14px; font-weight: 600;
  border: 1px solid var(--line-2); background: var(--bg-2); color: var(--txt);
  border-radius: 10px; cursor: pointer; transition: transform .1s, background .15s;
  text-decoration: none;
}
.btn:hover { background: var(--bg-3); text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--grad); border-color: transparent; color: white; }
.btn-primary:hover { filter: brightness(1.08); background: var(--grad); }
.btn-danger { background: rgba(239,68,68,.15); border-color: rgba(239,68,68,.45); color: #fecaca; }
.btn-warn { background: rgba(245,158,11,.15); border-color: rgba(245,158,11,.4); color: #fcd34d; }
.btn-ok { background: rgba(34,197,94,.15); border-color: rgba(34,197,94,.4); color: #86efac; }
.btn-sm { padding: 7px 11px; font-size: 12px; border-radius: 8px; }
.btn-lg { padding: 14px 22px; font-size: 16px; }
.btn-ghost { background: transparent; }

/* Tables */
.table-wrap { overflow-x: auto; border-radius: 12px; border: 1px solid var(--line); }
table.tbl { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 600px; }
.tbl th, .tbl td { text-align: left; padding: 11px 14px; border-bottom: 1px solid var(--line); }
.tbl th { background: var(--bg-2); font-weight: 600; color: var(--txt-2); font-size: 12px; text-transform: uppercase; letter-spacing: .04em; }
.tbl tr:last-child td { border-bottom: none; }
.tbl tr:hover td { background: rgba(255,255,255,.02); }

/* Badges & chips */
.chip { display: inline-block; padding: 3px 9px; border-radius: 20px; font-size: 11px; background: var(--bg-3); color: var(--txt-2); border: 1px solid var(--line); }
.chip-ok { background: rgba(34,197,94,.15); color: #86efac; border-color: rgba(34,197,94,.3); }
.chip-warn { background: rgba(245,158,11,.15); color: #fcd34d; border-color: rgba(245,158,11,.3); }
.chip-err { background: rgba(239,68,68,.15); color: #fecaca; border-color: rgba(239,68,68,.3); }
.chip-info { background: rgba(0,212,255,.12); color: #67e8f9; border-color: rgba(0,212,255,.25); }

/* Flash */
.flash { padding: 12px 16px; border-radius: 10px; margin-bottom: 14px; font-size: 14px; border: 1px solid; }
.flash-ok { background: rgba(34,197,94,.12); border-color: rgba(34,197,94,.35); color: #86efac; }
.flash-err { background: rgba(239,68,68,.12); border-color: rgba(239,68,68,.35); color: #fecaca; }
.flash-info { background: rgba(0,212,255,.10); border-color: rgba(0,212,255,.3); color: #7dd3fc; }

/* Login & landing */
.center-screen {
  min-height: 100vh; display: grid; place-items: center; padding: 20px;
}
.login-card {
  width: 100%; max-width: 420px;
  background: var(--bg-1); border: 1px solid var(--line);
  border-radius: 20px; padding: 30px; box-shadow: var(--shadow);
}
.login-card .logo {
  width: 60px; height: 60px; border-radius: 16px; background: var(--grad);
  display: grid; place-items: center; margin: 0 auto 18px;
  font-size: 26px; font-weight: 700; color: white;
}
.login-card h1 { text-align: center; font-size: 22px; margin-bottom: 6px; }
.login-card .sub { text-align: center; color: var(--txt-3); font-size: 13px; margin-bottom: 24px; }

.role-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; max-width: 720px; margin: 0 auto; }
@media (max-width: 600px) { .role-grid { grid-template-columns: 1fr; } }
.role-card {
  background: var(--bg-1); border: 1px solid var(--line); border-radius: 16px;
  padding: 22px; text-align: center; transition: transform .12s, border-color .12s;
}
.role-card:hover { transform: translateY(-3px); border-color: var(--line-2); text-decoration: none; }
.role-card .ic { font-size: 30px; margin-bottom: 10px; }
.role-card .nm { font-weight: 700; font-size: 16px; color: var(--txt); }
.role-card .ds { font-size: 12px; color: var(--txt-3); margin-top: 4px; }

/* Spin Wheel */
.wheel-stage { display: grid; place-items: center; gap: 18px; padding: 16px; }
.wheel {
  width: min(86vw, 460px); height: min(86vw, 460px);
  border-radius: 50%;
  position: relative;
  transition: transform 6s cubic-bezier(.17,.67,.05,1);
  box-shadow: 0 0 0 8px var(--bg-2), 0 0 0 11px var(--line-2), 0 30px 60px rgba(0,0,0,.5);
  background: conic-gradient(#7c5cff 0deg 90deg, #00d4ff 90deg 180deg, #ff5e93 180deg 270deg, #fbbf24 270deg 360deg);
}
.wheel::after {
  content:""; position:absolute; inset: 38%; border-radius:50%;
  background: var(--bg-1); border: 4px solid var(--line-2);
}
.wheel-pointer {
  position: relative;
  width: 0; height: 0; border-left: 18px solid transparent; border-right: 18px solid transparent;
  border-top: 28px solid var(--gold); margin-bottom: -8px; z-index: 2;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,.4));
}
.wheel-result {
  font-size: 26px; font-weight: 700; color: var(--gold);
  min-height: 36px;
  text-shadow: 0 0 20px rgba(251,191,36,.4);
}
.wheel-segment-label {
  position: absolute; left: 50%; top: 50%;
  transform-origin: 0 0;
  font-weight: 700; font-size: 14px; color: white;
  text-shadow: 0 1px 3px rgba(0,0,0,.5);
}

/* Auction live */
.auction-stage {
  display: grid; place-items: center; gap: 22px; padding: 30px 16px;
  text-align: center;
}
.house-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px; border-radius: 30px;
  background: var(--bg-2); border: 1px solid var(--line-2);
  font-weight: 700; font-size: 16px;
}
.house-pill .dot { width: 14px; height: 14px; border-radius: 50%; }
.candidate-card {
  background: var(--bg-1); border: 1px solid var(--line-2); border-radius: 22px;
  padding: 26px; min-width: 280px; max-width: 380px;
  animation: pop .5s cubic-bezier(.2,1.6,.5,1);
}
.candidate-card img { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; border: 4px solid var(--gold); }
.candidate-card .nm { font-size: 22px; font-weight: 700; margin-top: 12px; }
.candidate-card .ad { font-size: 13px; color: var(--txt-3); margin-top: 4px; }

@keyframes pop { 0% { transform: scale(.4); opacity: 0; } 60% { transform: scale(1.06); } 100% { transform: scale(1); opacity: 1; } }
@keyframes fadeUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
@keyframes pulseGlow { 0%,100% { box-shadow: 0 0 30px rgba(124,92,255,.3); } 50% { box-shadow: 0 0 60px rgba(124,92,255,.6); } }

.glow { animation: pulseGlow 2s ease-in-out infinite; }

/* Schedule board (airport) */
.board {
  background: linear-gradient(180deg, #050a18, #0d1220);
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--line);
}
.board-row {
  display: grid;
  grid-template-columns: 80px 1fr 130px 130px 130px;
  gap: 10px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  align-items: center;
  font-family: 'Courier New', monospace;
  font-size: 14px;
}
.board-row.head { color: var(--txt-3); font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }
.board-row .pname { color: #ffd166; font-weight: 700; }
.board-row .time { color: #06d6a0; }
.board-row .venue { color: var(--txt-2); }
.status-pill {
  display: inline-block; padding: 4px 10px; border-radius: 4px; font-size: 11px;
  font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
}
.st-scheduled { background: rgba(124,92,255,.2); color: #c4b5fd; }
.st-checking { background: rgba(245,158,11,.2); color: #fcd34d; animation: blink 1.4s infinite; }
.st-started { background: rgba(0,212,255,.2); color: #67e8f9; animation: blink 1s infinite; }
.st-finished { background: rgba(148,163,184,.2); color: #cbd5e1; }
.st-result_waiting { background: rgba(255,94,147,.2); color: #fda4af; animation: blink 1.4s infinite; }
.st-announced { background: rgba(34,197,94,.2); color: #86efac; }
.st-published { background: rgba(34,197,94,.3); color: #6ee7b7; }
@keyframes blink { 50% { opacity: .55; } }

@media (max-width: 720px) {
  .board-row { grid-template-columns: 60px 1fr 90px; font-size: 12px; }
  .board-row .venue, .board-row .time { display: none; }
  .board-row.head .venue, .board-row.head .time { display: none; }
}

/* Result card */
.result-card {
  background: linear-gradient(135deg, #1a2238 0%, #0d1220 100%);
  border: 1px solid var(--line-2);
  border-radius: 22px;
  padding: 30px;
  text-align: center;
  position: relative; overflow: hidden;
}
.result-card::before {
  content:""; position:absolute; inset:0; background:
    radial-gradient(circle at 20% 0%, rgba(124,92,255,.18), transparent 50%),
    radial-gradient(circle at 80% 100%, rgba(0,212,255,.18), transparent 50%);
  pointer-events:none;
}
.result-card .pname { font-size: 14px; color: var(--txt-3); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .1em; }
.result-card .pkind { font-size: 22px; font-weight: 700; margin-bottom: 22px; }

.podium { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; margin-top: 12px; }
.podium .pos { background: var(--bg-2); border: 1px solid var(--line); border-radius: 14px; padding: 14px 10px; }
.podium .pos.gold { border-color: var(--gold); background: linear-gradient(180deg, rgba(251,191,36,.14), var(--bg-2)); }
.podium .pos.silver { border-color: var(--silver); background: linear-gradient(180deg, rgba(203,213,225,.14), var(--bg-2)); }
.podium .pos.bronze { border-color: var(--bronze); background: linear-gradient(180deg, rgba(217,119,6,.14), var(--bg-2)); }
.podium .pos img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; }
.podium .pos .badge {
  display: inline-block; padding: 2px 8px; border-radius: 16px; font-size: 11px; font-weight: 700;
  margin-bottom: 8px;
}
.podium .gold .badge { background: var(--gold); color: #0d1220; }
.podium .silver .badge { background: var(--silver); color: #0d1220; }
.podium .bronze .badge { background: var(--bronze); color: white; }

/* Leaderboard */
.lb-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 14px; border-bottom: 1px solid var(--line);
  gap: 12px;
}
.lb-row:last-child { border-bottom: none; }
.lb-row .rank { font-weight: 700; color: var(--txt-3); width: 28px; }
.lb-row .nm { flex: 1; font-weight: 600; }
.lb-row .pts { font-weight: 700; color: var(--gold); }
.lb-row .nm small { display: block; color: var(--txt-3); font-weight: 400; font-size: 12px; }

/* Tabs */
.tabs { display: flex; gap: 2px; padding: 4px; background: var(--bg-2); border-radius: 10px; margin-bottom: 16px; overflow-x: auto; }
.tab { padding: 8px 14px; font-size: 13px; font-weight: 500; color: var(--txt-2); border-radius: 8px; cursor: pointer; white-space: nowrap; }
.tab.active { background: var(--bg-3); color: var(--txt); }

/* Modal */
.modal-back { position: fixed; inset: 0; background: rgba(0,0,0,.65); z-index: 100; display: none; align-items: center; justify-content: center; padding: 16px; }
.modal-back.open { display: flex; }
.modal { background: var(--bg-1); border: 1px solid var(--line-2); border-radius: 16px; padding: 22px; max-width: 520px; width: 100%; max-height: 90vh; overflow-y: auto; }
.modal h3 { margin-bottom: 14px; }

/* Misc */
.muted { color: var(--txt-3); }
.hr { height: 1px; background: var(--line); margin: 14px 0; border: 0; }
.row-gap { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.spacer { flex: 1; }
.hidden { display: none !important; }
.nowrap { white-space: nowrap; }
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-0 { margin-bottom: 0; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }

/* Candidate tiles for auction picker */
.cand-tile {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
  text-align: center;
  transition: transform .15s, border-color .15s;
}
.cand-tile:hover { transform: translateY(-3px); border-color: var(--acc); }
.cand-photo {
  width: 100px; height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--acc);
  background: var(--bg-3);
}
.cand-name { font-weight: 700; margin-top: 8px; font-size: 14px; }
.cand-adm { font-size: 12px; color: var(--txt-3); margin-bottom: 6px; }

/* Modal overlay (pick reveal) */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.7);
  display: flex; align-items: center; justify-content: center;
  z-index: 1000; padding: 20px;
}
.modal-content {
  background: var(--bg-1);
  border-radius: 18px;
  padding: 30px;
  max-width: 480px;
  width: 100%;
  text-align: center;
}

/* Loading pulse animation */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(.95); }
}
.loading-pulse { animation: pulse 1.5s infinite; }

/* Auth body for login pages */
.auth-body { background: radial-gradient(1200px 800px at 30% 20%, rgba(124,92,255,.18) 0%, transparent 60%), var(--bg-0); min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 20px; }
.auth-wrap { width: 100%; max-width: 460px; }
.login-head { text-align: center; margin-bottom: 20px; }
.login-logo { height: 60px; margin-bottom: 10px; }
.login-head h1 { font-size: 22px; font-weight: 800; }
.lbl { display: block; font-size: 13px; color: var(--txt-2); margin: 12px 0 6px; }

/* Tabs (radio-style) */
.tabs { display: flex; gap: 6px; padding: 4px; background: var(--bg-2); border-radius: 10px; }
.tab-radio { flex: 1; cursor: pointer; }
.tab-radio input { display: none; }
.tab-radio span { display: block; text-align: center; padding: 8px; border-radius: 8px; font-size: 14px; transition: background .15s; }
.tab-radio input:checked + span { background: var(--acc); color: white; }

/* Board styling */
.board-body { background: linear-gradient(180deg, #050811 0%, #0a0f1f 100%); min-height: 100vh; }
.board-wrap { max-width: 1400px; margin: 0 auto; padding: 20px; }
.board-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; flex-wrap: wrap; gap: 12px; }
.board-head-left { display: flex; gap: 14px; align-items: center; }
.board-head-right { display: flex; gap: 8px; flex-wrap: wrap; }
.board-logo { height: 60px; }
.board-head h1 { font-size: 26px; font-weight: 800; }
.board-row.board-head-row { background: var(--bg-1); color: var(--txt-3); font-size: 11px; text-transform: uppercase; letter-spacing: .1em; padding: 12px; border-radius: 8px; }
.board-time { color: #06d6a0; font-weight: 600; min-width: 110px; font-size: 13px; }
.board-prog { flex: 1; padding: 0 14px; }
.b-col { padding: 0 8px; }
.b-code, .b-time { min-width: 100px; }
.b-cat { min-width: 120px; }

/* Animation: blinking light for status */
@keyframes blink {
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: .55; }
}
.status-pill .bl {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: currentColor;
  margin-right: 6px;
  vertical-align: middle;
}

/* Misc helpers */
.field { margin-bottom: 12px; }
.field label, .field .lbl { display: block; font-size: 13px; color: var(--txt-2); margin-bottom: 6px; }
.field-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 12px; margin-bottom: 12px; }
.grid { display: grid; gap: 14px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 720px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}
.badge { display: inline-block; font-size: 10px; padding: 2px 7px; border-radius: 10px; background: var(--bg-3); color: var(--txt-3); margin-left: 6px; vertical-align: middle; }

/* Auction START banner — shows when a leader's turn is active */
.start-banner-wrap { text-align: center; margin: 20px 0; }
.start-banner {
  display: inline-block;
  background: linear-gradient(135deg, #fbbf24 0%, #ef4444 100%);
  color: #06090f;
  padding: 22px 36px;
  border-radius: 18px;
  font-size: clamp(20px, 4vw, 32px);
  font-weight: 800;
  letter-spacing: .5px;
  box-shadow: 0 0 40px rgba(251,191,36,.5);
  animation: startPulse 1.4s ease-in-out infinite;
  text-transform: uppercase;
  text-shadow: 0 1px 0 rgba(255,255,255,.3);
}
@keyframes startPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 40px rgba(251,191,36,.5); }
  50%      { transform: scale(1.04); box-shadow: 0 0 70px rgba(251,191,36,.85); }
}

/* Active letter pill (public auction display) */
.letter-pill-big {
  display: inline-grid;
  place-items: center;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #f59e0b);
  color: #06090f;
  font-size: 72px;
  font-weight: 900;
  box-shadow: 0 0 60px rgba(251,191,36,.6);
  animation: startPulse 1.4s ease-in-out infinite;
  text-shadow: 0 2px 0 rgba(255,255,255,.4);
}
