/* Football Viva 页面样式：结构 + 默认「球场绿」主题 */
.football-page { margin: 0; background: #07110c; }
.football-wrap {
  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-display: "Arial Narrow", "Franklin Gothic Medium", "Segoe UI", Impact, sans-serif;
  --bg: #07110c;
  --surface: #102318;
  --card: #14301f;
  --line: rgba(168, 230, 176, 0.12);
  --text: #eef7ef;
  --muted: #8eab94;
  --lime: #c6f04d;
  --gold: #f0c14b;
  --live: #ff4b4b;
  --radius: 18px;
  --logo-radius: 14px;
  --tab-radius: 999px;
  --hover: rgba(198, 240, 77, 0.05);
  --league-bg: rgba(16, 35, 24, 0.78);
  --input-bg: #0b1a12;
  --drawer-bg: #0c1b13;
  --bar-track: #1d3a28;
  --img-bg: #0a1a10;
  --logo-shadow: 0 0 0 4px rgba(198, 240, 77, 0.12);
  --hero-bg: linear-gradient(180deg, rgba(198,240,77,0.08), rgba(16,35,24,0.9));
  --page-bg:
    radial-gradient(1200px 500px at 10% -10%, rgba(198, 240, 77, 0.08), transparent 50%),
    radial-gradient(900px 400px at 100% 0%, rgba(240, 193, 75, 0.07), transparent 45%),
    linear-gradient(180deg, #08140e 0%, #07110c 40%, #06140f 100%);
  font-family: var(--font);
  color: var(--text);
  background: var(--page-bg);
  min-height: 100vh;
  position: relative;
}
.football-wrap * { box-sizing: border-box; }
.football-wrap .app { position: relative; max-width: 1180px; margin: 0 auto; padding: 22px 18px 80px; }
.football-wrap header.top { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 8px 4px 18px; }
.football-wrap .brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.football-wrap .logo {
  width: 46px; height: 46px; border-radius: var(--logo-radius); flex: 0 0 46px;
  background: linear-gradient(145deg, var(--lime), #6ea810);
  color: #10200f;
  display: grid; place-items: center; font-family: var(--font-display); font-size: 20px;
  font-weight: 800; overflow: hidden; white-space: nowrap;
  box-shadow: var(--logo-shadow);
}
.football-wrap .logo.has-img { background: var(--img-bg); padding: 0; }
.football-wrap .logo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.football-wrap .brand h1 { font-size: 22px; letter-spacing: 0.04em; line-height: 1; font-family: var(--font-display); font-weight: 700; margin: 0; }
.football-wrap .brand p { color: var(--muted); font-size: 12px; margin: 3px 0 0; }
.football-wrap .top-actions { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
.football-wrap .clock { font-size: 12px; color: var(--muted); background: rgba(255,255,255,0.03); border: 1px solid var(--line); padding: 8px 10px; border-radius: 999px; }
.football-wrap .lang { display: flex; background: var(--surface); border: 1px solid var(--line); border-radius: 999px; overflow: hidden; }
.football-wrap .lang button { border: 0; background: transparent; color: var(--muted); padding: 8px 12px; font: 700 12px/1 var(--font); cursor: pointer; }
.football-wrap .lang button.active { background: var(--lime); color: #14210c; }
.football-wrap .icon-btn { border: 1px solid var(--line); background: var(--surface); color: var(--text); width: 38px; height: 38px; border-radius: 50%; cursor: pointer; font-size: 16px; }
.football-wrap .hero { display: grid; grid-template-columns: 1.4fr 0.8fr; gap: 14px; margin-bottom: 16px; }
.football-wrap .hero-card, .football-wrap .quota {
  background: var(--hero-bg);
  border: 1px solid var(--line); border-radius: 22px; padding: 18px 20px;
}
.football-wrap .hero-card h2 { font-family: var(--font-display); font-size: 34px; letter-spacing: 0.03em; line-height: 0.95; margin: 0; }
.football-wrap .hero-card h2 span { color: var(--lime); }
.football-wrap .hero-card p { color: var(--muted); margin-top: 8px; font-size: 14px; max-width: 48ch; }
.football-wrap .stats-row { display: flex; gap: 18px; margin-top: 16px; }
.football-wrap .stat b { display: block; font-family: var(--font-display); font-size: 28px; color: var(--lime); }
.football-wrap .stat small { color: var(--muted); }
.football-wrap .quota { display: flex; flex-direction: column; justify-content: space-between; }
.football-wrap .quota .pulse { display: inline-flex; align-items: center; gap: 8px; color: var(--live); font-weight: 800; letter-spacing: 0.08em; font-size: 12px; }
.football-wrap .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--live); box-shadow: 0 0 0 0 rgba(255,75,75,0.7); animation: footballPulse 1.4s infinite; }
@keyframes footballPulse { 70% { box-shadow: 0 0 0 8px rgba(255,75,75,0); } 100% { box-shadow: 0 0 0 0 rgba(255,75,75,0); } }
.football-wrap .toolbar { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; margin: 8px 0 14px; }
.football-wrap .tabs { display: flex; gap: 6px; flex-wrap: wrap; }
.football-wrap .tab { border: 1px solid var(--line); background: var(--surface); color: var(--muted); border-radius: var(--tab-radius); padding: 8px 12px; cursor: pointer; font-weight: 700; font-size: 13px; }
.football-wrap .tab.active { background: var(--lime); color: #13210d; border-color: transparent; }
.football-wrap .tab .count { display: inline-grid; place-items: center; min-width: 20px; height: 18px; padding: 0 5px; border-radius: 999px; background: rgba(0,0,0,0.15); font-size: 11px; margin-left: 4px; }
.football-wrap .search { flex: 1; min-width: 180px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--tab-radius); padding: 10px 14px; color: var(--text); outline: none; }
.football-wrap .filters { display: flex; gap: 8px; flex-wrap: wrap; margin: 0 0 14px; }
.football-wrap .filters select {
  flex: 1; min-width: 160px; max-width: 280px;
  background: var(--surface); border: 1px solid var(--line); color: var(--text);
  border-radius: 12px; padding: 10px 12px; font: 650 13px/1.2 var(--font);
}
.football-wrap .filter-clear {
  border: 1px solid var(--line); background: var(--card); color: var(--text);
  border-radius: 12px; padding: 10px 14px; cursor: pointer; font-weight: 700; font-size: 13px;
}
.football-wrap .filter-clear:hover { border-color: var(--lime); color: var(--lime); }
.football-wrap .hist-bar {
  display: none; width: 100%; align-items: center; gap: 8px; flex-wrap: wrap;
  background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 10px 12px;
}
.football-wrap .hist-bar.show { display: flex; }
.football-wrap .hist-bar button {
  border: 1px solid var(--line); background: var(--card); color: var(--text);
  width: 36px; height: 36px; border-radius: 10px; cursor: pointer; font-size: 18px;
}
.football-wrap .hist-bar input[type="date"] {
  background: var(--input-bg); border: 1px solid var(--line); color: var(--text);
  border-radius: 10px; padding: 8px 10px; font: 700 14px/1 var(--font);
}
.football-wrap .hist-bar .hist-label { color: var(--gold); font-weight: 800; }
.football-wrap .league { background: var(--league-bg); border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; }
.football-wrap .league-h { width: 100%; display: flex; align-items: center; gap: 10px; padding: 12px 14px; background: transparent; border: 0; color: inherit; cursor: pointer; text-align: left; }
.football-wrap .league-h img.flag, .football-wrap .league-h img.logo { width: 22px; height: 22px; object-fit: contain; border-radius: 4px; background: var(--img-bg); }
.football-wrap .league-h .meta { flex: 1; min-width: 0; }
.football-wrap .league-h b { display: block; font-size: 14px; }
.football-wrap .league-h small { color: var(--muted); }
.football-wrap .chev { color: var(--muted); }
.football-wrap .matches { display: none; border-top: 1px solid var(--line); }
.football-wrap .league.open .matches { display: block; }
.football-wrap .match { width: 100%; display: grid; grid-template-columns: 76px minmax(0, 1fr) 58px; gap: 10px; align-items: center; padding: 12px 14px; background: transparent; border: 0; border-top: 1px solid var(--line); color: inherit; cursor: pointer; text-align: left; }
.football-wrap .match:first-child { border-top: 0; }
.football-wrap .match:hover { background: var(--hover); }
.football-wrap .when { color: var(--muted); font-size: 12px; font-weight: 700; }
.football-wrap .when.live { color: var(--live); }
.football-wrap .when .min { font-family: var(--font-display); font-size: 18px; display: block; }
.football-wrap .sides { min-width: 0; }
.football-wrap .team { display: grid; grid-template-columns: 22px minmax(0, 1fr); gap: 8px; align-items: center; padding: 3px 0; }
.football-wrap .team img { width: 22px; height: 22px; object-fit: contain; }
.football-wrap .team span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-weight: 600; font-size: 14px; }
.football-wrap .scorebox { font-family: var(--font-display); font-size: 22px; line-height: 1.05; text-align: center; font-weight: 700; }
.football-wrap .scorebox b { display: block; }
.football-wrap .winner { color: var(--lime); }
.football-wrap .snippet { color: var(--muted); font-size: 11px; margin-top: 4px; }
.football-wrap .empty, .football-wrap .error, .football-wrap .loading { text-align: center; padding: 48px 16px; color: var(--muted); border: 1px dashed var(--line); border-radius: var(--radius); }
.football-wrap .error { color: #ffb4b4; border-color: rgba(255,75,75,0.3); }
.football-wrap .drawer-bg { position: fixed; inset: 0; background: rgba(0,0,0,0.55); opacity: 0; pointer-events: none; transition: opacity .2s; z-index: 99920; }
.football-wrap .drawer-bg.show { opacity: 1; pointer-events: auto; }
.football-wrap .drawer { position: fixed; top: 0; right: 0; height: 100%; width: min(520px, 100%); background: var(--drawer-bg); border-left: 1px solid var(--line); transform: translateX(110%); transition: transform .25s ease; z-index: 99921; overflow: auto; padding: 18px; }
.football-wrap .drawer.open { transform: translateX(0); }
.football-wrap .drawer-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.football-wrap .close { border: 1px solid var(--line); background: var(--surface); color: var(--text); width: 36px; height: 36px; border-radius: 10px; cursor: pointer; }
.football-wrap .scoreboard { margin-top: 16px; background: var(--surface); border: 1px solid var(--line); border-radius: 18px; padding: 16px; text-align: center; }
.football-wrap .scoreboard .lg { color: var(--muted); font-size: 12px; margin-bottom: 10px; }
.football-wrap .sb-teams { display: grid; grid-template-columns: 1fr auto 1fr; gap: 10px; align-items: center; }
.football-wrap .sb-team img { width: 52px; height: 52px; object-fit: contain; margin-bottom: 6px; }
.football-wrap .sb-team div { font-weight: 800; font-size: 14px; }
.football-wrap .big-score { font-family: var(--font-display); font-size: 48px; line-height: 1; }
.football-wrap .sb-status { margin-top: 8px; color: var(--gold); font-weight: 800; font-size: 13px; }
.football-wrap .subtabs { display: flex; gap: 6px; margin: 16px 0 10px; }
.football-wrap .subtab { flex: 1; border: 1px solid var(--line); background: var(--surface); color: var(--muted); border-radius: 12px; padding: 8px; cursor: pointer; font-weight: 700; font-size: 12px; }
.football-wrap .subtab.active { background: var(--lime); color: #14210c; }
.football-wrap .event { display: grid; grid-template-columns: 44px 1fr; gap: 8px; padding: 8px 0; border-bottom: 1px solid var(--line); font-size: 13px; }
.football-wrap .event .min { color: var(--gold); font-weight: 800; }
.football-wrap .bar-row { display: grid; grid-template-columns: 48px 1fr 48px; gap: 8px; align-items: center; margin: 8px 0; font-size: 12px; }
.football-wrap .bar { height: 8px; background: var(--bar-track); border-radius: 99px; overflow: hidden; display: flex; }
.football-wrap .bar i:first-child { background: var(--lime); }
.football-wrap .bar i:last-child { background: var(--gold); margin-left: auto; }
.football-wrap .lineup-block { margin-bottom: 18px; }
.football-wrap .pitch { background: linear-gradient(180deg, rgba(198,240,77,0.05), transparent), repeating-linear-gradient(180deg, rgba(255,255,255,0.03) 0 2px, transparent 2px 16%); border: 1px solid var(--line); border-radius: 16px; min-height: 280px; padding: 10px; }
.football-wrap .xi { display: grid; gap: 8px; }
.football-wrap .xi-row { display: flex; justify-content: space-around; }
.football-wrap .player-chip { width: 64px; text-align: center; font-size: 11px; }
.football-wrap .player-chip i { display: grid; place-items: center; width: 28px; height: 28px; margin: 0 auto 4px; border-radius: 50%; background: var(--lime); color: #13210d; font-style: normal; font-weight: 800; font-size: 11px; }
.football-wrap .bench { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.football-wrap .bench span { background: var(--card); border: 1px solid var(--line); border-radius: 999px; padding: 4px 8px; font-size: 11px; }
.football-wrap footer.note { display: none; }
@media (max-width: 820px) {
  .football-wrap .hero { grid-template-columns: 1fr; }
  .football-wrap .match { grid-template-columns: 68px minmax(0, 1fr) 48px; }
  .football-wrap .snippet { display: none; }
}

/* 2026 redesign · Cancha / premium live centre */
.football-page { min-width: 320px; color-scheme: dark; }
.football-wrap {
  --font: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Arial Narrow", "Aptos Display", "Segoe UI", sans-serif;
  --bg: #08110d;
  --surface: rgba(18, 32, 25, .82);
  --card: #14251d;
  --line: rgba(221, 255, 231, .11);
  --text: #f4f8f5;
  --muted: #91a69a;
  --lime: #a7f06a;
  --gold: #e9c46a;
  --live: #ff5d62;
  --radius: 20px;
  --logo-radius: 15px;
  --tab-radius: 12px;
  --hover: rgba(167, 240, 106, .07);
  --league-bg: rgba(14, 27, 21, .88);
  --input-bg: rgba(8, 18, 13, .92);
  --drawer-bg: #0b1711;
  --bar-track: #203a2c;
  --img-bg: rgba(255, 255, 255, .05);
  --logo-shadow: 0 12px 32px rgba(86, 167, 103, .2);
  --hero-bg: linear-gradient(125deg, rgba(26, 50, 37, .96), rgba(12, 25, 18, .9));
  --page-bg:
    radial-gradient(circle at 15% 0%, rgba(92, 199, 111, .15), transparent 34rem),
    radial-gradient(circle at 92% 14%, rgba(233, 196, 106, .08), transparent 30rem),
    #08110d;
  overflow: hidden;
  isolation: isolate;
  line-height: 1.45;
}
.football-wrap::before {
  content: ""; position: absolute; inset: 0 0 auto; height: 420px; z-index: -1; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 48px 48px; mask-image: linear-gradient(#000, transparent);
}
.football-wrap button, .football-wrap input, .football-wrap select { font: inherit; }
.football-wrap button, .football-wrap select { -webkit-tap-highlight-color: transparent; }
.football-wrap button:focus-visible, .football-wrap input:focus-visible, .football-wrap select:focus-visible {
  outline: 3px solid rgba(167, 240, 106, .32); outline-offset: 2px;
}
.football-wrap .app { max-width: 1240px; padding: 24px 24px 96px; }
.football-wrap header.top {
  min-height: 68px; padding: 8px 0 20px; border-bottom: 1px solid var(--line); margin-bottom: 24px;
}
.football-wrap .brand { gap: 14px; }
.football-wrap .logo {
  width: 48px; height: 48px; flex-basis: 48px; background: var(--lime); color: #0b1a10;
  font-size: 17px; letter-spacing: -.02em; box-shadow: var(--logo-shadow);
}
.football-wrap .brand h1 { font-size: 19px; letter-spacing: .08em; font-weight: 800; }
.football-wrap .brand p { margin-top: 5px; color: var(--muted); font-size: 12px; }
.football-wrap .top-actions { gap: 10px; }
.football-wrap .clock, .football-wrap .lang, .football-wrap .icon-btn {
  background: rgba(18, 32, 25, .7); border-color: var(--line); backdrop-filter: blur(18px);
}
.football-wrap .clock { padding: 10px 13px; border-radius: 11px; font-variant-numeric: tabular-nums; }
.football-wrap .lang { border-radius: 11px; padding: 3px; }
.football-wrap .lang button { min-width: 39px; min-height: 32px; padding: 7px 10px; border-radius: 8px; transition: .2s ease; }
.football-wrap .lang button.active { background: var(--text); color: var(--bg); }
.football-wrap .icon-btn { width: 40px; height: 40px; border-radius: 11px; transition: transform .2s, border-color .2s; }
.football-wrap .icon-btn:hover { transform: rotate(25deg); border-color: rgba(167, 240, 106, .45); }
.football-wrap .hero { grid-template-columns: minmax(0, 1.7fr) minmax(260px, .72fr); gap: 16px; margin-bottom: 18px; }
.football-wrap .hero-card, .football-wrap .quota {
  min-height: 230px; border-radius: 26px; padding: 30px 32px; box-shadow: 0 24px 70px rgba(0,0,0,.18);
}
.football-wrap .hero-card { position: relative; overflow: hidden; }
.football-wrap .hero-card::after {
  content: "90’"; position: absolute; right: 22px; bottom: -26px; color: rgba(255,255,255,.045);
  font: 900 142px/.8 var(--font-display); letter-spacing: -.08em; pointer-events: none;
}
.football-wrap .hero-card h2 { position: relative; z-index: 1; max-width: 620px; font-size: clamp(38px, 5vw, 64px); line-height: .94; letter-spacing: -.045em; }
.football-wrap .hero-card h2 span { color: var(--lime); }
.football-wrap .hero-card p { position: relative; z-index: 1; max-width: 56ch; margin: 16px 0 0; font-size: 14px; line-height: 1.65; }
.football-wrap .stats-row { position: relative; z-index: 1; gap: 0; margin-top: 27px; }
.football-wrap .stat { min-width: 112px; padding-right: 24px; margin-right: 24px; border-right: 1px solid var(--line); }
.football-wrap .stat:last-child { border-right: 0; }
.football-wrap .stat b { font-size: 30px; line-height: 1; letter-spacing: -.04em; }
.football-wrap .stat small { display: block; margin-top: 7px; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.football-wrap .quota { justify-content: space-between; background: rgba(12, 24, 18, .86); }
.football-wrap .quota .pulse { width: fit-content; padding: 8px 10px; border: 1px solid rgba(255,93,98,.25); border-radius: 999px; background: rgba(255,93,98,.07); }
.football-wrap .dot { width: 7px; height: 7px; }
.football-wrap .toolbar {
  position: sticky; top: 0; z-index: 20; gap: 12px; margin: 0 0 12px; padding: 12px 0;
  background: linear-gradient(var(--bg) 70%, transparent); backdrop-filter: blur(16px);
}
.football-wrap .tabs { gap: 5px; padding: 4px; border: 1px solid var(--line); border-radius: 15px; background: rgba(12,24,18,.8); }
.football-wrap .tab { min-height: 40px; border: 0; background: transparent; padding: 9px 13px; font-size: 12px; transition: background .2s, color .2s, transform .2s; }
.football-wrap .tab:hover { color: var(--text); }
.football-wrap .tab.active { background: var(--text); color: var(--bg); box-shadow: 0 6px 16px rgba(0,0,0,.18); }
.football-wrap .tab .count { min-width: 21px; height: 19px; margin-left: 6px; background: rgba(0,0,0,.1); }
.football-wrap .search { min-height: 50px; padding: 0 18px; border-radius: 15px; background: rgba(12,24,18,.8); transition: border-color .2s, background .2s; }
.football-wrap .search:focus { border-color: rgba(167,240,106,.45); background: var(--input-bg); }
.football-wrap .filters { gap: 10px; margin-bottom: 18px; }
.football-wrap .filters select, .football-wrap .filter-clear { min-height: 44px; border-radius: 12px; padding: 0 14px; background: var(--surface); }
.football-wrap .filter-clear { color: var(--muted); }
.football-wrap .hist-bar { margin-bottom: 16px; border-radius: 14px; background: var(--surface); }
.football-wrap .league { margin-bottom: 12px; border-radius: var(--radius); box-shadow: 0 12px 34px rgba(0,0,0,.12); }
.football-wrap .league-h { min-height: 66px; padding: 15px 18px; transition: background .2s; }
.football-wrap .league-h:hover { background: var(--hover); }
.football-wrap .league-h img.flag { width: 24px; height: 18px; }
.football-wrap .league-h img.logo { width: 28px; height: 28px; }
.football-wrap .league-h b { font-size: 14px; letter-spacing: -.01em; }
.football-wrap .league-h small { display: block; margin-top: 3px; font-size: 11px; }
.football-wrap .chev { font-size: 17px; transition: transform .2s; }
.football-wrap .league.open .chev { transform: rotate(180deg); }
.football-wrap .matches { border-top-color: var(--line); }
.football-wrap .match { grid-template-columns: 84px minmax(0, 1fr) 64px; min-height: 84px; padding: 14px 18px; transition: background .18s; }
.football-wrap .when { font-size: 11px; letter-spacing: .03em; }
.football-wrap .when .min { margin-bottom: 4px; font-size: 17px; color: var(--text); font-variant-numeric: tabular-nums; }
.football-wrap .when.live .min { color: var(--live); }
.football-wrap .team { grid-template-columns: 26px minmax(0, 1fr); gap: 10px; padding: 4px 0; }
.football-wrap .team img { width: 26px; height: 26px; }
.football-wrap .team span { font-size: 14px; font-weight: 650; }
.football-wrap .scorebox { font-size: 23px; font-variant-numeric: tabular-nums; }
.football-wrap .snippet { padding-left: 36px; }
.football-wrap .drawer-bg { backdrop-filter: blur(7px); background: rgba(0,0,0,.52); }
.football-wrap .drawer { width: min(560px,100%); padding: 24px; border-left-color: var(--line); box-shadow: -24px 0 80px rgba(0,0,0,.35); }
.football-wrap .drawer-top { padding: 2px 2px 8px; }
.football-wrap .close { width: 40px; height: 40px; border-radius: 12px; }
.football-wrap .scoreboard { margin-top: 14px; border-radius: 22px; padding: 24px 18px; background: var(--surface); }
.football-wrap .sb-team img { width: 60px; height: 60px; }
.football-wrap .big-score { font-size: 54px; letter-spacing: -.07em; }
.football-wrap .subtabs { padding: 4px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface); }
.football-wrap .subtab { min-height: 38px; border: 0; background: transparent; }
.football-wrap .subtab.active { background: var(--text); color: var(--bg); }
.football-wrap .pitch { border-radius: 18px; }
.football-wrap .empty, .football-wrap .error, .football-wrap .loading { border-style: solid; background: var(--surface); }
@media (max-width: 820px) {
  .football-wrap .app { padding: 16px 14px 72px; }
  .football-wrap header.top { align-items: flex-start; margin-bottom: 16px; }
  .football-wrap .brand p, .football-wrap .clock { display: none; }
  .football-wrap .hero { grid-template-columns: 1fr; }
  .football-wrap .hero-card, .football-wrap .quota { min-height: auto; padding: 24px; }
  .football-wrap .quota { min-height: 120px; }
  .football-wrap .hero-card h2 { font-size: clamp(36px, 12vw, 52px); }
  .football-wrap .hero-card::after { font-size: 100px; }
  .football-wrap .toolbar { position: static; padding: 0; background: none; backdrop-filter: none; }
  .football-wrap .tabs { width: 100%; overflow-x: auto; flex-wrap: nowrap; scrollbar-width: none; }
  .football-wrap .tab { flex: 0 0 auto; }
  .football-wrap .search { flex-basis: 100%; }
  .football-wrap .filters select { max-width: none; min-width: calc(50% - 5px); }
  .football-wrap .filter-clear { flex: 1; }
  .football-wrap .match { grid-template-columns: 62px minmax(0,1fr) 42px; padding: 12px; }
  .football-wrap .team { grid-template-columns: 22px minmax(0,1fr); gap: 8px; }
  .football-wrap .team img { width: 22px; height: 22px; }
}
@media (max-width: 480px) {
  .football-wrap .logo { width: 42px; height: 42px; flex-basis: 42px; }
  .football-wrap .brand h1 { font-size: 16px; }
  .football-wrap .top-actions { gap: 6px; }
  .football-wrap .lang button { min-width: 35px; }
  .football-wrap .stats-row { justify-content: space-between; }
  .football-wrap .stat { min-width: 0; margin-right: 12px; padding-right: 12px; }
  .football-wrap .filters select { min-width: 100%; }
  .football-wrap .drawer { padding: 16px; }
  .football-wrap .sb-team img { width: 46px; height: 46px; }
  .football-wrap .big-score { font-size: 42px; }
}
@media (prefers-reduced-motion: reduce) {
  .football-wrap *, .football-wrap *::before, .football-wrap *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
