/* LENDÁRIO — visual de estádio noturno */

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

:root {
  --bg: #07120b;
  --bg2: #0d2415;
  --card: rgba(255, 255, 255, 0.06);
  --card-solid: #11271a;
  --border: rgba(255, 255, 255, 0.12);
  --green: #16a34a;
  --green-bright: #22c55e;
  --yellow: #facc15;
  --text: #f0fdf4;
  --muted: #86a892;
  --red: #ef4444;
  --blue: #3b82f6;
}

html, body { height: 100%; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background:
    radial-gradient(1200px 600px at 50% -10%, rgba(34, 197, 94, 0.18), transparent 60%),
    radial-gradient(800px 400px at 85% 110%, rgba(250, 204, 21, 0.08), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
  background-attachment: fixed;
  color: var(--text);
  min-height: 100vh;
}

#app { max-width: 1100px; margin: 0 auto; padding: 24px 16px 64px; }

.screen { display: none; }
.screen.active { display: block; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* ---------- Componentes ---------- */

.panel {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  backdrop-filter: blur(8px);
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 20px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 15px; font-weight: 600;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.12s ease, box-shadow 0.12s ease;
}
.btn:hover { background: rgba(255, 255, 255, 0.14); transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn:disabled { opacity: 0.45; cursor: not-allowed; transform: none; }
.btn-primary {
  background: linear-gradient(135deg, var(--green) 0%, #15803d 100%);
  border-color: rgba(34, 197, 94, 0.5);
  box-shadow: 0 4px 18px rgba(34, 197, 94, 0.25);
}
.btn-primary:hover { background: linear-gradient(135deg, var(--green-bright) 0%, var(--green) 100%); }
.btn-yellow {
  background: linear-gradient(135deg, var(--yellow) 0%, #ca8a04 100%);
  border-color: rgba(250, 204, 21, 0.5);
  color: #1c1917;
}
.btn-ghost { background: transparent; }
.btn-big { width: 100%; padding: 16px 24px; font-size: 18px; border-radius: 14px; }
.btn-sm { padding: 6px 12px; font-size: 13px; border-radius: 9px; }

input, select {
  width: 100%;
  padding: 11px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.3);
  color: var(--text);
  font-size: 15px;
  margin-bottom: 10px;
  outline: none;
}
input:focus, select:focus { border-color: var(--green-bright); }

.row { display: flex; align-items: center; }
.row.gap { gap: 10px; margin-top: 16px; }
.row.between { justify-content: space-between; }

h2 { font-size: 26px; margin-bottom: 16px; }
h3 { font-size: 18px; margin-bottom: 8px; }
.muted { color: var(--muted); font-size: 14px; }

/* ---------- Menu ---------- */

.menu-hero { text-align: center; padding-top: 6vh; }
.logo-ball { font-size: 64px; display: inline-block; animation: bounce 2.2s ease-in-out infinite; }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.logo h1 {
  font-size: clamp(48px, 9vw, 84px);
  font-weight: 900;
  letter-spacing: 4px;
  background: linear-gradient(135deg, var(--green-bright) 0%, var(--yellow) 60%, #fde047 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.05;
}
.tagline { color: var(--muted); font-size: 17px; margin: 10px auto 32px; max-width: 480px; }
.menu-buttons { display: flex; flex-direction: column; gap: 12px; max-width: 380px; margin: 0 auto; }

.trophy-cabinet { margin: 36px auto 0; max-width: 560px; }
.trophy-cabinet h3 { color: var(--yellow); }
.career-card {
  background: var(--card); border: 1px solid rgba(34, 197, 94, 0.4);
  border-radius: 14px; padding: 16px; margin-bottom: 8px;
}
.career-card h3 { color: var(--green-bright); margin-bottom: 8px; }
.trophy-item {
  display: flex; justify-content: space-between; align-items: center;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 10px; padding: 8px 14px; margin-top: 8px; font-size: 14px;
}

/* ---------- Setup ---------- */

.opt-group { margin-bottom: 20px; }
.opt-group > label { display: block; font-weight: 700; margin-bottom: 8px; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); }
.opt-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 10px; }
.opt-card {
  border: 2px solid var(--border); border-radius: 12px; padding: 14px;
  cursor: pointer; background: rgba(0, 0, 0, 0.25); transition: border-color 0.12s, background 0.12s;
}
.opt-card:hover { background: rgba(255, 255, 255, 0.07); }
.opt-card.selected { border-color: var(--green-bright); background: rgba(34, 197, 94, 0.12); }
.opt-card b { display: block; font-size: 15px; }
.opt-card span { font-size: 12.5px; color: var(--muted); }

/* ---------- Personalização ---------- */

.color-label { font-size: 13px; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.color-label input[type="color"] {
  width: 44px; height: 32px; padding: 2px; margin: 0; cursor: pointer;
  border-radius: 8px; border: 1px solid var(--border); background: rgba(0,0,0,0.3);
}

/* ---------- Premiação ---------- */

.awards-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 10px; max-width: 860px; margin: 18px auto;
}
.award-card {
  background: var(--card); border: 1px solid rgba(250, 204, 21, 0.35);
  border-radius: 14px; padding: 14px; text-align: center;
}
.award-card .award-icon { font-size: 30px; }
.award-card .award-title { font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--yellow); margin: 4px 0; }
.award-card b { font-size: 16px; display: block; }
.award-card span { font-size: 12.5px; color: var(--muted); }

.next-opponent {
  display: inline-flex; flex-wrap: wrap; gap: 8px 14px; align-items: center; justify-content: center;
  background: rgba(0, 0, 0, 0.3); border: 1px solid var(--border);
  border-radius: 12px; padding: 8px 16px; margin-top: 10px; font-size: 13.5px;
}
.next-opponent .ov { font-weight: 900; color: var(--yellow); }

.ov-chip { font-size: 11px; font-weight: 800; color: var(--yellow); opacity: 0.85; }

.season-banner {
  text-align: center; margin-bottom: 14px;
}
.season-banner .stages { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; }
.season-banner .stage-chip {
  font-size: 12px; padding: 4px 12px; border-radius: 99px; border: 1px solid var(--border); color: var(--muted);
}
.season-banner .stage-chip.done { color: var(--green-bright); border-color: rgba(34,197,94,0.5); }
.season-banner .stage-chip.now { color: var(--yellow); border-color: rgba(250,204,21,0.55); font-weight: 700; }

/* ---------- Draft ---------- */

.draft-header {
  display: flex; flex-wrap: wrap; gap: 10px; align-items: center; justify-content: space-between;
  background: var(--card); border: 1px solid var(--border); border-radius: 14px;
  padding: 12px 18px; margin-bottom: 16px;
}
.draft-header .stat { text-align: center; }
.draft-header .stat b { display: block; font-size: 20px; }
.draft-header .stat span { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); }
.turn-banner {
  background: linear-gradient(135deg, rgba(250, 204, 21, 0.18), rgba(34, 197, 94, 0.18));
  border: 1px solid rgba(250, 204, 21, 0.45);
  border-radius: 12px; padding: 10px 16px; text-align: center; font-weight: 700; margin-bottom: 14px;
}

.draft-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 16px; }
@media (max-width: 860px) { .draft-grid { grid-template-columns: 1fr; } }

.dice-area { text-align: center; padding: 36px 16px; }
.dice {
  font-size: 84px; display: inline-block; cursor: pointer; user-select: none;
  transition: transform 0.15s ease; filter: drop-shadow(0 8px 24px rgba(0,0,0,0.5));
}
.dice:hover { transform: scale(1.08) rotate(-8deg); }
.dice.rolling { animation: roll 0.55s ease; }
@keyframes roll { 0% { transform: rotate(0); } 50% { transform: rotate(380deg) scale(1.25); } 100% { transform: rotate(720deg); } }

.squad-card { background: var(--card); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
.squad-card-head {
  padding: 14px 18px; display: flex; align-items: center; gap: 12px;
  border-bottom: 1px solid var(--border);
}
.club-badge {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  border: 3px solid; display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 17px;
}
.squad-card-head .info b { font-size: 18px; display: block; }
.squad-card-head .info span { font-size: 13px; color: var(--yellow); }
.tier-chip { margin-left: auto; font-size: 11px; padding: 4px 10px; border-radius: 99px; border: 1px solid var(--border); text-transform: uppercase; letter-spacing: 1px; }
.tier-lendario { color: var(--yellow); border-color: rgba(250, 204, 21, 0.5); }
.tier-elite { color: #a78bfa; border-color: rgba(167, 139, 250, 0.5); }
.tier-forte { color: #60a5fa; border-color: rgba(96, 165, 250, 0.5); }
.tier-medio { color: var(--muted); }

.squad-players { max-height: 430px; overflow-y: auto; padding: 8px; }
.pos-section-label { font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--muted); padding: 8px 10px 4px; }
.player-row {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px; border-radius: 10px;
}
.player-row:hover { background: rgba(255, 255, 255, 0.05); }
.player-row .pos-tag {
  font-size: 11px; font-weight: 800; width: 38px; text-align: center;
  padding: 3px 0; border-radius: 6px; background: rgba(255, 255, 255, 0.1); flex-shrink: 0;
}
.player-row .pname { flex: 1; font-weight: 600; font-size: 15px; }
.player-row .prating { font-weight: 900; font-size: 16px; width: 34px; text-align: center; }
.r-elite { color: var(--yellow); }
.r-good { color: var(--green-bright); }
.r-ok { color: #93c5fd; }
.r-low { color: var(--muted); }

/* ---------- Campo ---------- */

.pitch {
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.025) 0 36px, transparent 36px 72px),
    linear-gradient(180deg, #14532d 0%, #166534 100%);
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 14px;
  padding: 18px 8px;
  position: relative;
  min-height: 430px;
  display: flex; flex-direction: column-reverse; justify-content: space-between;
}
.pitch::before {
  content: ''; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 90px; height: 90px; border: 2px solid rgba(255,255,255,0.22); border-radius: 50%;
}
.pitch-row { display: flex; justify-content: space-evenly; gap: 4px; z-index: 1; }
.pitch-slot {
  width: 76px; min-height: 58px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 2px;
}
.pitch-slot .shirt {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 14px;
  border: 2px dashed rgba(255, 255, 255, 0.4);
  color: rgba(255, 255, 255, 0.55);
  background: rgba(0, 0, 0, 0.2);
}
.pitch-slot.filled .shirt { border-style: solid; background: #fff; color: #111; box-shadow: 0 3px 10px rgba(0,0,0,0.4); }
.pitch-slot .slot-name {
  font-size: 11px; font-weight: 700; line-height: 1.15;
  background: rgba(0, 0, 0, 0.45); border-radius: 6px; padding: 2px 5px; max-width: 84px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.pitch-slot .slot-name.empty { color: rgba(255,255,255,0.5); background: transparent; }

/* ---------- Competição ---------- */

.comp-header { text-align: center; margin-bottom: 18px; }
.comp-header h2 { font-size: 30px; }
.comp-header .muted { font-size: 15px; }

.comp-grid { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 16px; align-items: start; }
@media (max-width: 900px) { .comp-grid { grid-template-columns: 1fr; } }
.groups-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: start; }
@media (max-width: 760px) { .groups-grid { grid-template-columns: 1fr; } }

table.league-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.league-table th {
  text-align: center; padding: 8px 6px; color: var(--muted);
  font-size: 11px; text-transform: uppercase; letter-spacing: 1px;
  border-bottom: 1px solid var(--border);
}
.league-table th:nth-child(2) { text-align: left; }
.league-table td { padding: 7px 6px; text-align: center; border-bottom: 1px solid rgba(255,255,255,0.05); }
.league-table td.tname { text-align: left; font-weight: 600; white-space: nowrap; max-width: 220px; overflow: hidden; text-overflow: ellipsis; }
.league-table tr.me { background: rgba(34, 197, 94, 0.13); }
.league-table tr.me td.tname { color: var(--green-bright); }
.league-table tr.rival td.tname { color: var(--yellow); }
.league-table td.pts { font-weight: 900; }
.pos-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: 6px; }

.fixtures-list { display: flex; flex-direction: column; gap: 6px; }
.fixture {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 8px;
  background: rgba(0, 0, 0, 0.25); border: 1px solid var(--border);
  border-radius: 10px; padding: 8px 12px; font-size: 13.5px;
}
.fixture .home { text-align: right; }
.fixture .away { text-align: left; }
.fixture .score { font-weight: 900; font-size: 15px; white-space: nowrap; padding: 2px 10px; border-radius: 8px; background: rgba(255,255,255,0.08); }
.fixture.mine { border-color: rgba(34, 197, 94, 0.55); background: rgba(34, 197, 94, 0.1); }
.fixture .pens { font-size: 11px; color: var(--yellow); }
.fixture.played { cursor: pointer; transition: border-color 0.12s, transform 0.12s; }
.fixture.played:hover { border-color: rgba(250, 204, 21, 0.55); transform: translateY(-1px); }
.league-table td.ov-cell { font-weight: 800; color: var(--yellow); opacity: 0.9; }

.bracket-round { margin-bottom: 18px; }
.bracket-round h3 { color: var(--yellow); text-transform: uppercase; letter-spacing: 1.5px; font-size: 14px; }

.scorers-list { font-size: 14px; }
.scorers-list .scorer-row { display: flex; justify-content: space-between; padding: 6px 4px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.scorers-list .goals { font-weight: 900; color: var(--yellow); }

.comp-actions { display: flex; flex-wrap: wrap; gap: 10px; margin: 16px 0; justify-content: center; }

.tabs { display: flex; gap: 6px; margin-bottom: 12px; }
.tab {
  padding: 8px 16px; border-radius: 10px; cursor: pointer; font-weight: 700; font-size: 14px;
  border: 1px solid var(--border); background: transparent; color: var(--muted);
}
.tab.active { background: rgba(34, 197, 94, 0.15); color: var(--text); border-color: rgba(34, 197, 94, 0.5); }

/* ---------- Partida ao vivo ---------- */

.modal {
  position: fixed; inset: 0; z-index: 50;
  background: rgba(0, 0, 0, 0.75);
  display: flex; align-items: center; justify-content: center; padding: 16px;
}
.modal.hidden { display: none; }
.modal-content { width: 100%; max-width: 620px; max-height: 90vh; overflow-y: auto; }

.match-live {
  background: linear-gradient(180deg, #0c1f12, #11271a);
  border: 1px solid var(--border); border-radius: 18px; padding: 24px;
}
.scoreboard { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 12px; text-align: center; }
.scoreboard .team-name { font-weight: 800; font-size: 16px; line-height: 1.2; }
.scoreboard .team-name small { display: block; color: var(--muted); font-weight: 600; font-size: 11px; }
.scoreboard .score-big { font-size: 44px; font-weight: 900; letter-spacing: 2px; white-space: nowrap; }
.match-clock { text-align: center; color: var(--yellow); font-weight: 900; font-size: 18px; margin: 8px 0 14px; }
.match-events { min-height: 120px; max-height: 280px; overflow-y: auto; display: flex; flex-direction: column; gap: 6px; }
.match-event {
  display: flex; gap: 10px; align-items: center; font-size: 14px;
  background: rgba(255,255,255,0.05); border-radius: 8px; padding: 6px 10px;
  animation: fadeIn 0.25s ease;
}
.match-event .min { font-weight: 900; color: var(--muted); width: 34px; flex-shrink: 0; }
.match-event.goal { background: rgba(34, 197, 94, 0.15); border: 1px solid rgba(34, 197, 94, 0.35); }
.match-event.red { background: rgba(239, 68, 68, 0.15); }
.pens-detail { margin-top: 12px; text-align: center; font-size: 15px; }
.pens-detail .kicks { font-size: 18px; letter-spacing: 3px; }

/* ---------- Final ---------- */

.final-hero { text-align: center; padding: 5vh 16px; }
.final-hero .big-trophy { font-size: 96px; animation: bounce 2s ease-in-out infinite; }
.final-hero h2 { font-size: 38px; margin: 12px 0 4px; }
.final-hero .champion-name {
  font-size: 28px; font-weight: 900;
  background: linear-gradient(135deg, var(--yellow), #fde047);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.achievements { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin: 18px 0; }
.achievement { background: rgba(250, 204, 21, 0.12); border: 1px solid rgba(250, 204, 21, 0.4); color: var(--yellow); padding: 6px 14px; border-radius: 99px; font-size: 13.5px; font-weight: 700; }
.share-box { max-width: 480px; margin: 16px auto; }
.share-box textarea {
  width: 100%; background: rgba(0,0,0,0.4); color: var(--muted); border: 1px solid var(--border);
  border-radius: 10px; padding: 10px; font-size: 11px; font-family: monospace; resize: none; height: 64px;
}

/* ---------- Online ---------- */

.online-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
@media (max-width: 700px) { .online-grid { grid-template-columns: 1fr; } }
.online-card { background: rgba(0,0,0,0.25); border: 1px solid var(--border); border-radius: 14px; padding: 18px; }
.online-card p { color: var(--muted); font-size: 13.5px; margin-bottom: 12px; }
.code-input { text-transform: uppercase; letter-spacing: 6px; font-weight: 900; text-align: center; font-size: 20px; }

.room-code-display {
  text-align: center; margin: 12px 0 20px;
}
.room-code-display .code {
  font-size: 42px; font-weight: 900; letter-spacing: 10px; color: var(--yellow);
  background: rgba(0,0,0,0.35); border: 2px dashed rgba(250, 204, 21, 0.5);
  border-radius: 14px; padding: 10px 26px; display: inline-block; cursor: pointer;
}
.lobby-players { display: flex; flex-direction: column; gap: 8px; margin: 16px 0; }
.lobby-player {
  display: flex; align-items: center; gap: 10px;
  background: var(--card); border: 1px solid var(--border); border-radius: 10px; padding: 10px 14px;
}
.lobby-player .status { margin-left: auto; font-size: 13px; font-weight: 700; }
.status.ready { color: var(--green-bright); }
.status.waiting { color: var(--muted); }

.draft-progress { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.draft-progress .dp {
  font-size: 12.5px; padding: 4px 12px; border-radius: 99px; border: 1px solid var(--border); color: var(--muted);
}
.draft-progress .dp.done { color: var(--green-bright); border-color: rgba(34,197,94,0.5); }

/* ---------- Toast ---------- */

#toast-container { position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); z-index: 100; display: flex; flex-direction: column; gap: 8px; pointer-events: none; }
.toast {
  background: #1c1917; border: 1px solid var(--border); color: var(--text);
  border-radius: 12px; padding: 12px 20px; font-size: 14.5px; font-weight: 600;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
  animation: fadeIn 0.25s ease;
}
.toast.error { border-color: rgba(239, 68, 68, 0.6); }

.howto-list { padding-left: 20px; display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; font-size: 15px; line-height: 1.5; }

::-webkit-scrollbar { width: 9px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 99px; }

/* ---------- Mobile (celular) ---------- */

@media (max-width: 640px) {
  #app { padding: 12px 10px 48px; }

  /* tipografia mais compacta */
  .logo h1 { font-size: 44px; }
  .tagline { font-size: 14.5px; }
  .comp-header h2 { font-size: 21px; }
  .comp-header .muted { font-size: 13px; }
  .final-hero { padding: 3vh 8px; }
  .final-hero .big-trophy { font-size: 64px; }
  .final-hero h2 { font-size: 24px; }
  .final-hero .champion-name { font-size: 20px; }
  .panel { padding: 14px 12px; }

  /* tabela: esconde V/E/D e permite rolagem horizontal se ainda faltar espaço */
  table.league-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; font-size: 12.5px; }
  .league-table th, .league-table td { padding: 6px 4px; }
  .league-table th:nth-child(6), .league-table td:nth-child(6),
  .league-table th:nth-child(7), .league-table td:nth-child(7),
  .league-table th:nth-child(8), .league-table td:nth-child(8) { display: none; }
  .league-table td.tname { max-width: 140px; }

  /* abas e botões de ação */
  .tabs { flex-wrap: wrap; }
  .tab { padding: 7px 12px; font-size: 13px; }
  .comp-actions .btn { font-size: 13.5px; padding: 10px 14px; }
  .next-opponent { font-size: 12px; padding: 6px 10px; }

  /* confrontos */
  .fixture { font-size: 12px; padding: 7px 8px; gap: 6px; }
  .fixture .score { font-size: 13px; padding: 2px 7px; }

  /* draft */
  .draft-header { flex-wrap: wrap; gap: 8px; }
  .draft-header .stat b { font-size: 16px; }
  .dice { font-size: 64px; }
  .dice-area { padding: 24px 12px; }
  .squad-players { max-height: 320px; }
  .player-row { padding: 7px 6px; gap: 7px; }
  .player-row .pname { font-size: 13.5px; }
  .player-row .prating { font-size: 14px; width: 28px; }
  .player-row .btn-sm { padding: 7px 10px; font-size: 12px; }
  .squad-card-head { padding: 10px 12px; gap: 8px; }
  .squad-card-head .info b { font-size: 15px; }
  .squad-card-head .info span { font-size: 11.5px; }

  /* campo */
  .pitch { min-height: 340px; padding: 12px 4px; }
  .pitch-slot { width: 62px; min-height: 50px; }
  .pitch-slot .shirt { width: 32px; height: 32px; font-size: 12px; }
  .pitch-slot .slot-name { font-size: 9.5px; max-width: 62px; }

  /* partida ao vivo */
  .match-live { padding: 14px 10px; }
  .scoreboard { gap: 6px; }
  .scoreboard .team-name { font-size: 13px; }
  .scoreboard .score-big { font-size: 30px; letter-spacing: 1px; }
  .match-events { max-height: 220px; }
  .match-event { font-size: 12.5px; padding: 5px 8px; }

  /* premiação e resumo */
  .awards-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .award-card { padding: 10px 8px; }
  .award-card b { font-size: 14px; }
  .award-card span { font-size: 11px; }
  .season-banner .stage-chip { font-size: 10.5px; padding: 3px 8px; }

  /* opções e formulários */
  .opt-cards { grid-template-columns: 1fr 1fr; }
  .opt-card { padding: 10px 8px; }
  .opt-card b { font-size: 14px; }
  .opt-card span { font-size: 11.5px; }
}

@media (max-width: 400px) {
  .awards-grid { grid-template-columns: 1fr; }
  .pitch-slot { width: 56px; }
  .pitch-slot .slot-name { max-width: 56px; }
}

.btn.soon { opacity: 0.55; }
