/* ============================================================
   CORRIDA DE DEPÓSITOS ZK — CSS GLOBAL
   Isolado do torneio principal
   ============================================================ */

:root {
  --gold:        #D4AF37;
  --gold-light:  #F0D060;
  --gold-dark:   #A88420;
  --gold-dim:    rgba(212,175,55,0.15);
  --bg-dark:     #08090A;
  --bg-card:     #0F1012;
  --bg-card2:    #14161A;
  --border-gold:  rgba(212,175,55,0.45);
  --border-gold2: rgba(212,175,55,0.18);
  --text-white:  #F0F0F0;
  --text-main:   #D8D8D8;
  --text-muted:  #8A8F98;
  --text-dim:    #555A63;
  --green:       #48BB78;
  --green-dim:   rgba(72,187,120,0.15);
  --danger:      #E53E3E;
  --shadow-card: 0 4px 24px rgba(0,0,0,0.5), 0 0 0 1px rgba(212,175,55,0.06);
  --font-title:  'Bebas Neue', 'Poppins', sans-serif;
  --font-body:   'Poppins', 'Inter', sans-serif;
  --font-rank:   'Bebas Neue', monospace;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-main);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }

/* ── LOGO ─────────────────────────────────────────────────── */
.logo-zk {
  width: 56px; height: 56px; border-radius: 50%; overflow: hidden;
  border: 2px solid var(--border-gold);
  flex-shrink: 0;
}
.logo-zk img { width: 100%; height: 100%; object-fit: cover; }
.logo-zk.lg  { width: 80px; height: 80px; border-width: 3px; }
.logo-zk.xl  { width: 110px; height: 110px; border-width: 3px; }

/* ── BOTÕES ───────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 12px 24px;
  border-radius: 10px; border: none; cursor: pointer;
  font-family: var(--font-title); font-size: 1rem;
  font-weight: 700; letter-spacing: 0.04em;
  transition: all 0.2s; text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  color: #000;
  box-shadow: 0 4px 14px rgba(212,175,55,0.35);
}
.btn-primary:hover { box-shadow: 0 6px 24px rgba(212,175,55,0.55); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--border-gold);
  color: var(--gold-light);
}
.btn-outline:hover { background: var(--gold-dim); border-color: var(--gold); transform: translateY(-2px); }
.btn-lg { padding: 15px 36px; font-size: 1.1rem; }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }
.btn:disabled { opacity: 0.55; cursor: not-allowed; transform: none !important; }

/* ── NAVBAR ───────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(16px,4vw,48px);
  height: 64px;
  background: rgba(8,9,10,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-gold2);
}
.navbar-brand { display: flex; align-items: center; gap: 10px; }
.navbar-brand span { font-family: var(--font-title); font-size: 1.1rem; color: var(--gold-light); letter-spacing: 0.06em; }
.navbar-links { display: flex; gap: 28px; list-style: none; }
.navbar-links a { font-size: 0.88rem; color: var(--text-muted); transition: color 0.2s; }
.navbar-links a:hover { color: var(--gold-light); }
.navbar-right { display: flex; gap: 10px; align-items: center; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { width: 22px; height: 2px; background: var(--gold); border-radius: 2px; display: block; transition: all 0.3s; }
.mobile-drawer {
  display: none; flex-direction: column; gap: 0;
  position: fixed; top: 64px; left: 0; right: 0; z-index: 800;
  background: rgba(10,11,13,0.98);
  border-bottom: 1px solid var(--border-gold2);
  padding: 12px 0;
}
.mobile-drawer a, .mobile-drawer .btn {
  padding: 14px 24px; color: var(--text-main);
  font-size: 0.95rem; border-radius: 0; width: 100%;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.mobile-drawer.open { display: flex; }
@media (max-width: 768px) {
  .navbar-links { display: none; }
  .hamburger    { display: flex; }
  .navbar-right .btn-outline { display: none; }
}

/* ── CARDS ────────────────────────────────────────────────── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold2);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow-card);
}

/* ── SEÇÃO ────────────────────────────────────────────────── */
.section { padding: clamp(60px,8vw,100px) clamp(16px,5vw,48px); }
.section-title {
  font-family: var(--font-title);
  font-size: clamp(1.8rem,4vw,2.8rem);
  color: var(--text-white);
  line-height: 1.1;
  margin-bottom: 12px;
}
.section-title span { color: var(--gold); }
.section-sub { font-size: clamp(0.9rem,2vw,1.05rem); color: var(--text-muted); line-height: 1.7; }
.text-center { text-align: center; }
.max-800 { max-width: 800px; margin: 0 auto; }
.max-1100 { max-width: 1100px; margin: 0 auto; }

/* ── BADGE ────────────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 14px;
  background: var(--gold-dim);
  border: 1px solid var(--border-gold);
  border-radius: 999px;
  font-size: 0.78rem; font-weight: 700;
  color: var(--gold-light);
  text-transform: uppercase; letter-spacing: 0.07em;
}

/* ── PRÊMIO PODIUM ────────────────────────────────────────── */
.podium-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: end;
  max-width: 680px;
  margin: 0 auto 32px;
}
.podium-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold2);
  border-radius: 16px;
  text-align: center;
  padding: 20px 12px;
  position: relative;
  transition: transform 0.2s;
}
.podium-card:hover { transform: translateY(-4px); }
.podium-card.first {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(212,175,55,0.08) 0%, var(--bg-card) 100%);
  box-shadow: 0 0 32px rgba(212,175,55,0.15);
  padding: 28px 12px;
}
.podium-card.second { border-color: rgba(192,192,192,0.4); }
.podium-card.third  { border-color: rgba(205,127,50,0.4); }
.podium-pos {
  font-family: var(--font-rank);
  font-size: 2.8rem;
  line-height: 1;
  margin-bottom: 4px;
}
.podium-card.first  .podium-pos { color: var(--gold); font-size: 3.4rem; }
.podium-card.second .podium-pos { color: #C0C0C0; }
.podium-card.third  .podium-pos { color: #CD7F32; }
.podium-prize {
  font-family: var(--font-rank);
  font-size: clamp(1.3rem,3vw,1.8rem);
  color: var(--gold-light);
  line-height: 1;
  margin: 8px 0 4px;
}
.podium-card.first .podium-prize { font-size: clamp(1.6rem,3.5vw,2.2rem); }
.podium-label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.podium-medal { font-size: 1.8rem; margin-bottom: 6px; }
.podium-card.first .podium-medal { font-size: 2.2rem; }

/* ── OUTROS PRÊMIOS ───────────────────────────────────────── */
.prizes-rest {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
}
.prize-row {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--bg-card);
  border: 1px solid var(--border-gold2);
  border-radius: 12px;
  padding: 14px 16px;
  gap: 10px;
}
.prize-pos { font-family: var(--font-rank); font-size: 1.5rem; color: var(--text-muted); }
.prize-val { font-family: var(--font-rank); font-size: 1.3rem; color: var(--gold-light); }

/* ── COMO FUNCIONA ────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold2);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.step-card:hover { border-color: var(--border-gold); transform: translateY(-3px); }
.step-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-rank); font-size: 1.4rem; color: var(--gold);
  margin: 0 auto 14px;
}
.step-icon { font-size: 1.8rem; margin-bottom: 10px; }
.step-title { font-weight: 700; font-size: 0.95rem; color: var(--text-white); margin-bottom: 6px; }
.step-desc  { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }

/* ── RANKING PREVIEW ─────────────────────────────────────── */
.rank-list { display: flex; flex-direction: column; gap: 8px; max-width: 600px; margin: 0 auto; }
.rank-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-gold2);
  border-radius: 12px;
  transition: border-color 0.2s;
}
.rank-item:hover { border-color: var(--border-gold); }
.rank-item.top1 { border-color: var(--gold); background: linear-gradient(90deg, rgba(212,175,55,0.06), var(--bg-card)); }
.rank-item.top2 { border-color: rgba(192,192,192,0.35); }
.rank-item.top3 { border-color: rgba(205,127,50,0.35); }
.rank-pos { font-family: var(--font-rank); font-size: 1.3rem; width: 36px; text-align: center; flex-shrink: 0; }
.rank-name { flex: 1; font-weight: 600; font-size: 0.92rem; color: var(--text-white); }
.rank-pts  { font-family: var(--font-rank); font-size: 1.1rem; color: var(--gold-light); flex-shrink: 0; }
.rank-prize-tag {
  font-size: 0.72rem; font-weight: 700;
  background: var(--gold-dim); border: 1px solid var(--border-gold);
  color: var(--gold); border-radius: 6px; padding: 2px 8px;
  flex-shrink: 0;
}

/* ── CONTADOR (stats) ────────────────────────────────────── */
.stats-row {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 32px;
  padding: 48px 24px;
  border-top: 1px solid var(--border-gold2);
  border-bottom: 1px solid var(--border-gold2);
}
.stat-item { text-align: center; }
.stat-val { font-family: var(--font-rank); font-size: clamp(2rem,5vw,3rem); color: var(--gold-light); line-height: 1; }
.stat-lbl { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: flex; align-items: center;
  padding: clamp(80px,10vw,120px) clamp(16px,5vw,64px) clamp(60px,8vw,80px);
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(212,175,55,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 80% 50%, rgba(212,175,55,0.04) 0%, transparent 60%),
    linear-gradient(180deg, #08090A 0%, #0A0E08 100%);
  position: relative; overflow: hidden;
}
.hero-inner {
  max-width: 1100px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.hero-eyebrow { margin-bottom: 16px; }
.hero-title {
  font-family: var(--font-title);
  font-size: clamp(2.8rem,6vw,5rem);
  color: var(--text-white);
  line-height: 1.0;
  margin-bottom: 20px;
}
.hero-title .gold { color: var(--gold); }
.hero-title .green { color: var(--green); }
.hero-sub {
  font-size: clamp(0.95rem,2vw,1.1rem);
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-img-col { display: flex; align-items: center; justify-content: center; }
.hero-prize-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  padding: 32px 28px;
  text-align: center;
  box-shadow: 0 0 60px rgba(212,175,55,0.12), var(--shadow-card);
  max-width: 320px; width: 100%;
}
.hero-prize-label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 10px; }
.hero-prize-val {
  font-family: var(--font-rank);
  font-size: clamp(3rem,6vw,4.5rem);
  color: var(--gold-light);
  line-height: 1;
  text-shadow: 0 0 40px rgba(212,175,55,0.4);
}
.hero-prize-sub { font-size: 0.85rem; color: var(--text-muted); margin-top: 8px; }
.hero-prize-divider { height: 1px; background: var(--border-gold2); margin: 20px 0; }
.hero-pts-rule {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-size: 0.88rem; color: var(--text-main);
}
.hero-pts-rule .pts-badge {
  background: var(--gold-dim); border: 1px solid var(--border-gold);
  color: var(--gold); font-family: var(--font-rank); font-size: 1.1rem;
  padding: 4px 12px; border-radius: 8px;
}

/* ── WATERMARK ────────────────────────────────────────────── */
.page-watermark {
  position: fixed; bottom: 0; right: 0;
  width: clamp(220px,30vw,380px);
  opacity: 0.025; pointer-events: none; z-index: 0;
  filter: grayscale(1);
}

/* ── LOADER ───────────────────────────────────────────────── */
#page-loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg-dark);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 20px;
}
.loader-ring {
  width: 48px; height: 48px; border-radius: 50%;
  border: 3px solid rgba(212,175,55,0.15);
  border-top-color: var(--gold);
  animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.logo-pulse { animation: pulse 2.5s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.7;transform:scale(0.97)} }

/* ── TOAST ────────────────────────────────────────────────── */
#toast-container { position: fixed; bottom: 90px; right: 20px; z-index: 9000; display: flex; flex-direction: column; gap: 10px; }
.toast {
  padding: 12px 18px; border-radius: 10px; font-size: 0.88rem; font-weight: 600;
  background: var(--bg-card2); border: 1px solid var(--border-gold2); color: var(--text-white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  animation: slideIn 0.3s ease; max-width: 300px;
}
.toast.success { border-color: rgba(72,187,120,0.4); color: #68D391; }
.toast.error   { border-color: rgba(229,62,62,0.4);  color: #FC8181; }
@keyframes slideIn { from{opacity:0;transform:translateX(20px)} to{opacity:1;transform:translateX(0)} }

/* ── SUPPORT BTN ──────────────────────────────────────────── */
.support-btn {
  position: fixed; bottom: 24px; right: 20px; z-index: 8000;
  display: flex; align-items: center; gap: 8px;
  padding: 11px 18px;
  background: linear-gradient(135deg, #229ED9, #1A7FB5);
  color: #fff; font-size: 0.85rem; font-weight: 700;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(34,158,217,0.4);
  text-decoration: none;
  transition: all 0.25s;
}
.support-btn:hover { transform: translateY(-3px); box-shadow: 0 6px 24px rgba(34,158,217,0.55); }

/* ── FORMULÁRIOS ─────────────────────────────────────────── */
.field-wrap  { display: flex; flex-direction: column; gap: 5px; }
.field-label { font-size: 0.75rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.field-input {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 9px; padding: 12px 14px;
  color: var(--text-white); font-size: 0.9rem; width: 100%;
  font-family: var(--font-body);
  transition: border-color 0.2s;
}
.field-input:focus { border-color: var(--gold); outline: none; }
.input-wrap { position: relative; }
.input-wrap .field-input { padding-right: 44px; }
.toggle-pass {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: var(--text-muted); cursor: pointer; padding: 4px;
}

/* ── MENSAGENS ────────────────────────────────────────────── */
.msg-error   { background:rgba(229,62,62,0.1); border:1px solid rgba(229,62,62,0.3); border-radius:9px; padding:11px 14px; color:#FC8181; font-size:0.82rem; display:none; line-height:1.5; }
.msg-success { background:rgba(56,161,105,0.1); border:1px solid rgba(56,161,105,0.3); border-radius:9px; padding:14px; color:#68D391; font-size:0.85rem; display:none; text-align:center; }
.msg-warning { background:rgba(237,137,54,0.1); border:1px solid rgba(237,137,54,0.3); border-radius:9px; padding:11px 14px; color:#F6AD55; font-size:0.82rem; display:none; }
.msg-error.show, .msg-success.show, .msg-warning.show { display:block; }

/* ── UTILITÁRIOS ─────────────────────────────────────────── */
.hidden   { display: none !important; }
.mt-8     { margin-top: 8px; }
.mt-16    { margin-top: 16px; }
.mb-8     { margin-bottom: 8px; }
.mb-16    { margin-bottom: 16px; }
.mb-24    { margin-bottom: 24px; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.w-full   { width: 100%; }

/* ── APP LAYOUT (dashboard/admin) ────────────────────────── */
.app-layout { display: flex; min-height: 100svh; }
.sidebar {
  width: 240px; flex-shrink: 0;
  background: var(--bg-card); border-right: 1px solid var(--border-gold2);
  display: flex; flex-direction: column;
  position: fixed; top: 0; left: 0; bottom: 0; z-index: 500;
  transition: transform 0.3s;
}
.sidebar-header { padding: 24px 16px; border-bottom: 1px solid var(--border-gold2); text-align: center; }
.sidebar-nav { flex: 1; overflow-y: auto; padding: 12px 8px; display: flex; flex-direction: column; gap: 2px; }
.sidebar-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 10px;
  font-size: 0.88rem; font-weight: 600; color: var(--text-muted);
  transition: all 0.2s; cursor: pointer; text-decoration: none;
}
.sidebar-item:hover  { background: var(--gold-dim); color: var(--gold-light); }
.sidebar-item.active { background: var(--gold-dim); color: var(--gold); border: 1px solid var(--border-gold2); }
.sidebar-item .icon  { font-size: 1rem; width: 20px; text-align: center; }
.sidebar-footer { padding: 16px; border-top: 1px solid var(--border-gold2); }
.main-content { margin-left: 240px; flex: 1; padding: clamp(16px,3vw,32px); min-height: 100svh; }
.topbar-mobile {
  display: none; align-items: center; justify-content: space-between;
  padding: 0 16px; height: 56px;
  background: var(--bg-card); border-bottom: 1px solid var(--border-gold2);
  position: sticky; top: 0; z-index: 400;
}
.sidebar-overlay {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.6);
  z-index: 490; backdrop-filter: blur(2px);
}
@media (max-width: 900px) {
  .sidebar { transform: translateX(-100%); }
  .sidebar.open { transform: translateX(0); }
  .sidebar-overlay.open { display: block; }
  .main-content { margin-left: 0; }
  .topbar-mobile { display: flex; }
}

/* ── PENDING BADGE ────────────────────────────────────────── */
.pending-badge {
  background: var(--danger); color: #fff;
  border-radius: 999px; padding: 1px 7px;
  font-size: 0.7rem; font-weight: 700; margin-left: 4px;
}
.filter-pills { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
.pill {
  padding: 7px 16px; border-radius: 999px;
  border: 1px solid var(--border-gold2); background: transparent;
  color: var(--text-muted); font-size: 0.81rem; font-weight: 600;
  cursor: pointer; transition: all 0.2s; white-space: nowrap;
}
.pill.active { background: var(--gold-dim); border-color: var(--gold); color: var(--gold); }
.pill:hover  { border-color: var(--gold); color: var(--gold-light); }

/* ── PRINT CARD ───────────────────────────────────────────── */
.print-card {
  background: var(--bg-card); border: 1px solid var(--border-gold2);
  border-radius: 14px; padding: 16px; margin-bottom: 14px; transition: border-color 0.2s;
}
.print-card.approved { border-color: rgba(56,161,105,0.35); }
.print-card.rejected { border-color: rgba(229,62,62,0.25); opacity: 0.75; }
.print-header { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; }
.print-user-name { font-weight: 700; font-size: 0.93rem; }
.print-meta { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 5px; font-size: 0.76rem; color: var(--text-muted); }
.print-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 12px; }

/* ── EMPTY STATE ──────────────────────────────────────────── */
.empty-state { text-align: center; padding: 48px 20px; color: var(--text-muted); }
.empty-state i { font-size: 2.8rem; margin-bottom: 12px; display: block; opacity: 0.4; }

/* ── MODAL ────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.92); z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box {
  background: var(--bg-card); border: 1px solid var(--border-gold);
  border-radius: 18px; width: 100%; max-width: 500px; max-height: 90vh;
  overflow-y: auto; padding: 28px 24px; position: relative;
}
.modal-close {
  position: absolute; top: 14px; right: 14px;
  background: rgba(255,255,255,0.06); border: 1px solid var(--border-gold2);
  color: var(--text-muted); border-radius: 50%;
  width: 34px; height: 34px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 0.85rem; transition: background 0.2s;
}
.modal-close:hover { background: rgba(255,255,255,0.12); color: #fff; }

/* ── RESPONSIVO GERAL ─────────────────────────────────────── */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-img-col { order: -1; }
  .hero-prize-card { max-width: 100%; }
  .podium-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .print-actions { flex-direction: column; }
}
@media (max-width: 479px) {
  .podium-grid { gap: 8px; }
  .podium-card { padding: 14px 8px; }
  .podium-pos  { font-size: 2rem; }
  .podium-prize{ font-size: 1.1rem; }
  .prizes-rest { grid-template-columns: 1fr 1fr; }
}
