:root {
  --gold: #F5A623;
  --gold-light: #FFD980;
  --green: #00A550;
  --green-dark: #007A3D;
  --red: #E63946;
  --bg: #0A1628;
  --bg2: #0F1F3D;
  --bg3: #152848;
  --card: #1A2F52;
  --card2: #1F3660;
  --border: rgba(255, 255, 255, 0.08);
  --text: #F0F4FF;
  --text2: #8FA3C8;
  --radius: 14px;
  --font-title: 'Bebas Neue', sans-serif;
  --font-body: 'Nunito', sans-serif;
}

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

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}

button { font-family: inherit; }

/* ===== HEADER ===== */
.header {
  background: linear-gradient(135deg, #0A1628 0%, #0F1F3D 50%, #1A0A2E 100%);
  border-bottom: 1px solid var(--border);
  padding: 0 16px;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 12px;
  flex-wrap: wrap;
  padding: 8px 0;
}
.logo {
  font-family: var(--font-title);
  font-size: 24px;
  letter-spacing: 2px;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.logo span { color: var(--text); }
.nav { display: flex; gap: 4px; flex-wrap: wrap; justify-content: flex-end; }
.nav-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text2);
  font-size: 13px;
  font-weight: 700;
  padding: 7px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-btn:hover, .nav-btn.active {
  background: var(--card2);
  color: var(--text);
  border-color: var(--gold);
}
.nav-btn.active { color: var(--gold); }
.nav-btn[hidden] { display: none; }

.session-info {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.playing-as {
  background: rgba(245, 166, 35, 0.12);
  border: 1px solid rgba(245, 166, 35, 0.35);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  color: var(--text2);
  font-weight: 700;
}
.playing-as b {
  color: var(--gold);
  font-weight: 800;
  margin-left: 4px;
  letter-spacing: 0.3px;
}
.btn-link {
  background: none;
  border: none;
  color: var(--text2);
  font-size: 12px;
  cursor: pointer;
  text-decoration: underline;
  font-weight: 600;
}
.btn-link:hover { color: var(--gold); }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #0A1628, #1A0A2E, #0F1F3D);
  padding: 32px 20px 28px;
  text-align: center;
  position: relative;
}
.hero h1 {
  font-family: var(--font-title);
  font-size: clamp(36px, 8vw, 60px);
  letter-spacing: 4px;
  color: var(--gold);
  text-shadow: 0 0 40px rgba(245, 166, 35, 0.4);
  line-height: 1;
}
.hero h1 span { color: var(--text); }
.hero-sub {
  font-size: 13px;
  color: var(--text2);
  margin-top: 8px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.hero-ball { font-size: 48px; display: block; margin-bottom: 4px; animation: bounce 2s infinite; }
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.countdown-bar {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 18px;
  flex-wrap: wrap;
}
.countdown-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 16px;
  min-width: 64px;
}
.countdown-num {
  font-family: var(--font-title);
  font-size: 26px;
  color: var(--gold);
  display: block;
  text-align: center;
  line-height: 1;
}
.countdown-lbl {
  font-size: 10px;
  color: var(--text2);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  display: block;
  margin-top: 3px;
}

/* ===== MAIN ===== */
.main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 16px 100px;
}
.section { display: none; }
.section.active { display: block; }

.section-title {
  font-family: var(--font-title);
  font-size: 28px;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 16px;
}

/* ===== LOGIN GATE ===== */
.gate {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  overflow-y: auto;
}
.gate-card {
  max-width: 460px;
  width: 100%;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.gate-card h2 {
  font-family: var(--font-title);
  font-size: 30px;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 4px;
}
.gate-card p { color: var(--text2); font-size: 14px; margin-bottom: 24px; }

/* ===== FORM ===== */
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text2);
  margin-bottom: 6px;
}
.form-group input,
.form-group select {
  width: 100%;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus { border-color: var(--gold); }

.btn {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: none;
  font-family: var(--font-title);
  font-size: 20px;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-gold { background: var(--gold); color: #0A1628; }
.btn-gold:hover { background: var(--gold-light); }
.btn-green { background: var(--green); color: white; }
.btn-green:hover { background: var(--green-dark); }
.btn-red { background: var(--red); color: white; }
.btn-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text2);
}
.btn-outline:hover { border-color: var(--gold); color: var(--text); }

.alert {
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  margin-top: 10px;
  display: none;
}
.alert.error { background: rgba(230, 57, 70, 0.15); color: #FF6B6B; border: 1px solid rgba(230, 57, 70, 0.3); }
.alert.success { background: rgba(0, 165, 80, 0.15); color: #4ADE80; border: 1px solid rgba(0, 165, 80, 0.3); }

/* ===== INICIO ===== */
.welcome-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 20px;
}
.welcome-card h2 {
  font-family: var(--font-title);
  font-size: 26px;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 8px;
}
.welcome-card h3 {
  font-family: var(--font-title);
  font-size: 22px;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 10px;
}
.welcome-card p { color: var(--text2); font-size: 14px; line-height: 1.6; }
.welcome-card p + p { margin-top: 8px; }
.welcome-card b, .welcome-card strong { color: var(--text); font-weight: 800; }
.hint-inline { color: var(--text2); font-size: 13px; font-style: italic; }

/* Listas de reglas */
.rules-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
}
.rules-list li {
  color: var(--text2);
  font-size: 14px;
  line-height: 1.55;
  padding: 8px 0 8px 22px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
  position: relative;
}
.rules-list li:last-child { border-bottom: none; }
.rules-list li::before {
  content: '▸';
  color: var(--gold);
  position: absolute;
  left: 4px;
  font-weight: 800;
}
ol.rules-list { counter-reset: rules; }
ol.rules-list li { counter-increment: rules; }
ol.rules-list li::before {
  content: counter(rules);
  background: var(--gold);
  color: #0A1628;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 800;
  left: 0;
  top: 9px;
}

/* Lista paso a paso (ordered con números prominentes) */
.rules-steps {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  counter-reset: steps;
}
.rules-steps li {
  counter-increment: steps;
  position: relative;
  padding: 10px 0 10px 42px;
  color: var(--text2);
  font-size: 14px;
  line-height: 1.55;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.rules-steps li:last-child { border-bottom: none; }
.rules-steps li::before {
  content: counter(steps);
  position: absolute;
  left: 0;
  top: 8px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: white;
  font-family: var(--font-title);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

/* Tabla de multiplicadores */
.rules-table-wrap {
  overflow-x: auto;
  margin: 10px -4px 0;
  border-radius: 10px;
  background: var(--bg3);
  border: 1px solid var(--border);
}
.rules-table {
  width: 100%;
  min-width: 420px;
  border-collapse: collapse;
  font-size: 13px;
}
.rules-table thead th {
  background: var(--card2);
  color: var(--gold);
  font-family: var(--font-title);
  font-size: 14px;
  letter-spacing: 1px;
  padding: 10px 8px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.rules-table thead th:first-child { text-align: left; padding-left: 14px; }
.rules-table tbody td {
  padding: 10px 8px;
  text-align: center;
  color: var(--text);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-weight: 600;
}
.rules-table tbody td:first-child {
  text-align: left;
  padding-left: 14px;
  color: var(--text2);
  font-weight: 700;
}
.rules-table tbody tr:last-child td { border-bottom: none; }
.rules-table tbody tr.highlight td {
  background: rgba(245, 166, 35, 0.08);
  color: var(--gold);
}
.rules-table tbody tr.highlight td:first-child { color: var(--gold); }

.pts-legend {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.pts-chip {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.pts-chip .num { font-family: var(--font-title); font-size: 18px; color: var(--gold); }
.pts-chip .desc { color: var(--text2); font-weight: 700; }

/* ===== GRUPOS ===== */
.groups-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px;
}
.group-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.group-header {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.group-letter {
  font-family: var(--font-title);
  font-size: 30px;
  color: white;
  line-height: 1;
}
.group-title {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.9);
}
.team-row {
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--border);
}
.team-row:last-child { border-bottom: none; }
.team-flag { font-size: 20px; }
.team-name { font-weight: 700; font-size: 14px; flex: 1; }

/* ===== PREDICCIONES ===== */
.banner {
  border-radius: 10px;
  padding: 14px 18px;
  text-align: center;
  margin-bottom: 16px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid;
}
.banner.locked { background: rgba(230, 57, 70, 0.15); color: #FF6B6B; border-color: rgba(230, 57, 70, 0.4); }
.banner.info { background: rgba(245, 166, 35, 0.12); color: var(--gold-light); border-color: rgba(245, 166, 35, 0.3); }

.bonos-card {
  background: var(--card);
  border: 1px solid rgba(245, 166, 35, 0.3);
  border-radius: var(--radius);
  padding: 18px;
  margin-bottom: 20px;
}
.bonos-card h3 {
  font-family: var(--font-title);
  font-size: 20px;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 8px;
}
.bonos-hint { color: var(--text2); font-size: 12px; margin-bottom: 14px; }
.bono-row {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.bono-label { font-size: 13px; font-weight: 700; flex: 1; min-width: 140px; }
.bono-input {
  flex: 2;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 9px 12px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 13px;
  outline: none;
  min-width: 180px;
}
.bono-input:focus { border-color: var(--gold); }
.bono-input:disabled { opacity: 0.6; cursor: not-allowed; }
.bono-pts {
  font-family: var(--font-title);
  font-size: 16px;
  color: var(--gold);
  white-space: nowrap;
}

.group-section { margin-bottom: 24px; }
.group-section-title {
  font-family: var(--font-title);
  font-size: 20px;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 10px;
}

.match-row {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 8px;
  align-items: center;
  margin-bottom: 8px;
}
.match-team {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}
.match-team.right { justify-content: flex-end; flex-direction: row-reverse; }
.match-team-name {
  font-weight: 700;
  font-size: 13px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.match-flag { font-size: 20px; flex-shrink: 0; }
.score-inputs { display: flex; align-items: center; gap: 6px; justify-content: center; }
.score-input {
  width: 44px;
  height: 44px;
  background: var(--bg3);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  color: var(--gold);
  font-family: var(--font-title);
  font-size: 22px;
  text-align: center;
  outline: none;
  transition: border-color 0.2s;
}
.score-input:focus { border-color: var(--gold); }
.score-input:disabled { opacity: 0.5; cursor: not-allowed; }
.score-sep { font-family: var(--font-title); font-size: 22px; color: var(--text2); }

/* Quita las flechitas del input numérico en todos los navegadores */
.score-input::-webkit-outer-spin-button,
.score-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.score-input { -moz-appearance: textfield; appearance: textfield; }

.save-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 12px 16px;
  display: none;
  justify-content: center;
  gap: 12px;
  z-index: 90;
}
.save-bar.visible { display: flex; }
.save-bar .btn { width: auto; padding: 12px 28px; font-size: 18px; }
.save-status { color: var(--green); font-weight: 800; font-size: 16px; align-self: center; }

.progress-bar-wrap { margin: 0 0 14px; }
.progress-bar-bg {
  background: var(--bg3);
  border-radius: 4px;
  height: 6px;
  overflow: hidden;
}
.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--gold));
  border-radius: 4px;
  transition: width 0.3s;
}
.progress-lbl { font-size: 11px; color: var(--text2); margin-top: 4px; font-weight: 700; }

/* ===== TABLA ===== */
.tabla-wrap {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.tabla-header {
  background: linear-gradient(135deg, var(--gold) 0%, #E8920A 100%);
  padding: 14px 18px;
}
.tabla-header h2 {
  font-family: var(--font-title);
  font-size: 24px;
  letter-spacing: 2px;
  color: #0A1628;
}
.tabla-row {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  gap: 12px;
}
.tabla-row:last-child { border-bottom: none; }
.tabla-row.podium { background: rgba(245, 166, 35, 0.04); }
.rank-badge {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-size: 18px;
  flex-shrink: 0;
}
.rank-1 { background: var(--gold); color: #0A1628; }
.rank-2 { background: #C0C0C0; color: #0A1628; }
.rank-3 { background: #CD7F32; color: white; }
.rank-n { background: var(--bg3); color: var(--text2); }
.tabla-name {
  font-weight: 800;
  font-size: 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.tabla-name .paid-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-left: 6px;
  vertical-align: middle;
}
.tabla-name .paid-dot.yes { background: var(--green); }
.tabla-name .paid-dot.no { background: var(--red); }
.tabla-details {
  display: flex;
  gap: 6px;
  font-size: 11px;
  color: var(--text2);
  flex-wrap: wrap;
}
.detail-chip {
  background: var(--bg3);
  border-radius: 6px;
  padding: 2px 8px;
  font-weight: 700;
}
.detail-chip span { color: var(--green); }
.tabla-pts {
  font-family: var(--font-title);
  font-size: 22px;
  color: var(--gold);
  text-align: right;
  min-width: 50px;
}
.pts-lbl { font-size: 10px; color: var(--text2); text-transform: uppercase; letter-spacing: 1px; font-weight: 700; text-align: right; }

.prize-info {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 16px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  text-align: center;
}
.prize-block { padding: 8px; }
.prize-block .lbl { font-size: 11px; color: var(--text2); text-transform: uppercase; letter-spacing: 1px; font-weight: 700; }
.prize-block .val { font-family: var(--font-title); font-size: 24px; color: var(--gold); margin-top: 4px; }

/* ===== ADMIN ===== */
.admin-section {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 16px;
}
.admin-section h3 {
  font-family: var(--font-title);
  font-size: 22px;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 14px;
}
.admin-section .hint { font-size: 13px; color: var(--text2); margin-bottom: 14px; line-height: 1.5; }

.lock-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg3);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 10px;
}
.lock-toggle p { flex: 1; font-size: 13px; color: var(--text2); }
.lock-toggle p strong { color: var(--text); display: block; font-size: 14px; margin-bottom: 2px; }
.toggle-switch {
  width: 52px;
  height: 28px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  cursor: pointer;
  position: relative;
  transition: background 0.3s;
  flex-shrink: 0;
}
.toggle-switch.on { background: var(--red); }
.toggle-switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  transition: transform 0.3s;
}
.toggle-switch.on::after { transform: translateX(24px); }

.admin-match-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  margin-bottom: 8px;
  align-items: center;
}
.admin-match-label { font-size: 13px; font-weight: 700; }
.real-score-inputs { display: flex; align-items: center; gap: 6px; }
.real-input {
  width: 44px;
  height: 38px;
  background: var(--bg3);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-family: var(--font-title);
  font-size: 20px;
  text-align: center;
  outline: none;
}
.real-input:focus { border-color: var(--red); }
.real-input::-webkit-outer-spin-button,
.real-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.real-input { -moz-appearance: textfield; appearance: textfield; }

.players-list { display: flex; flex-direction: column; gap: 8px; }
.player-chip {
  background: var(--bg3);
  border-radius: 8px;
  padding: 10px 14px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 12px;
  align-items: center;
  font-size: 14px;
}
.player-chip strong { font-weight: 800; }
.paid-toggle {
  background: rgba(0, 165, 80, 0.2);
  border: 1px solid rgba(0, 165, 80, 0.4);
  color: var(--green);
  border-radius: 6px;
  font-size: 12px;
  padding: 4px 10px;
  cursor: pointer;
  font-weight: 800;
}
.paid-toggle.unpaid {
  background: rgba(230, 57, 70, 0.15);
  border-color: rgba(230, 57, 70, 0.4);
  color: var(--red);
}
.delete-btn {
  background: rgba(230, 57, 70, 0.2);
  border: 1px solid rgba(230, 57, 70, 0.3);
  border-radius: 6px;
  color: var(--red);
  font-size: 12px;
  padding: 4px 10px;
  cursor: pointer;
  font-weight: 700;
}

.placeholder {
  text-align: center;
  padding: 40px 20px;
  color: var(--text2);
  font-size: 14px;
}

/* ===== Responsive ===== */
@media (max-width: 600px) {
  .header-inner { min-height: auto; padding: 10px 0; }
  .logo { font-size: 20px; }
  .nav-btn { font-size: 12px; padding: 6px 10px; }
  .hero { padding: 24px 16px 20px; }
  .hero h1 { font-size: 36px; letter-spacing: 3px; }
  .hero-ball { font-size: 40px; }
  .countdown-item { padding: 8px 12px; min-width: 56px; }
  .countdown-num { font-size: 22px; }
  .main { padding: 16px 12px 100px; }
  .section-title { font-size: 24px; }
  .match-row { padding: 10px; gap: 6px; }
  .match-team-name { font-size: 12px; }
  .match-flag { font-size: 18px; }
  .score-input { width: 38px; height: 40px; font-size: 20px; }
  .tabla-row { padding: 10px 12px; gap: 8px; grid-template-columns: auto 1fr auto; }
  .tabla-details { display: none; }
  .tabla-name { font-size: 14px; }
  .tabla-pts { font-size: 20px; }
  .save-bar .btn { padding: 10px 20px; font-size: 16px; }
  .admin-section { padding: 16px; }
  .player-chip { font-size: 13px; }
  .session-info { font-size: 11px; }
}
