/* ============================================================
   ZURYS – Drop Arena : tmavá navy + oranžová, CS rarity karty
============================================================ */
:root {
  --bg: #0c0d18;
  --bg-2: #10111f;
  --surface: #171928;
  --surface-2: #1d2032;
  --surface-3: #262a40;
  --border: #2a2e45;
  --border-soft: #20233500;
  --text: #f3f5fc;
  --text-dim: #9097b8;
  --text-faint: #626889;

  --accent: #ff9d2e;          /* ZURYS oranžová */
  --accent-2: #ffb454;
  --accent-ink: #1a1200;
  --accent-grad: linear-gradient(135deg, #ffab3d, #ff7a18);
  --accent-glow: rgba(255, 157, 46, .4);
  --kick: #53fc18;            /* jen pro tlačítko „Připojit přes Kick" */
  --kick-ink: #07140a;

  /* CS rarity */
  --r-milspec: #4b69ff;
  --r-restricted: #8847ff;
  --r-classified: #d32ee6;
  --r-covert: #eb4b4b;
  --r-contraband: #e4ae39;

  --danger: #ff4d5e;
  --warning: #ffc23d;
  --success: #46e08a;
  --gold: #ffd34d;
  --silver: #cdd3dd;
  --bronze: #e0934f;

  --r: 14px; --r-sm: 9px; --r-lg: 18px;
  --shadow: 0 14px 38px rgba(0, 0, 0, .5);
  --maxw: 1280px;
  --header-h: 64px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
body {
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  background-image:
    radial-gradient(1000px 600px at 85% -10%, rgba(255, 157, 46, .10), transparent 60%),
    radial-gradient(900px 600px at 0% 0%, rgba(136, 71, 255, .10), transparent 55%);
  background-attachment: fixed;
  color: var(--text); line-height: 1.5; -webkit-font-smoothing: antialiased; min-height: 100%;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img { display: block; max-width: 100%; }
input, select, textarea { font-family: inherit; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-thumb { background: #30354f; border-radius: 6px; }
::-webkit-scrollbar-track { background: transparent; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
main { padding: 0 0 80px; min-height: calc(100vh - var(--header-h)); }
.muted { color: var(--text-dim); } .faint { color: var(--text-faint); }
.page-head { margin: 26px 0 22px; }
.page-head h1 { font-size: 27px; font-weight: 800; }
.page-head p { color: var(--text-dim); margin-top: 5px; }
.section-title { font-size: 16px; font-weight: 800; margin: 6px 0 14px; text-transform: uppercase; letter-spacing: .03em; }

/* PTS mince */
.coin { display: inline-block; width: 16px; height: 16px; border-radius: 4px; vertical-align: -3px;
  background: url('/uploads/coin.png') center/contain no-repeat, radial-gradient(circle at 35% 30%, #ffd98a, #ff9d2e 60%, #e07a10); }

/* ============ Topbar ============ */
.topbar { position: sticky; top: 0; z-index: 50; height: var(--header-h); display: flex; align-items: center;
  background: rgba(10, 11, 22, .9); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.topbar-inner { display: flex; align-items: center; gap: 16px; width: 100%; }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 900; font-size: 21px; letter-spacing: .02em; }
.logo .mark { width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; background: var(--accent-grad); color: var(--accent-ink); font-size: 20px; font-weight: 900; box-shadow: 0 0 16px var(--accent-glow); }
.logo .brand { letter-spacing: .14em; }
.nav { display: flex; align-items: center; gap: 2px; margin-left: 14px; }
.nav-link { padding: 9px 14px; border-radius: 8px; color: var(--text-dim); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: .07em; transition: .14s; position: relative; }
.nav-link:hover { color: #fff; }
.nav-link.active { color: var(--accent); }
.nav-link.active::after { content: ""; position: absolute; left: 14px; right: 14px; bottom: -1px; height: 3px; border-radius: 3px; background: var(--accent); box-shadow: 0 0 10px var(--accent-glow); }

.top-right { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.pts-pill { display: inline-flex; align-items: center; gap: 8px; background: var(--surface-2); border: 1px solid rgba(255,157,46,.45); padding: 7px 14px; border-radius: 999px; font-weight: 800; font-size: 14px; }
.pts-pill b { color: var(--accent); } .pts-pill .lbl { color: var(--text-faint); font-size: 11px; font-weight: 700; }
.icon-btn { position: relative; width: 40px; height: 40px; border-radius: 10px; background: var(--surface-2); border: 1px solid var(--border); color: var(--text); display: grid; place-items: center; font-size: 16px; transition: .14s; }
.icon-btn:hover { border-color: var(--accent); color: var(--accent); }
.cart-badge { position: absolute; top: -6px; right: -6px; min-width: 18px; height: 18px; padding: 0 5px; border-radius: 9px; background: var(--accent); color: var(--accent-ink); font-size: 11px; font-weight: 800; display: grid; place-items: center; }
.user-chip { display: flex; align-items: center; gap: 9px; background: var(--surface-2); border: 1px solid var(--border); padding: 4px 12px 4px 4px; border-radius: 999px; }
.user-chip:hover { border-color: var(--accent); }
.user-chip .uc-name { font-weight: 800; font-size: 13px; }
.user-chip .uc-tier { font-size: 9.5px; font-weight: 900; letter-spacing: .06em; color: var(--accent); text-transform: uppercase; }
.avatar { width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; font-weight: 800; font-size: 13px; color: #fff; flex: none; overflow: hidden; }
.avatar img { width: 100%; height: 100%; object-fit: cover; }
.hamburger { display: none; }
.mobile-nav { position: fixed; top: var(--header-h); left: 0; right: 0; z-index: 49; background: var(--bg-2); border-bottom: 1px solid var(--border); padding: 10px; flex-direction: column; gap: 3px; display: none; box-shadow: var(--shadow); }
.mobile-nav.open { display: flex; }
.mobile-nav a { padding: 13px 14px; border-radius: 8px; color: var(--text-dim); font-weight: 700; text-transform: uppercase; letter-spacing: .05em; font-size: 13px; }
.mobile-nav a:hover, .mobile-nav a.active { background: var(--surface-2); color: var(--accent); }

/* ============ Activity ticker ============ */
.ticker { background: var(--bg-2); border-bottom: 1px solid var(--border); overflow: hidden; position: relative; width: 100vw; left: 50%; margin-left: -50vw; }
.ticker-track { display: inline-flex; align-items: center; gap: 28px; padding: 9px 0; white-space: nowrap; animation: ticker 42s linear infinite; }
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-item { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; }
.ticker-item .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--success); box-shadow: 0 0 8px var(--success); }
.ticker-item .who { font-weight: 800; color: var(--accent-2); }
.ticker-item .what { color: var(--text-dim); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============ Buttons ============ */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 11px 18px; border-radius: 10px; border: 1px solid transparent; font-weight: 800; font-size: 13.5px; transition: .14s; white-space: nowrap; }
.btn:disabled { opacity: .55; cursor: not-allowed; }
.btn-primary { background: var(--accent-grad); color: var(--accent-ink); box-shadow: 0 8px 22px var(--accent-glow); }
.btn-primary:not(:disabled):hover { transform: translateY(-1px); filter: brightness(1.06); }
.btn-ghost { background: var(--surface-2); border-color: var(--border); color: var(--text); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-danger { background: rgba(255, 77, 94, .12); border-color: rgba(255, 77, 94, .45); color: var(--danger); }
.btn-danger:hover { background: rgba(255, 77, 94, .2); }
.btn-success { background: rgba(70, 224, 138, .14); border-color: rgba(70, 224, 138, .45); color: var(--success); }
.btn-kick { background: var(--kick); color: var(--kick-ink); font-weight: 800; }
.btn-kick:not(:disabled):hover { filter: brightness(1.05); box-shadow: 0 8px 24px rgba(83, 252, 24, .3); transform: translateY(-1px); }
.btn-block { width: 100%; }
.btn-sm { padding: 8px 13px; font-size: 12.5px; }

/* ============ Badges & chips ============ */
.badge { display: inline-flex; align-items: center; gap: 5px; padding: 3px 9px; border-radius: 6px; font-size: 10.5px; font-weight: 800; letter-spacing: .03em; }
.badge-sub { background: rgba(136, 71, 255, .2); color: #c4a6ff; border: 1px solid rgba(136, 71, 255, .5); }
.badge-vip { background: rgba(255, 211, 77, .16); color: var(--gold); border: 1px solid rgba(255, 211, 77, .5); }
.badge-cat { background: var(--surface-3); color: var(--text-dim); }
.badge-role { font-size: 9.5px; padding: 2px 7px; text-transform: uppercase; }
.badge-admin { background: rgba(255, 77, 94, .16); color: var(--danger); }
.badge-vip-role { background: rgba(255, 211, 77, .16); color: var(--gold); }
.badge-sub-role { background: rgba(136, 71, 255, .2); color: #c4a6ff; }
.badge-user-role { background: var(--surface-3); color: var(--text-dim); }

.chips { display: flex; flex-wrap: wrap; gap: 9px; }
.chip { padding: 9px 16px; border-radius: 9px; background: var(--surface-2); border: 1px solid var(--border); color: var(--text-dim); font-weight: 800; font-size: 12.5px; text-transform: uppercase; letter-spacing: .04em; transition: .14s; }
.chip:hover { color: #fff; border-color: var(--accent); }
.chip.active { background: var(--accent-grad); color: var(--accent-ink); border-color: transparent; }
.chip.toggle.active { background: rgba(255, 157, 46, .16); color: var(--accent); border-color: rgba(255, 157, 46, .55); }

/* ============ Drop Arena ============ */
.da-head { margin: 26px 0 18px; }
.da-head h1 { font-size: 34px; font-weight: 900; letter-spacing: -.01em; }
.da-head h1 .accent { color: var(--accent); }
.da-head p { color: var(--text-dim); margin-top: 6px; }
.da-filters { display: flex; align-items: center; gap: 9px; flex-wrap: wrap; margin-bottom: 20px; }
.da-filters .spacer { flex: 1; }

.da-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(252px, 1fr)); gap: 18px; }

.da-card { position: relative; background: linear-gradient(180deg, var(--surface), var(--bg-2)); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; display: flex; flex-direction: column; transition: .16s; cursor: pointer; }
.da-card:hover { transform: translateY(-4px); border-color: var(--accent); box-shadow: 0 18px 40px rgba(0,0,0,.55), 0 0 0 1px var(--accent-glow); }
.da-badges { position: absolute; top: 12px; left: 12px; z-index: 3; display: flex; gap: 6px; flex-wrap: wrap; }
.da-b { padding: 3px 9px; border-radius: 6px; font-size: 10px; font-weight: 900; letter-spacing: .04em; text-transform: uppercase; }
.b-hot { background: linear-gradient(135deg, #ff5470, #ff2e5e); color: #fff; }
.b-sub { background: linear-gradient(135deg, #9a5cff, #7a2eff); color: #fff; }
.b-end { background: var(--accent); color: var(--accent-ink); }
.da-timer { position: absolute; top: 12px; right: 12px; z-index: 3; background: rgba(0,0,0,.5); border: 1px solid var(--border); color: var(--text); font-size: 11px; font-weight: 800; padding: 3px 8px; border-radius: 6px; font-variant-numeric: tabular-nums; }
.da-img { height: 180px; display: grid; place-items: center; font-size: 64px; position: relative; background-size: contain; background-repeat: no-repeat; background-position: center; padding: 10px; box-sizing: border-box; background-color: rgba(8,9,16,.35); }
.da-img .da-emoji { filter: drop-shadow(0 10px 22px rgba(0,0,0,.5)); }
.da-rarity { position: absolute; bottom: 12px; left: 12px; padding: 3px 9px; border-radius: 6px; font-size: 10px; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; background: rgba(8,9,16,.7); border: 1px solid currentColor; }
.da-body { padding: 14px 15px 16px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.da-name { font-weight: 800; font-size: 15.5px; line-height: 1.25; }
.da-type { font-size: 10.5px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; color: var(--text-faint); }
.da-price { display: flex; align-items: center; gap: 7px; font-weight: 900; font-size: 17px; }
.da-price small { color: var(--text-dim); font-weight: 700; font-size: 12px; }
.da-progress { margin-top: 2px; }
.da-progress .bar { height: 6px; border-radius: 4px; background: var(--surface-3); overflow: hidden; }
.da-progress .fill { height: 100%; background: var(--accent-grad); border-radius: 4px; }
.da-progress .nums { display: flex; justify-content: space-between; font-size: 11px; color: var(--text-faint); margin-top: 5px; font-weight: 700; }
.da-btn { margin-top: auto; width: 100%; padding: 11px; border-radius: 10px; border: 0; font-weight: 800; font-size: 13px; text-transform: uppercase; letter-spacing: .03em; }
.da-btn.buy { background: var(--accent-grad); color: var(--accent-ink); }
.da-btn.buy:hover { filter: brightness(1.06); }
.da-btn.locked { background: rgba(136,71,255,.14); color: #c4a6ff; border: 1px solid rgba(136,71,255,.4); cursor: not-allowed; }
.da-btn.waiting { background: var(--surface-3); color: var(--text-dim); cursor: not-allowed; }
.da-card.sold-out { opacity: .6; }

/* ===== Kick bot konzole ===== */
.badge-ok { background: rgba(0,209,108,.16); color: #38e08f; border: 1px solid rgba(0,209,108,.4); }
.switch-row { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.toggle { width: 46px; height: 26px; border-radius: 999px; background: var(--surface-3); border: 1px solid var(--border); position: relative; flex: 0 0 auto; cursor: pointer; transition: background .15s; }
.toggle::after { content: ""; position: absolute; top: 2px; left: 2px; width: 20px; height: 20px; border-radius: 50%; background: #aaa; transition: transform .15s, background .15s; }
.toggle.on { background: var(--accent-grad); }
.toggle.on::after { transform: translateX(20px); background: #fff; }
.kick-chat { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; }
.kc-head { display: flex; align-items: center; gap: 8px; padding: 11px 14px; border-bottom: 1px solid var(--border); font-weight: 800; font-size: 14px; }
.kc-dot { width: 9px; height: 9px; border-radius: 50%; background: #00d16c; box-shadow: 0 0 8px #00d16c; }
.kc-body { max-height: 360px; overflow-y: auto; padding: 8px 0; }
.bm-line { display: flex; align-items: baseline; gap: 7px; flex-wrap: wrap; padding: 7px 14px; border-bottom: 1px solid rgba(255,255,255,.03); font-size: 13.5px; }
.bm-bot { color: #38e08f; font-weight: 800; white-space: nowrap; }
.bm-text { flex: 1; min-width: 120px; word-break: break-word; }
.bm-meta { display: flex; align-items: center; gap: 6px; font-size: 11px; white-space: nowrap; }
.bm-ok { color: #38e08f; font-weight: 900; } .bm-err { color: var(--danger); font-weight: 900; } .bm-demo { color: var(--gold); }
.bm-tag { font-size: 9px; font-weight: 900; padding: 2px 6px; border-radius: 5px; letter-spacing: .04em; }
.bm-tag.drop { background: var(--accent); color: var(--accent-ink); } .bm-tag.sys { background: var(--surface-3); color: var(--text-dim); }

/* ===== Ekonomika ===== */
.eco-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.05); }
.eco-row:last-child { border-bottom: 0; }
.eco-sep { margin: 16px 0 4px; font-size: 11px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); }

/* ===== Hry: piškvorky ===== */
.game-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 15px; background: var(--surface); border: 1px solid var(--border); border-radius: 10px; margin-bottom: 8px; font-size: 14px; }
.gboard { display: grid; gap: 2px; background: var(--border); padding: 4px; border-radius: 12px; max-width: 540px; margin: 16px auto 0; box-shadow: var(--shadow); }
.gcell { aspect-ratio: 1; background: var(--surface-3); border: 0; border-radius: 3px; font-size: clamp(12px, 3.4vw, 20px); font-weight: 900; line-height: 1; display: grid; place-items: center; color: var(--text); padding: 0; cursor: default; transition: background .08s; }
.gcell.live { cursor: pointer; }
.gcell.live:hover { background: var(--surface); outline: 2px solid var(--accent); outline-offset: -2px; }
.gcell.x { color: #ff7a4d; }
.gcell.o { color: #4db4ff; }

/* feed / recent (zachováno pro jiné pohledy) */
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 18px; }

/* ============ Panely ============ */
.card, .panel { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); box-shadow: var(--shadow); }
.panel { padding: 20px; border-left: 3px solid var(--accent); }
.panel.ok { border-left-color: var(--success); }
.panel.bad { border-left-color: var(--danger); }
.panel.gold { border-left-color: var(--gold); }

/* ============ Modal ============ */
.modal-root { position: fixed; inset: 0; z-index: 100; display: none; }
.modal-root.open { display: block; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(4,5,10,.78); backdrop-filter: blur(5px); animation: fade .15s ease; }
.modal { position: relative; max-width: 560px; margin: 6vh auto 0; width: calc(100% - 32px); background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); box-shadow: var(--shadow); overflow: hidden; animation: pop .18s ease; max-height: 88vh; display: flex; flex-direction: column; }
.modal-lg { max-width: 720px; }
.modal-close { position: absolute; top: 14px; right: 14px; z-index: 6; width: 34px; height: 34px; border-radius: 9px; background: rgba(0,0,0,.45); border: 1px solid var(--border); color: #fff; font-size: 15px; }
.modal-close:hover { border-color: var(--accent); color: var(--accent); }
.modal-hero { height: 220px; display: grid; place-items: center; font-size: 76px; background-size: contain !important; background-repeat: no-repeat; background-position: center; background-color: rgba(8,9,16,.35); padding: 14px; box-sizing: border-box; }
.modal-body { padding: 24px; overflow-y: auto; }
.modal-body h2 { font-size: 22px; font-weight: 800; }
.modal-actions { display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap; }
@keyframes pop { from { transform: translateY(14px); opacity: 0; } to { transform: none; opacity: 1; } }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
.raffle-list { margin-top: 18px; border-top: 1px solid var(--border); padding-top: 16px; }
.raffle-row { display: flex; align-items: center; gap: 10px; padding: 7px 0; }
.raffle-row .tickets { margin-left: auto; font-weight: 800; color: var(--accent); font-size: 13px; }

/* ============ Tombola – losovací animace (CS „case opening") ============ */
.modal-raffle { max-width: 880px; }
.case-wrap { padding: 26px 22px 24px; text-align: center; position: relative; }
.case-head { font-size: 18px; font-weight: 800; letter-spacing: .3px; margin-bottom: 16px; }
.case-spin { display: inline-block; animation: case-spin 1.2s linear infinite; }
@keyframes case-spin { to { transform: rotate(360deg); } }

.case-window { position: relative; height: 150px; overflow: hidden; border-radius: 14px; border: 1px solid var(--border); background: linear-gradient(180deg, var(--bg-2), var(--surface)); box-shadow: inset 0 0 42px rgba(0,0,0,.5); }
.case-window::before, .case-window::after { content: ""; position: absolute; top: 0; bottom: 0; width: 96px; z-index: 3; pointer-events: none; }
.case-window::before { left: 0; background: linear-gradient(90deg, var(--surface), transparent); }
.case-window::after { right: 0; background: linear-gradient(270deg, var(--surface), transparent); }

.case-marker { position: absolute; left: 50%; top: 0; bottom: 0; width: 3px; z-index: 4; transform: translateX(-50%); pointer-events: none; background: linear-gradient(180deg, transparent, var(--accent), transparent); box-shadow: 0 0 14px 2px var(--accent-glow); }
.case-marker::before, .case-marker::after { content: ""; position: absolute; left: 50%; transform: translateX(-50%); border: 8px solid transparent; }
.case-marker::before { top: -1px; border-top-color: var(--accent); }
.case-marker::after { bottom: -1px; border-bottom-color: var(--accent); }

.case-reel { position: relative; display: flex; height: 100%; align-items: center; will-change: transform; }
.case-card { flex: 0 0 auto; width: 104px; height: 118px; margin: 0 6px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; border-radius: 12px; background: linear-gradient(180deg, var(--surface-2), var(--surface-3)); border: 1px solid var(--border); }
.case-card .cc-av { width: 54px; height: 54px; font-size: 20px; border-radius: 12px; }
.case-card .cc-name { max-width: 94px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 12px; font-weight: 700; }
.case-card.landed { border-color: var(--accent); background: linear-gradient(180deg, rgba(255,157,46,.2), var(--surface-3)); box-shadow: 0 0 0 2px var(--accent), 0 0 26px var(--accent-glow); animation: case-land .5s ease; }
@keyframes case-land { 0% { transform: scale(1); } 45% { transform: scale(1.13); } 100% { transform: scale(1.06); } }

.case-result { max-height: 0; opacity: 0; overflow: hidden; transition: max-height .45s ease, opacity .45s ease, margin-top .45s ease; }
.case-result.show { max-height: 340px; opacity: 1; margin-top: 22px; }
.case-result .cr-avatar { width: 80px; height: 80px; margin: 0 auto; font-size: 28px; border-radius: 16px; box-shadow: 0 0 0 3px var(--accent), 0 0 30px var(--accent-glow); }
.case-result .cr-name { margin: 12px 0 4px; font-size: 26px; font-weight: 900; color: var(--accent-2); text-shadow: 0 0 22px var(--accent-glow); }
.case-result .cr-sub { margin-bottom: 18px; color: var(--text-dim); }

.confetti-layer { position: absolute; inset: 0; z-index: 8; overflow: hidden; pointer-events: none; }
.confetti-layer i { position: absolute; top: -16px; width: 9px; height: 14px; opacity: .95; animation: confetti-fall 2.4s linear forwards; }
@keyframes confetti-fall { 0% { transform: translateY(0) rotate(0); } 100% { transform: translateY(620px) rotate(760deg); opacity: .15; } }

@media (prefers-reduced-motion: reduce) { .case-spin { animation: none; } }
@media (max-width: 560px) { .case-card { width: 84px; height: 104px; } .case-card .cc-av { width: 44px; height: 44px; } }

/* ============ Predikce – živé aktualizace ============ */
.live-dot { font-size: 12px; font-weight: 800; letter-spacing: .5px; vertical-align: middle; margin-left: 8px; animation: live-blink 1.5s ease-in-out infinite; }
@keyframes live-blink { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }
.pred-bump { animation: pred-bump .8s ease; }
@keyframes pred-bump { 0% { color: var(--accent); text-shadow: 0 0 11px var(--accent-glow); } }
@media (prefers-reduced-motion: reduce) { .live-dot, .pred-bump { animation: none; } }

/* ============ Toasty ============ */
.toast-root { position: fixed; top: 16px; right: 16px; z-index: 200; display: flex; flex-direction: column; gap: 10px; max-width: 360px; }
.toast { background: var(--surface-2); border: 1px solid var(--border); border-left: 4px solid var(--accent); border-radius: 11px; padding: 13px 16px; box-shadow: var(--shadow); animation: slidein .2s ease; display: flex; gap: 10px; align-items: flex-start; font-size: 14px; }
.toast.success { border-left-color: var(--success); } .toast.error { border-left-color: var(--danger); } .toast.info { border-left-color: var(--accent); }
.toast .ico { font-size: 16px; }
@keyframes slidein { from { transform: translateX(20px); opacity: 0; } to { transform: none; opacity: 1; } }

/* ============ Formuláře ============ */
.form { display: flex; flex-direction: column; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 12px; font-weight: 700; color: var(--text-dim); }
.input, .select, textarea.input { background: var(--surface-2); border: 1px solid var(--border); border-radius: 10px; padding: 11px 13px; color: var(--text); font-size: 14.5px; width: 100%; transition: .14s; }
.input:focus, .select:focus, textarea.input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(255,157,46,.16); }
.field-row { display: flex; gap: 12px; flex-wrap: wrap; } .field-row .field { flex: 1; min-width: 130px; }
.check { display: flex; align-items: center; gap: 9px; cursor: pointer; font-size: 14px; } .check input { width: 17px; height: 17px; accent-color: var(--accent); }
.form-hint { font-size: 12.5px; color: var(--text-faint); }

.auth-wrap { max-width: 430px; margin: 44px auto; } .auth-card { padding: 32px; }
.demo-box { margin-top: 20px; padding: 14px; border-radius: 11px; background: var(--surface-2); border-left: 3px solid var(--accent); font-size: 12.5px; color: var(--text-dim); line-height: 1.7; }
.demo-box code { color: var(--accent); }

/* ============ Leaderboard ============ */
.lb-meta { text-align: center; color: var(--text-dim); font-weight: 800; font-size: 13px; letter-spacing: .6px; text-transform: uppercase; margin: -4px 0 14px; }

/* --- Pódium (TOP 3) --- */
.podium { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: end; margin: 6px 0 26px; padding-top: 50px; z-index: 0; }
.podium::before { content: ""; position: absolute; left: 50%; top: 4px; transform: translateX(-50%); width: min(640px, 96%); height: 320px; z-index: -1; pointer-events: none; background: radial-gradient(ellipse at center top, var(--accent-glow), transparent 60%); opacity: .55; filter: blur(6px); }

.podium-card { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; text-align: center; padding: 20px 12px 0; border: 1px solid var(--border); border-bottom: none; border-radius: var(--r) var(--r) 0 0; background: linear-gradient(180deg, var(--surface-2), var(--surface)); animation: pod-pop .55s cubic-bezier(.2, .9, .3, 1.4) backwards; animation-delay: var(--d, 0s); }
.podium-1 { --mc: #ffd34d; --mc2: #ff9d2e; }
.podium-2 { --mc: #dfe5ef; --mc2: #9aa3b6; }
.podium-3 { --mc: #e9a566; --mc2: #b9682f; }
/* barevný přeliv shora + záře, ať i stříbro a bronz „vyzařují" */
.podium-card { border-color: color-mix(in srgb, var(--mc) 42%, var(--border)); background: radial-gradient(130% 75% at 50% 0%, color-mix(in srgb, var(--mc) 16%, transparent), transparent 68%), linear-gradient(180deg, var(--surface-2), var(--surface)); }
.podium-1 { box-shadow: 0 0 0 1px var(--mc), 0 20px 54px -14px var(--mc); }
.podium-2, .podium-3 { box-shadow: 0 0 0 1px color-mix(in srgb, var(--mc) 55%, transparent), 0 16px 46px -22px var(--mc); }

.pod-medal { font-size: 30px; line-height: 1; filter: drop-shadow(0 3px 6px rgba(0,0,0,.45)); animation: pod-bob 3s ease-in-out infinite; }
.podium-1 .pod-medal { font-size: 40px; }
.pod-crown { position: absolute; top: -30px; left: 50%; font-size: 32px; filter: drop-shadow(0 5px 9px rgba(0,0,0,.55)); transform: translateX(-50%); animation: pod-crown 3.4s ease-in-out infinite; }

.pod-av-wrap { position: relative; margin: 12px auto 8px; }
.podium-card .pod-av { width: 74px; height: 74px; font-size: 27px; border-radius: 16px; box-shadow: 0 0 0 3px var(--mc), 0 0 22px -4px var(--mc); }
.podium-1 .pod-av { width: 94px; height: 94px; font-size: 34px; box-shadow: 0 0 0 4px var(--mc), 0 0 34px -2px var(--mc); animation: pod-glow 2.4s ease-in-out infinite; }

.pod-name { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 6px; font-weight: 800; font-size: 15px; }
.podium-1 .pod-name { font-size: 18px; }
.pod-badges { display: flex; flex-wrap: wrap; gap: 4px; justify-content: center; margin-top: 5px; }
.pod-badges:empty { display: none; }
.pod-pts { display: flex; flex-direction: column; line-height: 1.05; margin: 9px 0 7px; font-weight: 900; font-size: 21px; color: var(--mc); text-shadow: 0 0 18px color-mix(in srgb, var(--mc) 55%, transparent); }
.pod-pts span { margin-top: 2px; font-size: 10px; font-weight: 700; letter-spacing: .6px; text-transform: uppercase; color: var(--text-dim); text-shadow: none; }
.podium-1 .pod-pts { font-size: 27px; }

/* pedestal s vyrytým číslem */
.pod-base { position: relative; overflow: hidden; width: 100%; margin-top: 10px; display: flex; align-items: center; justify-content: center; border-top: 2px solid var(--mc); background: var(--surface-3); background: linear-gradient(180deg, color-mix(in srgb, var(--mc) 32%, var(--surface-3)), var(--surface-3)); }
.podium-1 .pod-base { height: 98px; }
.podium-2 .pod-base { height: 72px; }
.podium-3 .pod-base { height: 52px; }
.pod-basenum { line-height: 1; font-size: 40px; font-weight: 900; color: color-mix(in srgb, var(--mc) 80%, #fff); opacity: .9; text-shadow: 0 2px 10px rgba(0,0,0,.4); }
.podium-1 .pod-basenum { font-size: 56px; }
.pod-baseshine { position: absolute; inset: 0; transform: translateX(-130%); background: linear-gradient(115deg, transparent 36%, color-mix(in srgb, var(--mc) 50%, transparent) 50%, transparent 64%); animation: pod-shine 3.6s ease-in-out infinite; }

/* rotující paprsky za jedničkou */
.pod-rays { position: absolute; top: -16px; left: 50%; width: 240px; height: 240px; z-index: -1; pointer-events: none; transform: translateX(-50%); border-radius: 50%; opacity: .5; filter: blur(2px); background: repeating-conic-gradient(from 0deg, color-mix(in srgb, var(--mc) 24%, transparent) 0deg 7deg, transparent 7deg 22deg); -webkit-mask: radial-gradient(circle, #000 28%, transparent 66%); mask: radial-gradient(circle, #000 28%, transparent 66%); animation: pod-spin 18s linear infinite; }

/* tier odznaky */
.tier-chip { display: inline-block; font-size: 10.5px; font-weight: 800; letter-spacing: .4px; padding: 3px 9px; border-radius: 999px; border: 1px solid; }
.podium-card .tier-chip { margin: 0 0 15px; }
/* „cihla" / prut v barvě tieru (místo medaile u GOLD/SILVER/BRONZE) */
.tier-ingot { display: inline-block; width: 15px; height: 9px; margin-right: 4px; border-radius: 2px; vertical-align: -1px; background: currentColor; box-shadow: inset 0 1.5px 0 rgba(255,255,255,.55), inset 0 -1.5px 1px rgba(0,0,0,.35); }
.tier-elite { color: #ecb6ff; background: rgba(211,46,230,.14); border-color: rgba(211,46,230,.45); }
.tier-gold { color: #ffdd8a; background: rgba(255,211,77,.13); border-color: rgba(255,211,77,.45); }
.tier-silver { color: #e3e8f1; background: rgba(205,211,221,.1); border-color: rgba(205,211,221,.4); }
.tier-bronze { color: #e6a878; background: rgba(224,147,79,.13); border-color: rgba(224,147,79,.4); }

/* tvoje pozice */
.lb-mybar { text-align: center; margin: 0 0 18px; padding: 10px 16px; border-radius: 12px; font-size: 13.5px; color: var(--text); background: linear-gradient(90deg, transparent, rgba(255,157,46,.1), transparent); border: 1px dashed rgba(255,157,46,.42); }
.lb-mybar b { color: var(--accent); }

/* --- Seznam (4. a dál) --- */
.lb-list { display: flex; flex-direction: column; gap: 9px; }
.lb-row { display: flex; align-items: center; gap: 13px; padding: 11px 15px; border-radius: 13px; background: var(--surface); border: 1px solid var(--border); transition: transform .14s ease, border-color .14s, box-shadow .14s; animation: lb-rowin .4s ease backwards; animation-delay: var(--d, 0s); }
.lb-row:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: 0 12px 28px -16px var(--accent-glow); }
.lb-row .lb-rank { flex: 0 0 36px; width: 36px; height: 36px; display: grid; place-items: center; border-radius: 10px; font-weight: 900; font-size: 14px; color: var(--text-dim); background: var(--surface-3); border: 1px solid var(--border); }
.lb-id { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.lb-id .uname { display: flex; align-items: center; gap: 6px; font-weight: 800; font-size: 14.5px; }
.lb-id .lb-sub { display: flex; flex-wrap: wrap; align-items: center; gap: 5px; }
.lb-row .pts { margin-left: auto; font-weight: 900; font-size: 15px; color: var(--accent); white-space: nowrap; }

/* zvýraznění „TY" */
.lb-row.me { background: linear-gradient(90deg, rgba(255,157,46,.09), var(--surface)); border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent), 0 10px 30px -12px var(--accent-glow); }
.podium-card.me { box-shadow: 0 0 0 2px var(--accent), 0 18px 50px -14px var(--accent-glow); }
.me-tag { font-size: 9.5px; font-weight: 900; letter-spacing: .5px; color: var(--accent-ink); background: var(--accent); padding: 1px 6px; border-radius: 6px; }

/* animace */
@keyframes pod-bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
@keyframes pod-crown { 0%, 100% { transform: translateX(-50%) translateY(0) rotate(-6deg); } 50% { transform: translateX(-50%) translateY(-5px) rotate(6deg); } }
@keyframes pod-glow { 0%, 100% { box-shadow: 0 0 0 4px var(--mc), 0 0 30px -6px var(--mc); } 50% { box-shadow: 0 0 0 4px var(--mc), 0 0 46px 2px var(--mc); } }
@keyframes pod-shine { 0% { transform: translateX(-130%); } 55%, 100% { transform: translateX(130%); } }
@keyframes pod-spin { from { transform: translateX(-50%) rotate(0); } to { transform: translateX(-50%) rotate(360deg); } }
@keyframes pod-pop { from { opacity: 0; transform: translateY(26px) scale(.94); } to { opacity: 1; transform: none; } }
@keyframes lb-rowin { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .pod-medal, .pod-crown, .pod-av, .pod-baseshine, .pod-rays, .podium-card, .lb-row { animation: none !important; } }

/* ============ Tabulky (admin) ============ */
.table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--r); }
table.tbl { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 560px; }
table.tbl th { text-align: left; padding: 12px 14px; color: var(--text-dim); font-size: 11.5px; text-transform: uppercase; letter-spacing: .04em; border-bottom: 1px solid var(--border); background: var(--surface-2); }
table.tbl td { padding: 11px 14px; border-bottom: 1px solid rgba(255,255,255,.04); vertical-align: middle; }
table.tbl tr:last-child td { border-bottom: 0; } table.tbl tr:hover td { background: var(--surface-2); }
.tbl-actions { display: flex; gap: 6px; }
.admin-tabs { display: flex; gap: 4px; flex-wrap: wrap; margin-bottom: 24px; border-bottom: 1px solid var(--border); }
.admin-tabs button { padding: 12px 16px; background: none; border: 0; border-bottom: 2px solid transparent; color: var(--text-dim); font-weight: 800; font-size: 13px; text-transform: uppercase; }
.admin-tabs button.active { color: var(--accent); border-bottom-color: var(--accent); }
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 14px; margin-bottom: 26px; }
.stat { padding: 18px; border-radius: var(--r); background: var(--surface); border: 1px solid var(--border); border-top: 3px solid var(--accent); }
.stat .v { font-size: 27px; font-weight: 900; } .stat .k { font-size: 12.5px; color: var(--text-dim); margin-top: 3px; }
.stat .v.accent { color: var(--accent); } .stat .v.warn { color: var(--warning); }
.toolbar { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; margin-bottom: 18px; } .toolbar .grow { flex: 1; min-width: 160px; }
.code-pill { font-family: ui-monospace, Consolas, monospace; background: var(--surface-3); border: 1px solid var(--border); padding: 3px 9px; border-radius: 7px; font-size: 13px; color: var(--accent); }

/* ============ FAQ / Predikce ============ */
.accordion { display: flex; flex-direction: column; gap: 10px; max-width: 820px; }
.acc-item { border: 1px solid var(--border); border-radius: 12px; background: var(--surface); overflow: hidden; }
.acc-item.open { border-color: rgba(255,157,46,.45); }
.acc-q { display: flex; align-items: center; justify-content: space-between; gap: 12px; width: 100%; text-align: left; padding: 17px 18px; background: none; border: 0; color: var(--text); font-weight: 700; font-size: 15px; }
.acc-q:hover { background: var(--surface-2); } .acc-q .arrow { transition: .2s; color: var(--text-dim); }
.acc-item.open .acc-q { color: var(--accent); } .acc-item.open .acc-q .arrow { transform: rotate(180deg); color: var(--accent); }
.acc-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; } .acc-item.open .acc-a { max-height: 320px; }
.acc-a-inner { padding: 0 18px 18px; color: var(--text-dim); }

/* Exchange / profil */
.exchange-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; }
.ex-card { padding: 20px; display: flex; flex-direction: column; gap: 13px; }
.ex-card .ex-top { display: flex; align-items: center; gap: 12px; }
.ex-emoji { width: 50px; height: 50px; border-radius: 12px; display: grid; place-items: center; font-size: 24px; background: var(--surface-3); flex: none; }
.profile-head { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.profile-head .avatar { width: 74px; height: 74px; font-size: 27px; border-radius: 14px; }
.profile-points { margin-left: auto; text-align: right; } .profile-points .v { font-size: 30px; font-weight: 900; color: var(--accent); }
.sub-tabs { display: flex; gap: 8px; margin: 24px 0 16px; flex-wrap: wrap; }
.sub-tabs button { padding: 10px 16px; border-radius: 10px; background: var(--surface-2); border: 1px solid var(--border); color: var(--text-dim); font-weight: 700; }
.sub-tabs button.active { color: var(--accent-ink); background: var(--accent-grad); border-color: transparent; }

.empty { text-align: center; padding: 44px 20px; color: var(--text-faint); } .empty .big { font-size: 42px; margin-bottom: 10px; }
.skeleton { background: linear-gradient(90deg, var(--surface), var(--surface-2), var(--surface)); background-size: 200% 100%; animation: shimmer 1.3s infinite; border-radius: var(--r); }
@keyframes shimmer { from { background-position: 200% 0; } to { background-position: -200% 0; } }
footer.site-footer { border-top: 1px solid var(--border); padding: 22px 0; color: var(--text-faint); font-size: 13px; text-align: center; }
.site-credit { margin-top: 9px; font-size: 12px; color: var(--text-faint); opacity: .8; letter-spacing: .3px; }
.credit-name { color: var(--accent); font-weight: 800; text-decoration: none; transition: text-shadow .15s; }
.credit-name:hover { text-decoration: underline; text-shadow: 0 0 12px var(--accent-glow); }
.flash-highlight { animation: flash-highlight 1.7s ease; }
@keyframes flash-highlight { 0%, 18% { box-shadow: 0 0 0 2px var(--accent), 0 0 30px var(--accent-glow); } 100% { box-shadow: 0 0 0 0 rgba(0,0,0,0); } }
@media (prefers-reduced-motion: reduce) { .flash-highlight { animation: none; } }

/* Pickr CS2 skinů (admin formulář odměny) */
.skin-picker { margin-top: 8px; padding: 10px; border: 1px solid var(--border); border-radius: 12px; background: var(--bg-2); }
.skin-results { display: grid; grid-template-columns: repeat(auto-fill, minmax(104px, 1fr)); gap: 8px; max-height: 270px; overflow-y: auto; margin-top: 10px; }
.skin-card { display: flex; flex-direction: column; align-items: center; gap: 5px; padding: 8px 5px; border: 1px solid var(--border); border-radius: 10px; background: var(--surface); cursor: pointer; text-align: center; color: var(--text); transition: border-color .12s, transform .12s, box-shadow .12s; }
.skin-card:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: 0 8px 18px -12px var(--accent-glow); }
.skin-card img { width: 100%; height: 54px; object-fit: contain; }
.skin-card span { font-size: 10px; font-weight: 700; line-height: 1.2; color: var(--text-dim); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.row-between { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.stack-12 { display: flex; flex-direction: column; gap: 12px; }
.tag-pending { color: var(--warning); font-weight: 700; } .tag-done { color: var(--success); font-weight: 700; }
.pos { color: var(--success); font-weight: 800; } .neg { color: var(--danger); font-weight: 800; }

/* daily streak */
#dailyCard .panel { border-left-color: var(--accent); margin-bottom: 18px; }
.ds-badge { background: rgba(70,224,138,.14); color: var(--success); border: 1px solid rgba(70,224,138,.5); font-weight: 800; font-size: 12px; padding: 5px 12px; border-radius: 999px; white-space: nowrap; }
.ds-row { display: grid; grid-template-columns: repeat(7, 1fr); gap: 8px; margin-bottom: 14px; }
.ds-chip { border-radius: 10px; padding: 10px 4px; text-align: center; border: 1px solid var(--border); background: var(--surface-2); }
.ds-chip .ds-rew { font-weight: 900; font-size: 14px; }
.ds-chip .ds-lbl { font-size: 10px; font-weight: 800; color: var(--text-faint); margin-top: 3px; }
.ds-chip.done { background: rgba(70,224,138,.12); border-color: rgba(70,224,138,.5); }
.ds-chip.done .ds-rew, .ds-chip.done .ds-lbl { color: var(--success); }
.ds-chip.today { background: rgba(255,157,46,.16); border-color: var(--accent); box-shadow: 0 0 14px var(--accent-glow); }
.ds-chip.today .ds-rew, .ds-chip.today .ds-lbl { color: var(--accent); }
.ds-chip.locked { opacity: .65; }
@media (max-width: 520px) { .ds-row { gap: 5px; } .ds-chip { padding: 8px 2px; } .ds-chip .ds-rew { font-size: 12px; } }

/* anticheat pravidla */
.ac-rules { display: flex; flex-direction: column; gap: 10px; }
.ac-rule { display: flex; align-items: center; gap: 14px; padding: 14px 16px; border: 1px solid var(--border); border-radius: var(--r); background: var(--surface); }
.ac-rule.off { opacity: .55; }
.ac-rule-main { flex: 1; min-width: 0; }
.ac-rule-top { display: flex; align-items: center; gap: 9px; flex-wrap: wrap; margin-bottom: 4px; }
.ac-rule-top b { font-size: 14.5px; }
.ac-sev { font-size: 9.5px; font-weight: 900; letter-spacing: .04em; padding: 2px 7px; border-radius: 5px; text-transform: uppercase; }
.sev-crit { background: rgba(255,77,94,.2); color: #ff6b78; }
.sev-high { background: rgba(255,157,46,.18); color: var(--accent); }
.sev-med { background: rgba(255,211,77,.16); color: var(--gold); }
.sev-low { background: var(--surface-3); color: var(--text-dim); }
.ac-tag { font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; color: var(--success); border: 1px solid rgba(70,224,138,.4); padding: 1px 6px; border-radius: 5px; }
.ac-tag.mon { color: var(--text-faint); border-color: var(--border); }
.ac-prah { font-size: 11.5px; color: var(--text-faint); margin-top: 4px; }
.ac-prah b { color: var(--text-dim); font-family: ui-monospace, Consolas, monospace; }
.ac-switch { flex: none; width: 46px; height: 26px; border-radius: 999px; background: var(--surface-3); border: 1px solid var(--border); position: relative; transition: .15s; }
.ac-switch .knob { position: absolute; top: 2px; left: 2px; width: 20px; height: 20px; border-radius: 50%; background: #8089a8; transition: .15s; }
.ac-switch.on { background: var(--success); border-color: var(--success); }
.ac-switch.on .knob { left: 22px; background: #fff; }

/* drop banner */
.drop-banner { background: linear-gradient(135deg, rgba(255,157,46,.14), rgba(255,157,46,.03)); border: 1px solid var(--accent); border-radius: var(--r-lg); padding: 16px 20px; margin: 22px 0; box-shadow: 0 0 28px var(--accent-glow); display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.drop-top { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.drop-live { font-weight: 900; text-transform: uppercase; letter-spacing: .06em; color: #fff; background: var(--danger); padding: 5px 12px; border-radius: 8px; animation: droppulse 1.1s infinite; }
@keyframes droppulse { 0%,100% { box-shadow: 0 0 0 0 rgba(255,77,94,.55); } 50% { box-shadow: 0 0 0 9px rgba(255,77,94,0); } }
.drop-info b { color: var(--accent); }
.drop-action { margin-left: auto; } .drop-form { display: flex; gap: 8px; } .drop-form .input { width: 190px; font-weight: 800; letter-spacing: .1em; text-align: center; }
.drop-winners { width: 100%; display: flex; flex-wrap: wrap; gap: 7px; padding-top: 8px; border-top: 1px dashed var(--border); }
.drop-winner { font-size: 12px; font-weight: 800; background: var(--surface-2); border: 1px solid var(--accent); color: var(--accent); padding: 3px 9px; border-radius: 7px; }

/* ============ Responsive ============ */
@media (max-width: 860px) {
  .nav { display: none; } .hamburger { display: grid; } .user-chip .uc-name, .user-chip .uc-tier { display: none; }
  .da-head h1 { font-size: 26px; } .pts-pill .lbl { display: none; }
}
@media (max-width: 720px) {
  .podium { gap: 7px; padding-top: 42px; }
  .podium-card { padding: 14px 5px 0; }
  .podium-card .pod-av { width: 50px; height: 50px; font-size: 19px; border-radius: 12px; }
  .podium-1 .pod-av { width: 62px; height: 62px; font-size: 23px; }
  .pod-medal { font-size: 24px; } .podium-1 .pod-medal { font-size: 30px; }
  .pod-crown { font-size: 24px; top: -26px; }
  .pod-name { font-size: 12px; } .podium-1 .pod-name { font-size: 13.5px; }
  .pod-pts { font-size: 15px; } .podium-1 .pod-pts { font-size: 18px; }
  .pod-pts span { font-size: 8.5px; }
  .pod-badges { gap: 3px; } .pod-badges .badge { font-size: 8.5px; padding: 1px 5px; }
  .podium-card .tier-chip { font-size: 9px; padding: 2px 6px; margin-bottom: 11px; }
  .podium-1 .pod-base { height: 70px; } .podium-2 .pod-base { height: 52px; } .podium-3 .pod-base { height: 38px; }
  .pod-basenum { font-size: 30px; } .podium-1 .pod-basenum { font-size: 38px; }
  .pod-rays { width: 150px; height: 150px; }
  .profile-points { margin-left: 0; width: 100%; text-align: left; }
  .drop-action { margin-left: 0; width: 100%; } .drop-form { width: 100%; } .drop-form .input { flex: 1; width: auto; }
}
