/* =========================================================
   PANDA PREDIKSI — style.css
   Token system:
   - Warna dasar: hitam/putih/abu (identitas panda)
   - Aksen hijau  = sisi Tim Kandang / kemenangan / pitch
   - Aksen emas   = confidence / sorotan prediksi
   ========================================================= */

:root{
  --bg:            #0A0C10;
  --bg-soft:       #0F1216;
  --surface:       rgba(255,255,255,0.045);
  --surface-solid: #14171D;
  --surface-hover: rgba(255,255,255,0.07);
  --border:        rgba(255,255,255,0.09);
  --border-soft:   rgba(255,255,255,0.06);

  --text:          #F3F5F7;
  --text-muted:    #9AA1AD;
  --text-dim:      #656C78;

  --green:         #22C67F;
  --green-dark:    #14392A;
  --green-soft:    rgba(34,198,127,0.14);

  --gold:          #E0AC44;
  --gold-soft:     rgba(224,172,68,0.14);

  --red:           #E5555C;
  --red-soft:      rgba(229,85,92,0.14);

  --draw:          #8A93A3;
  --draw-soft:     rgba(138,147,163,0.14);

  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 9px;

  --font-display: 'Sora', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;

  --shadow-card: 0 14px 40px -18px rgba(0,0,0,0.65);
  --ease: cubic-bezier(.22,.9,.35,1);
}

/* ============ RESET ============ */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
button{ font-family: inherit; cursor:pointer; }
ul{ list-style:none; margin:0; padding:0; }
h1,h2,h3{ font-family: var(--font-display); margin:0; letter-spacing:-0.01em; }
.hidden{ display:none !important; }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior:auto !important; }
}

.skip-link{
  position:absolute; left:-999px; top:0; background:var(--gold); color:#111; padding:10px 16px; border-radius:0 0 8px 0; z-index:200;
}
.skip-link:focus{ left:0; }

:focus-visible{ outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

/* ============ LAYOUT HELPERS ============ */
.eyebrow{
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 10px;
}
.section-head{ max-width: 1180px; margin: 0 auto 28px; padding: 0 24px; }
.section-head h2{ font-size: clamp(1.5rem, 3vw, 2.1rem); }
.block-title{
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 14px;
}

/* ============ HEADER ============ */
.site-header{
  position: sticky; top:0; z-index: 100;
  background: rgba(10,12,16,0.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-soft);
}
.header-inner{
  max-width: 1240px; margin:0 auto; padding: 12px 24px;
  display:flex; align-items:center; justify-content:space-between; gap:24px;
}
.brand{ display:flex; align-items:center; gap:12px; min-width:0; }
.brand-mark{ border-radius: 50%; flex-shrink:0; }
.brand-text{ display:flex; flex-direction:column; line-height:1.15; min-width:0; }
.brand-name{ font-family: var(--font-display); font-weight:800; font-size:1.05rem; letter-spacing:0.02em; }
.brand-tag{ font-size:0.68rem; color: var(--text-dim); white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }

.main-nav{ display:flex; align-items:center; gap:6px; }
.nav-link{
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  padding: 9px 13px;
  border-radius: 999px;
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav-link:hover{ color: var(--text); background: var(--surface); }
.nav-link.active{ color: #0A0C10; background: var(--green); }

.header-actions{ display:flex; align-items:center; gap:12px; }
.mode-pill{
  display:flex; align-items:center; gap:7px;
  font-family: var(--font-mono); font-size:0.68rem; letter-spacing:0.08em;
  color: var(--gold); background: var(--gold-soft);
  border: 1px solid rgba(224,172,68,0.3);
  padding: 6px 12px; border-radius: 999px; white-space:nowrap;
}
.mode-pill .dot{ width:6px; height:6px; border-radius:50%; background: var(--gold); box-shadow: 0 0 0 3px var(--gold-soft); }
.mode-pill.live{ color: var(--green); background: var(--green-soft); border-color: rgba(34,198,127,0.35); }
.mode-pill.live .dot{ background: var(--green); box-shadow: 0 0 0 3px var(--green-soft); }

.hamburger{
  display:none; flex-direction:column; gap:4px; background:none; border:none; padding:8px;
}
.hamburger span{ width:20px; height:2px; background: var(--text); border-radius:2px; }

/* ============ HERO ============ */
.hero{
  position: relative;
  padding: 76px 24px 64px;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg{ position:absolute; inset:0; z-index:-1; background:
  radial-gradient(600px 320px at 15% -10%, rgba(34,198,127,0.16), transparent 60%),
  radial-gradient(560px 300px at 100% 10%, rgba(224,172,68,0.12), transparent 60%);
}
.pitch-lines{
  position:absolute; inset: 0; opacity:0.35;
  background-image:
    repeating-linear-gradient(90deg, transparent, transparent 118px, rgba(255,255,255,0.035) 118px, rgba(255,255,255,0.035) 119px);
}
.pitch-lines::after{
  content:""; position:absolute; left:50%; top:-140px; width:420px; height:420px; margin-left:-210px;
  border: 1px solid rgba(255,255,255,0.05); border-radius:50%;
}

.hero-inner{ max-width: 780px; margin: 0 auto; text-align:center; }
.hero-title{
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 18px;
}
.hero-sub{
  color: var(--text-muted);
  font-size: 1.02rem;
  max-width: 560px;
  margin: 0 auto 40px;
}

/* ============ FORM ANALISIS ============ */
.analysis-form{
  display:flex; align-items:flex-end; gap:14px; flex-wrap:wrap;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-card);
  text-align:left;
}
.team-field{ flex: 1 1 220px; min-width: 200px; }
.team-field label{
  display:block; font-family: var(--font-mono); font-size:0.7rem; letter-spacing:0.08em;
  color: var(--text-dim); text-transform:uppercase; margin-bottom:8px;
}
.combobox{ position:relative; }
.combobox input{
  width:100%; background: var(--bg-soft); border: 1px solid var(--border);
  color: var(--text); font-family: var(--font-body); font-size:0.96rem;
  padding: 13px 44px 13px 14px; border-radius: var(--radius-md);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.combobox input:focus{ border-color: var(--green); box-shadow: 0 0 0 3px var(--green-soft); outline:none; }
.field-crest{
  position:absolute; right:10px; top:50%; transform:translateY(-50%);
  width:26px; height:26px; border-radius:50%; background:#0000; pointer-events:none;
}
.suggestions{
  position:absolute; top: calc(100% + 6px); left:0; right:0; z-index:20;
  background: var(--surface-solid); border:1px solid var(--border); border-radius: var(--radius-md);
  overflow:hidden; box-shadow: var(--shadow-card); display:none;
}
.suggestions.open{ display:block; }
.suggestions li{
  display:flex; align-items:center; gap:10px;
  padding: 10px 14px; font-size:0.9rem; color: var(--text-muted);
  cursor:pointer; transition: background .15s;
}
.suggestions li img{ width:20px; height:20px; border-radius:50%; }
.suggestions li:hover, .suggestions li.active-option{ background: var(--surface-hover); color: var(--text); }
.suggestions .no-result{ cursor:default; }
.suggestions .no-result:hover{ background:none; color:var(--text-muted); }

.vs-divider{
  flex: 0 0 auto; display:flex; align-items:center; justify-content:center;
  width:42px; height:44px; margin-bottom:1px;
  font-family: var(--font-mono); font-weight:600; font-size:0.78rem; color: var(--text-dim);
}
.btn-primary{
  flex: 0 0 auto;
  background: var(--green); color:#07130D; border:none;
  font-family: var(--font-mono); font-weight:600; font-size:0.8rem; letter-spacing:0.05em;
  padding: 15px 26px; border-radius: var(--radius-md);
  transition: transform .18s var(--ease), background .18s var(--ease), box-shadow .18s var(--ease);
  box-shadow: 0 10px 24px -10px rgba(34,198,127,0.55);
}
.btn-primary:hover{ transform: translateY(-1px); background:#2CDB8F; }
.btn-primary:active{ transform: translateY(0); }
.btn-primary:disabled{ opacity:0.6; cursor:not-allowed; transform:none; }

.btn-secondary{
  background: var(--surface); color: var(--text);
  border: 1px solid var(--border);
  font-family: var(--font-mono); font-size:0.78rem; letter-spacing:0.05em;
  padding: 12px 22px; border-radius: var(--radius-md);
  transition: background .18s var(--ease), border-color .18s var(--ease);
}
.btn-secondary:hover{ background: var(--surface-hover); border-color: var(--gold); }

.form-hint{ text-align:center; margin-top:16px; color: var(--text-dim); font-size:0.85rem; }
.hint-fill{ background:none; border:none; color: var(--gold); text-decoration: underline; text-underline-offset:3px; font: inherit; padding:0; }

/* ============ MATCHUP PREVIEW ============ */
.matchup-preview{ padding: 0 24px 8px; }
.matchup-card{
  max-width: 640px; margin: 0 auto;
  display:flex; align-items:center; justify-content:center; gap:28px;
  background: var(--surface); border:1px solid var(--border); border-radius: var(--radius-lg);
  padding: 26px; box-shadow: var(--shadow-card);
}
.matchup-team{ display:flex; flex-direction:column; align-items:center; gap:10px; flex:1; }
.matchup-vs{ font-family: var(--font-mono); color: var(--text-dim); font-size:0.85rem; }
.crest{ border-radius:50%; background: var(--bg-soft); border:1px solid var(--border); object-fit:cover; }
.crest-lg{ width:64px; height:64px; padding:6px; }
.team-name{ font-weight:600; text-align:center; font-size:0.98rem; }

/* ============ LOADING ============ */
.loading-state{
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:22px; padding: 60px 24px;
}
.paw-trail{ display:flex; gap:14px; align-items:flex-end; height:34px; }
.paw{
  width:12px; height:12px; border-radius:50%;
  background: var(--green);
  opacity:0.25;
  animation: paw-step 1.2s ease-in-out infinite;
}
.paw:nth-child(1){ animation-delay: 0s; }
.paw:nth-child(2){ animation-delay: .12s; }
.paw:nth-child(3){ animation-delay: .24s; }
.paw:nth-child(4){ animation-delay: .36s; }
.paw:nth-child(5){ animation-delay: .48s; }
@keyframes paw-step{
  0%, 60%, 100%{ opacity:0.22; transform: translateY(0); }
  25%{ opacity:1; transform: translateY(-9px); }
}
.loading-text{ font-family: var(--font-mono); color: var(--text-muted); font-size:0.92rem; letter-spacing:0.03em; }

/* ============ ERROR ============ */
.error-state{ display:flex; justify-content:center; padding: 40px 24px; }
.error-card{
  background: var(--red-soft); border:1px solid rgba(229,85,92,0.35); border-radius: var(--radius-lg);
  padding: 28px; text-align:center; max-width: 420px; width:100%;
}
.error-icon{ font-size:1.6rem; margin:0 0 8px; }
.error-message{ margin: 0 0 18px; color: var(--text); }

/* ============ PREDICTION SECTION ============ */
.prediction-section{ padding: 20px 24px 70px; }
.prediction-card{
  max-width: 760px; margin:0 auto;
  background: var(--surface); border:1px solid var(--border); border-radius: var(--radius-lg);
  padding: 30px; box-shadow: var(--shadow-card); backdrop-filter: blur(10px);
}
.prediction-teams{
  display:flex; align-items:center; justify-content:center; gap:30px; margin-bottom:26px;
  padding-bottom:24px; border-bottom: 1px solid var(--border-soft);
}
.pred-team{ display:flex; flex-direction:column; align-items:center; gap:10px; flex:1; }
.pred-vs{ font-family: var(--font-mono); color: var(--text-dim); }

.prediction-result{ text-align:center; margin-bottom: 30px; }
.result-label{ font-family: var(--font-mono); font-size:0.7rem; letter-spacing:0.1em; color: var(--text-dim); text-transform:uppercase; margin: 14px 0 4px; }
.result-label:first-child{ margin-top:0; }
.result-winner{ font-family: var(--font-display); font-weight:700; font-size:1.3rem; color: var(--green); margin:0; }
.result-score{ font-family: var(--font-mono); font-weight:600; font-size:2.6rem; margin: 2px 0 4px; letter-spacing:0.02em; }
.confidence-badge{
  display:inline-flex; align-items:center; gap:8px; margin-top:12px;
  background: var(--gold-soft); border:1px solid rgba(224,172,68,0.35);
  padding: 8px 18px; border-radius: 999px;
}
.confidence-label{ font-family: var(--font-mono); font-size:0.7rem; letter-spacing:0.08em; color: var(--gold); text-transform:uppercase; }
.confidence-value{ font-family: var(--font-mono); font-weight:700; color: var(--gold); font-size:1rem; }

.probability-block{ margin-bottom: 30px; }
.prob-row{ display:grid; grid-template-columns: 92px 1fr 48px; align-items:center; gap:12px; margin-bottom:12px; }
.prob-label{ font-family: var(--font-mono); font-size:0.72rem; letter-spacing:0.05em; color: var(--text-muted); }
.prob-bar{ height:9px; border-radius: 999px; background: var(--bg-soft); overflow:hidden; border:1px solid var(--border-soft); }
.prob-fill{ height:100%; width:0%; border-radius:999px; transition: width .8s var(--ease); }
.prob-home{ background: linear-gradient(90deg, #17915E, var(--green)); }
.prob-draw{ background: linear-gradient(90deg, #666e7a, var(--draw)); }
.prob-away{ background: linear-gradient(90deg, #B5852E, var(--gold)); }
.prob-pct{ font-family: var(--font-mono); font-size:0.82rem; text-align:right; color: var(--text-muted); }

.alt-scores-block{ margin-bottom: 30px; }
.alt-scores{ display:flex; gap:10px; flex-wrap:wrap; }
.alt-score-chip{
  font-family: var(--font-mono); font-size:0.88rem; font-weight:600;
  background: var(--bg-soft); border:1px solid var(--border); border-radius: var(--radius-sm);
  padding: 8px 14px; color: var(--text-muted);
}

.factors-block{ margin-bottom: 26px; }
.factors-grid{ display:grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap:10px; }
.factor-item{
  background: var(--bg-soft); border:1px solid var(--border-soft); border-radius: var(--radius-sm);
  padding: 10px 12px;
}
.factor-name{ font-size:0.74rem; color: var(--text-dim); text-transform:uppercase; letter-spacing:0.05em; font-family: var(--font-mono); }
.factor-value{ display:flex; align-items:center; gap:8px; margin-top:6px; }
.factor-bar{ flex:1; height:6px; border-radius:999px; background: rgba(255,255,255,0.06); overflow:hidden; }
.factor-fill{ height:100%; background: var(--green); border-radius:999px; }
.factor-num{ font-family: var(--font-mono); font-size:0.76rem; color: var(--text-muted); width:30px; text-align:right; }

.prediction-disclaimer{
  text-align:center; font-size:0.8rem; color: var(--text-dim); margin:0;
  padding-top:18px; border-top: 1px dashed var(--border-soft);
}

/* ============ STATISTIK ============ */
.stats-section{ padding: 20px 24px 20px; }
.stats-grid{
  max-width: 980px; margin: 0 auto 40px; display:grid; grid-template-columns: 1fr 1fr; gap:20px;
}
.stat-card{
  background: var(--surface); border:1px solid var(--border); border-radius: var(--radius-lg);
  padding: 22px; box-shadow: var(--shadow-card);
}
.stat-card-head{ display:flex; align-items:center; gap:12px; margin-bottom:18px; }
.stat-card-head img{ width:36px; height:36px; border-radius:50%; }
.stat-card-head span{ font-weight:700; font-size:1.02rem; }
.form-strip{ display:flex; gap:6px; margin-bottom:18px; }
.form-chip{
  width:28px; height:28px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  font-family: var(--font-mono); font-size:0.72rem; font-weight:700; color:#0A0C10;
}
.form-chip.W{ background: var(--green); }
.form-chip.D{ background: var(--draw); }
.form-chip.L{ background: var(--red); }
.stat-metrics{ display:grid; grid-template-columns: 1fr 1fr; gap:14px; }
.stat-metric{ background: var(--bg-soft); border:1px solid var(--border-soft); border-radius: var(--radius-sm); padding:12px; }
.stat-metric-label{ font-family: var(--font-mono); font-size:0.68rem; color: var(--text-dim); text-transform:uppercase; letter-spacing:0.05em; }
.stat-metric-value{ font-family: var(--font-mono); font-size:1.3rem; font-weight:700; margin-top:4px; }

.h2h-block{ max-width: 700px; margin: 0 auto; }
.h2h-list{ display:flex; flex-direction:column; gap:8px; }
.h2h-list li{
  display:flex; align-items:center; justify-content:space-between; gap:10px;
  background: var(--surface); border:1px solid var(--border-soft); border-radius: var(--radius-sm);
  padding: 12px 16px; font-size:0.92rem;
}
.h2h-list .h2h-score{ font-family: var(--font-mono); font-weight:700; color: var(--gold); }
.h2h-empty{ text-align:center; color: var(--text-dim); padding: 18px; background: var(--surface); border-radius: var(--radius-md); border:1px dashed var(--border); }

/* ============ PERTANDINGAN (HARI INI / BESOK / LUSA) ============ */
.matches-section{ padding: 50px 24px 70px; }

.day-tabs{
  max-width: 1180px; margin: 0 auto 24px; display:flex; gap:10px; flex-wrap:wrap;
}
.day-tab{
  display:flex; flex-direction:column; align-items:flex-start; gap:2px;
  background: var(--surface); border:1px solid var(--border); border-radius: var(--radius-md);
  padding: 10px 18px; color: var(--text-muted);
  transition: background .18s var(--ease), border-color .18s var(--ease), color .18s var(--ease);
}
.day-tab:hover{ background: var(--surface-hover); }
.day-tab-name{ font-family: var(--font-display); font-weight:700; font-size:0.9rem; color:inherit; }
.day-tab-date{ font-family: var(--font-mono); font-size:0.66rem; letter-spacing:0.03em; color: var(--text-dim); }
.day-tab.active{ background: var(--green); border-color: var(--green); color:#07130D; }
.day-tab.active .day-tab-date{ color: rgba(7,19,13,0.65); }

.matches-grid{
  max-width: 1180px; margin:0 auto;
  display:grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap:18px;
}
.match-card{
  background: var(--surface); border:1px solid var(--border); border-radius: var(--radius-lg);
  padding: 18px; display:flex; flex-direction:column; gap:14px;
  transition: transform .2s var(--ease), border-color .2s var(--ease);
}
.match-card:hover{ transform: translateY(-3px); border-color: rgba(34,198,127,0.4); }
.match-meta{ display:flex; justify-content:space-between; align-items:center; }
.match-comp{ font-family: var(--font-mono); font-size:0.68rem; letter-spacing:0.06em; color: var(--text-dim); text-transform:uppercase; }
.match-status{
  font-family: var(--font-mono); font-size:0.68rem; padding:3px 9px; border-radius:999px;
  background: var(--green-soft); color: var(--green); text-transform:uppercase;
}
.match-status.live{ background: var(--red-soft); color: var(--red); }
.match-teams{ display:flex; align-items:center; justify-content:space-between; gap:8px; }
.match-team{ display:flex; flex-direction:column; align-items:center; gap:8px; flex:1; min-width:0; }
.match-team img{ width:40px; height:40px; border-radius:50%; }
.match-team span{ font-size:0.84rem; font-weight:600; text-align:center; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; max-width:100%; }
.match-center{ display:flex; flex-direction:column; align-items:center; gap:2px; font-family: var(--font-mono); color: var(--text-muted); font-size:0.78rem; }
.match-time{ font-weight:700; color: var(--text); font-size:0.95rem; }
.match-predict-btn{
  width:100%; background: var(--bg-soft); border:1px solid var(--border); color: var(--text);
  font-family: var(--font-mono); font-size:0.76rem; letter-spacing:0.05em; padding: 11px; border-radius: var(--radius-sm);
  transition: background .18s var(--ease), border-color .18s var(--ease), color .18s var(--ease);
}
.match-predict-btn:hover{ background: var(--green); color:#07130D; border-color: var(--green); }

/* ============ TENTANG ============ */
.about-section{ padding: 60px 24px 80px; background: linear-gradient(180deg, transparent, rgba(255,255,255,0.02)); }
.about-inner{
  max-width: 1180px; margin:0 auto; display:grid; grid-template-columns: 1.3fr 1fr; gap:40px; align-items:start;
}
.about-text h2{ font-size: clamp(1.4rem, 3vw, 1.9rem); margin: 4px 0 14px; }
.about-text p{ color: var(--text-muted); margin-bottom:22px; }
.weight-list{ display:flex; flex-direction:column; gap:10px; }
.weight-row{ display:grid; grid-template-columns: 118px 1fr 40px; align-items:center; gap:10px; font-size:0.82rem; color: var(--text-muted); font-family: var(--font-mono); }
.weight-bar{ height:7px; background: var(--bg-soft); border-radius:999px; overflow:hidden; border:1px solid var(--border-soft); }
.weight-bar div{ height:100%; background: var(--green); }
.about-source{
  background: var(--surface); border:1px solid var(--border); border-radius: var(--radius-lg); padding:24px;
}
.about-source p{ color: var(--text-muted); margin: 0 0 18px; font-size:0.92rem; }

/* ============ FOOTER ============ */
.site-footer{ border-top: 1px solid var(--border-soft); padding: 40px 24px; }
.footer-inner{ max-width: 780px; margin:0 auto; text-align:center; }
.footer-brand{ display:flex; align-items:center; justify-content:center; gap:10px; font-family: var(--font-display); font-weight:700; margin-bottom:16px; }
.footer-disclaimer{ color: var(--text-muted); font-size:0.86rem; max-width:520px; margin: 0 auto 8px; }
.footer-note{ color: var(--text-dim); font-size:0.8rem; max-width:520px; margin: 0 auto 18px; }
.footer-copy{ color: var(--text-dim); font-size:0.76rem; font-family: var(--font-mono); }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px){
  .about-inner{ grid-template-columns: 1fr; }
  .stats-grid{ grid-template-columns: 1fr; }
}

@media (max-width: 760px){
  .main-nav{
    position:absolute; top: 100%; left:0; right:0;
    background: rgba(10,12,16,0.98); border-bottom:1px solid var(--border-soft);
    flex-direction:column; align-items:stretch; padding: 10px 16px 16px; gap:2px;
    display:none;
  }
  .main-nav.open{ display:flex; }
  .nav-link{ padding: 12px 14px; }
  .hamburger{ display:flex; }
  .brand-tag{ display:none; }
  .mode-pill span:not(.dot){ display:none; }

  .analysis-form{ flex-direction:column; align-items:stretch; }
  .vs-divider{ align-self:center; margin: -4px 0; }
  .btn-primary{ width:100%; justify-content:center; text-align:center; }

  .matchup-card{ flex-direction:column; gap:16px; }
  .matchup-vs{ order:2; }

  .prediction-teams{ flex-direction:column; gap:16px; }
  .prob-row{ grid-template-columns: 78px 1fr 40px; }
  .result-score{ font-size:2.1rem; }

  .matches-grid{ grid-template-columns: 1fr; }

  .day-tabs{ display:grid; grid-template-columns: repeat(3, 1fr); }
  .day-tab{ align-items:center; text-align:center; padding: 10px 6px; }
}
