:root {
  --bg: #eef2f7;
  --panel: #ffffff;
  --panel-soft: #f7f8fb;
  --ink: #24212b;
  --muted: #8b8796;
  --line: #e6e8ef;
  --purple: #5b25ec;
  --purple-deep: #351adf;
  --pink: #f23863;
  --green: #2fbf65;
  --shadow: 0 28px 80px rgba(68, 78, 96, .18);
  --soft-shadow: 0 16px 42px rgba(68, 78, 96, .12);
  --radius: 18px;
  --radius-lg: 28px;
}

* { box-sizing: border-box; }
html { scroll-padding-top: 24px; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 10% 2%, rgba(255, 255, 255, .95), transparent 23rem),
    radial-gradient(circle at 85% 14%, rgba(91, 37, 236, .10), transparent 26rem),
    linear-gradient(135deg, #e8edf4 0%, #f8fafc 48%, #e7ebf2 100%);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.62;
  -webkit-tap-highlight-color: rgba(91, 37, 236, .18);
}
body::before,
body::after {
  content: "";
  position: fixed;
  pointer-events: none;
  z-index: -1;
}
body::before {
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0 10%, rgba(255, 255, 255, .72) 10.2% 10.35%, transparent 10.55%),
    linear-gradient(58deg, transparent 0 72%, rgba(255, 255, 255, .62) 72.1% 72.25%, transparent 72.45%);
}
body::after {
  width: 880px;
  height: 520px;
  top: 88px;
  right: -240px;
  border-radius: 40px;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, rgba(255, 255, 255, .78), rgba(230, 232, 239, .72)) border-box;
  border: 1px solid transparent;
  box-shadow: var(--shadow);
  transform: rotate(11deg);
  opacity: .62;
}

a { color: inherit; text-decoration: none; }
a, button, input { touch-action: manipulation; }
a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 3px solid rgba(91, 37, 236, .34);
  outline-offset: 4px;
}
.skip-link {
  position: absolute;
  left: max(18px, env(safe-area-inset-left));
  top: 8px;
  z-index: 20;
  transform: translateY(-160%);
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  padding: 9px 14px;
  font-size: 14px;
  font-weight: 900;
  transition: transform .18s ease;
}
.skip-link:focus-visible { transform: translateY(0); }

.site-header,
main,
footer {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}
.site-header {
  min-height: 72px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  padding: 18px 0 10px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 950;
  letter-spacing: 0;
  font-size: 24px;
}
.brand::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 42% 42%, #fff 0 24%, transparent 25%),
    conic-gradient(from 40deg, #f23863, #5b25ec, #2fbf65, #f6c743, #f23863);
  box-shadow: 0 0 0 5px rgba(255, 255, 255, .72);
}
nav {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  color: #8e8997;
  font-size: 14px;
  overflow-x: auto;
  scrollbar-width: none;
}
nav::-webkit-scrollbar { display: none; }
nav a {
  flex: 0 0 auto;
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 850;
}
nav a:hover { color: var(--purple); background: rgba(91, 37, 236, .08); }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 22px;
  align-items: stretch;
  padding: 34px 0 22px;
}
.subpage-hero { grid-template-columns: minmax(0, 1fr); }
.project-home-hero { min-height: min(680px, calc(100dvh - 104px)); align-items: center; }
.hero > div,
.score-panel,
.control-panel,
.must-watch-section,
.today-focus-section,
.fixtures-section,
.history-section,
.groups-section,
.teams-section,
.review-section,
.advisor-section,
.subscribe-section,
.risk-section,
.quick-links-section {
  border: 1px solid rgba(230, 232, 239, .94);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .94);
  box-shadow: var(--shadow);
}
.hero > div {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  padding: clamp(30px, 5vw, 58px);
}
.hero > div::before {
  content: "";
  position: absolute;
  inset: auto -90px -120px auto;
  width: 360px;
  height: 280px;
  border-radius: 38px;
  background: linear-gradient(135deg, rgba(91, 37, 236, .98), rgba(53, 26, 223, .92));
  transform: rotate(-10deg);
  opacity: .96;
}
.hero > div::after {
  content: "";
  position: absolute;
  right: 54px;
  bottom: 42px;
  width: 190px;
  height: 74px;
  border-radius: 16px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(255, 255, 255, .85), rgba(230, 232, 239, .8)) border-box;
  border: 1px solid transparent;
  box-shadow: var(--soft-shadow);
  transform: rotate(-4deg);
}
.subpage-hero > div::before,
.subpage-hero > div::after,
.match-hero > div::before,
.match-hero > div::after { opacity: .72; }

.eyebrow {
  margin: 0 0 12px;
  color: var(--purple);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: none;
}
h1 {
  position: relative;
  z-index: 1;
  max-width: 9.5ch;
  margin: 0 0 16px;
  font-size: clamp(46px, 8vw, 92px);
  line-height: .96;
  letter-spacing: 0;
  text-wrap: balance;
}
h2 {
  margin: 0 0 10px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
}
h3, p { margin-top: 0; }
.lead,
.section-heading p,
.advisor-grid p { color: var(--muted); }
.lead {
  position: relative;
  z-index: 1;
  max-width: 620px;
  font-size: 19px;
}
.update-callout {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin: 18px 0 0;
  border-radius: 999px;
  background: var(--pink);
  color: #fff;
  padding: 12px 18px;
  font-size: 15px;
  font-weight: 950;
  box-shadow: 0 16px 34px rgba(242, 57, 93, .22);
}
.data-status {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin: 0;
  border: 1px solid #eadffb;
  border-radius: 999px;
  background: #fbf8ff;
  color: var(--purple-deep);
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 900;
}
.actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  padding: 0 18px;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(68, 78, 96, .08);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.button:hover { transform: translateY(-2px); border-color: #d8cef9; box-shadow: var(--soft-shadow); }
.button:active { transform: translateY(0); }
.button.primary {
  border-color: var(--purple);
  background: var(--purple);
  color: #fff;
}

.score-panel {
  display: grid;
  gap: 12px;
  padding: 22px;
}
.compact-score-panel { grid-template-columns: 1fr; }
.score-panel div {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(180deg, #fbfcff, #ffffff);
  padding: 18px;
  box-shadow: 0 10px 28px rgba(68, 78, 96, .07);
}
.score-panel span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}
.score-panel strong {
  display: block;
  margin-top: 5px;
  font-size: 44px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.control-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: end;
  padding: 18px;
  margin: 0 0 22px;
}
label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
}
input {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  padding: 0 14px;
  font: inherit;
}
.filters { display: flex; flex-wrap: wrap; gap: 8px; }
.filter {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--muted);
  padding: 0 14px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}
.filter.active {
  border-color: var(--purple);
  background: var(--purple);
  color: #fff;
}

.must-watch-section,
.today-focus-section,
.fixtures-section,
.history-section,
.groups-section,
.teams-section,
.review-section,
.advisor-section,
.subscribe-section,
.risk-section,
.quick-links-section {
  padding: clamp(22px, 4vw, 34px);
  margin: 22px 0;
}
.section-heading { max-width: 760px; margin-bottom: 24px; }
.section-heading h2 { max-width: 12ch; }

.today-focus-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 8%, rgba(255, 255, 255, .18), transparent 15rem),
    linear-gradient(135deg, #6c31f4 0%, #421bdd 58%, #3215b8 100%);
  color: #fff;
  border-color: rgba(255, 255, 255, .16);
}
.today-focus-section .eyebrow { color: #efeaff; }
.today-focus-section h2 { max-width: none; color: #fff; }
.today-focus-heading,
.quick-links-heading,
.advisor-heading,
.score-poster-top {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-end;
  max-width: none;
}
.today-focus-heading p:last-child,
.quick-links-heading p:last-child,
.advisor-heading p:last-child,
.score-poster-top p:last-child {
  max-width: 460px;
  margin: 0;
  color: inherit;
  opacity: .78;
  text-align: right;
  font-weight: 750;
}
.today-focus-grid {
  display: grid;
  grid-template-columns: 1.18fr repeat(2, minmax(0, .91fr));
  gap: 14px;
}
.today-focus-card,
.fixture-card,
.quick-link-card,
.group-card,
.ranking-note,
.advisor-grid article,
.match-advisor-card,
.team-profile-card,
.match-review-card,
.prediction-card,
.correction-grid article,
.review-board {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 28px rgba(68, 78, 96, .07);
}
.today-focus-card {
  display: flex;
  flex-direction: column;
  min-height: 268px;
  border-color: rgba(255, 255, 255, .20);
  background: rgba(255, 255, 255, .12);
  padding: 20px;
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .22);
}
.today-focus-card.primary-focus { background: rgba(255, 255, 255, .20); }
.today-focus-card .fixture-top { color: rgba(255, 255, 255, .78); }
.today-focus-card strong {
  display: block;
  margin: 18px 0 10px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.08;
}
.today-focus-card .fixture-time {
  border-color: rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .12);
  color: #fff;
}
.today-focus-card p {
  margin: 18px 0 10px;
  color: rgba(255, 255, 255, .88);
  font-size: 16px;
  font-weight: 750;
}
.today-focus-card small {
  display: block;
  margin-top: auto;
  color: rgba(255, 255, 255, .74);
  font-size: 13px;
  line-height: 1.55;
}
.today-focus-card .text-link { color: #fff; }

.quick-link-list {
  display: grid;
  grid-template-columns: 1.15fr repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.quick-link-card {
  display: grid;
  gap: 10px;
  min-height: 158px;
  padding: 18px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.quick-link-card:hover,
.quick-link-card:focus-visible {
  transform: translateY(-2px);
  border-color: #d8cef9;
  box-shadow: var(--soft-shadow);
}
.quick-link-card:active { transform: translateY(0); }
.quick-link-card span,
.badge,
.fixture-time,
.prediction-tags span,
.score-prediction-chips span {
  border-radius: 999px;
}
.quick-link-card span {
  width: fit-content;
  border: 1px solid #eadffb;
  background: #fbf8ff;
  color: var(--purple);
  padding: 4px 9px;
  font-size: 12px;
  font-weight: 950;
}
.quick-link-card strong {
  margin-top: auto;
  font-size: 24px;
  line-height: 1.12;
}
.quick-link-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.5; }
.primary-link-card {
  border-color: var(--purple);
  background: linear-gradient(135deg, #6c31f4, #3b18cb);
  color: #fff;
}
.primary-link-card span {
  border-color: rgba(255, 255, 255, .26);
  background: rgba(255, 255, 255, .14);
  color: #fff;
}
.primary-link-card p { color: rgba(255, 255, 255, .76); }

.fixture-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.fixture-card {
  padding: 18px;
  content-visibility: auto;
  contain-intrinsic-size: 280px;
}
.empty-state {
  grid-column: 1 / -1;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 18px;
  color: var(--muted);
  font-weight: 850;
}
.fixture-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}
.fixture-time {
  display: inline-flex;
  width: fit-content;
  margin-top: 12px;
  border: 1px solid #eadffb;
  background: #fbf8ff;
  color: var(--purple-deep);
  padding: 6px 10px;
  font-size: 14px;
  font-weight: 950;
}
.teams {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 18px 0;
  font-size: 22px;
  font-weight: 950;
}
.versus { color: var(--muted); font-size: 14px; }
.badge {
  display: inline-flex;
  border: 1px solid var(--line);
  padding: 5px 9px;
  font-size: 12px;
  font-weight: 900;
}
.badge.done { color: #108357; background: #eafff5; border-color: #b9ecd7; }
.badge.upcoming { color: var(--purple-deep); background: #fbf8ff; border-color: #eadffb; }
.badge.focus { color: #c91f4b; background: #fff0f4; border-color: #ffd2df; }
.reason { color: var(--muted); margin: 0; }
.fixture-details { display: grid; gap: 7px; margin: 14px 0; }
.fixture-details span {
  border: 1px solid rgba(230, 232, 239, .88);
  border-radius: 12px;
  background: #fff;
  padding: 8px 10px;
  color: #4c4658;
  font-size: 13px;
  font-weight: 750;
}
.text-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 14px;
  color: var(--purple);
  font-size: 14px;
  font-weight: 900;
}
.fixture-link { margin-top: 12px; }
.source-note { margin: 18px 0 0; color: var(--muted); font-size: 13px; }

.history-list,
.match-review-list,
.match-advisor-list { display: grid; gap: 12px; }
.history-row {
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(220px, .9fr) minmax(240px, 1.1fr);
  gap: 14px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 16px;
  box-shadow: 0 10px 28px rgba(68, 78, 96, .07);
  content-visibility: auto;
  contain-intrinsic-size: 130px;
}
.history-row div { display: grid; gap: 4px; }
.history-row span { color: var(--purple); font-size: 12px; font-weight: 900; }
.history-row strong { font-size: 17px; line-height: 1.25; }
.history-row p,
.history-row small { margin: 0; color: var(--muted); font-size: 13px; }
.history-row small { line-height: 1.45; }

.group-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 14px;
  align-items: start;
}
.group-card,
.ranking-note { padding: 20px; }
.group-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}
.group-head span,
.ranking-note span,
.advisor-grid span,
.review-metrics span,
.prediction-head span,
.correction-grid span,
.team-profile-head span {
  color: var(--purple);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: none;
}
.group-head strong { color: var(--ink); font-size: 15px; }
.team-rank-list { display: grid; gap: 8px; margin: 0 0 14px; padding: 0; list-style: none; }
.team-rank-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid rgba(230, 232, 239, .88);
  border-radius: 12px;
  background: #fff;
  padding: 9px 10px;
  font-weight: 850;
}
.team-rank-list strong { color: var(--muted); font-size: 13px; font-variant-numeric: tabular-nums; }
.standings-table { display: grid; gap: 7px; margin: 0 0 14px; min-width: 0; }
.standings-row {
  display: grid;
  grid-template-columns: minmax(88px, 1fr) repeat(4, 26px) 44px 32px 32px;
  gap: 5px;
  align-items: center;
  border: 1px solid rgba(230, 232, 239, .88);
  border-radius: 12px;
  background: #fff;
  padding: 8px 7px;
  font-size: 12px;
  font-weight: 850;
  font-variant-numeric: tabular-nums;
}
.standings-head { color: var(--muted); background: var(--panel-soft); font-size: 11px; letter-spacing: 0; }
.standings-row span { min-width: 0; text-align: center; }
.standings-row span:first-child {
  display: flex;
  gap: 6px;
  align-items: center;
  min-width: 0;
  overflow: hidden;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.standings-head span:first-child { display: block; }
.standings-row span:first-child b {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #fbf8ff;
  color: var(--purple);
  font-size: 11px;
}
.standings-row strong { color: var(--ink); font-size: 15px; text-align: center; }
.group-card p,
.ranking-note p { margin: 0; color: var(--muted); font-size: 14px; }
.ranking-note h3 { margin: 8px 0 10px; font-size: 24px; line-height: 1.1; }
.group-page-note { margin-top: 14px; }

.advisor-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.advisor-grid article { padding: 20px; }
.must-watch-section .advisor-grid { grid-template-columns: 1.1fr .95fr .95fr; }
.advisor-summary-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 18px;
}
.advisor-summary-strip div {
  border: 1px solid rgba(230, 232, 239, .88);
  border-radius: 16px;
  background: #fff;
  padding: 14px 16px;
}
.advisor-summary-strip span { display: block; color: var(--muted); font-size: 12px; font-weight: 900; }
.advisor-summary-strip strong { display: block; margin: 4px 0; font-size: 18px; line-height: 1.2; }
.advisor-summary-strip p { margin: 0; color: var(--muted); font-size: 13px; }

.score-poster-section { margin: 22px 0; }
.score-poster-shell {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: 28px 22px 26px;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, .18), transparent 14rem),
    linear-gradient(135deg, #6c31f4 0%, #421bdd 58%, #3215b8 100%);
  box-shadow: 0 26px 60px rgba(53, 26, 223, .24);
}
.score-poster-shell::before {
  content: "";
  position: absolute;
  inset: 88px 22px auto;
  height: 126px;
  border-radius: 26px;
  background: rgba(255, 255, 255, .10);
}
.score-poster-top {
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
  color: #fff;
}
.score-poster-top .eyebrow { color: #efeaff; }
.score-poster-top h2 { color: #fff; font-size: clamp(28px, 4vw, 42px); }
.score-poster-banner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 4px;
  margin: 0 0 20px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 20px;
  background: rgba(255, 255, 255, .12);
  padding: 22px 24px;
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .14);
}
.score-poster-banner strong { font-size: 18px; line-height: 1.2; }
.score-poster-banner span { color: rgba(255, 255, 255, .74); font-size: 14px; font-weight: 700; }
#score-prediction-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
}
.score-prediction-card {
  position: relative;
  display: grid;
  gap: 18px;
  border-radius: 22px;
  background: #fff;
  padding: 22px 18px 18px;
  box-shadow: 0 18px 42px rgba(14, 24, 70, .16);
  content-visibility: auto;
  contain-intrinsic-size: 360px;
}
.score-prediction-meta {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid #eef0f5;
  color: #8b8796;
  font-size: 12px;
  font-weight: 800;
}
.score-prediction-meta strong { color: #2b2735; font-size: 13px; }
.score-prediction-head { display: grid; gap: 10px; }
.score-prediction-headline {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 10px;
  align-items: center;
}
.score-prediction-team { display: grid; gap: 6px; justify-items: center; text-align: center; }
.score-prediction-team b { color: #20212a; font-size: 24px; line-height: 1.15; }
.score-prediction-team span { color: #8b8796; font-size: 12px; font-weight: 850; letter-spacing: 0; text-transform: none; }
.score-prediction-result {
  min-width: 108px;
  display: grid;
  gap: 6px;
  justify-items: center;
}
.score-prediction-result strong {
  color: #171721;
  font-size: 42px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.score-prediction-result span {
  border-radius: 999px;
  background: var(--pink);
  color: #fff;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
}
.score-prediction-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.score-prediction-chips span {
  background: var(--panel-soft);
  color: #5d5968;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: none;
}
.score-prediction-chips .is-primary { background: var(--pink); color: #fff; }
.score-prediction-scenarios {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.score-prediction-scenarios div,
.score-prediction-details div {
  border: 1px solid #eceef4;
  border-radius: 16px;
  background: linear-gradient(180deg, #fff, #f8f9fc);
  padding: 13px;
}
.score-prediction-scenarios div { text-align: center; }
.score-prediction-scenarios span { display: block; color: #6f6a7b; font-size: 12px; font-weight: 900; }
.score-prediction-scenarios strong {
  display: block;
  margin: 5px 0;
  color: #171721;
  font-size: 28px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.score-prediction-scenarios p,
.score-prediction-details p {
  margin: 0;
  color: #5d5968;
  font-size: 12px;
  line-height: 1.45;
  text-align: left;
}
.score-prediction-details { display: grid; gap: 10px; padding-top: 12px; border-top: 1px solid #eef0f5; }
.score-prediction-details strong { display: block; margin-bottom: 4px; color: #2b2735; font-size: 13px; }
.market-reference-card {
  border: 1px solid rgba(108, 49, 244, .16);
  border-radius: 16px;
  background: linear-gradient(135deg, #fbf8ff, #fff);
  padding: 14px;
}
.market-reference-card span,
.market-reference-card strong {
  display: block;
  margin-bottom: 5px;
  color: var(--purple);
  font-size: 12px;
  font-weight: 900;
}
.market-reference-card p {
  margin: 4px 0 0;
  color: #4c4658;
  font-size: 13px;
  line-height: 1.5;
}
.market-reference-card small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.match-advisor-card {
  display: grid;
  gap: 16px;
  padding: 18px;
  content-visibility: auto;
  contain-intrinsic-size: 260px;
}
.match-advisor-card.priority-advisor-card {
  border-color: #ffd2df;
  background: linear-gradient(135deg, #fff7fa, #fff 58%);
}
.match-advisor-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: start;
  margin-bottom: 0;
}
.match-advisor-head div { display: grid; gap: 7px; }
.match-advisor-head span:not(.badge) { color: var(--purple); font-size: 12px; font-weight: 900; }
.match-advisor-head strong { font-size: clamp(24px, 3vw, 34px); line-height: 1.08; text-wrap: balance; }
.match-advisor-head small { color: var(--muted); font-size: 13px; font-weight: 800; }
.match-advisor-body {
  display: grid;
  grid-template-columns: 1.12fr repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 0;
}
.match-advisor-body div {
  border: 1px solid rgba(230, 232, 239, .88);
  border-radius: 14px;
  background: #fff;
  padding: 14px;
}
.match-advisor-body span { display: block; color: var(--muted); font-size: 12px; font-weight: 900; }
.match-advisor-body p { margin: 6px 0 0; color: #4c4658; font-size: 14px; line-height: 1.55; }
.advisor-card-footer {
  display: flex;
  justify-content: flex-end;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.teams-section .team-profile-grid,
.team-profile-grid--full {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.team-profile-card {
  display: grid;
  gap: 16px;
  align-content: start;
  padding: 20px;
  content-visibility: auto;
  contain-intrinsic-size: 430px;
}
.team-profile-head h3 { margin: 4px 0 0; font-size: 24px; line-height: 1.15; }
.team-style { margin: 0; color: #4c4658; font-size: 15px; font-weight: 750; }
.player-list { display: grid; gap: 10px; }
.player-row {
  display: grid;
  grid-template-columns: 46px minmax(130px, .8fr) minmax(96px, .55fr) minmax(0, 1.4fr);
  gap: 10px;
  align-items: start;
  border: 1px solid rgba(230, 232, 239, .88);
  border-radius: 14px;
  background: #fff;
  padding: 11px 12px;
}
.player-number {
  display: inline-grid;
  place-items: center;
  width: 34px;
  min-height: 28px;
  border: 1px solid #eadffb;
  border-radius: 10px;
  background: #fbf8ff;
  color: var(--purple);
  font-size: 13px;
  font-weight: 950;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.player-row strong { color: var(--ink); font-size: 14px; line-height: 1.25; }
.player-role { color: var(--purple); font-size: 12px; font-weight: 900; }
.player-row p { margin: 0; color: #4c4658; font-size: 13px; line-height: 1.45; }
.team-profile-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.team-profile-notes div {
  border: 1px solid rgba(230, 232, 239, .88);
  border-radius: 12px;
  background: #fff;
  padding: 10px;
}
.team-profile-notes span { display: block; color: var(--muted); font-size: 12px; font-weight: 900; }
.team-profile-notes p { margin: 4px 0 0; color: #4c4658; font-size: 13px; line-height: 1.45; }

.subscribe-panel {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 20px;
}
.subscribe-panel h3 { margin: 0 0 6px; font-size: 22px; }
.subscribe-panel p { margin: 0; color: var(--muted); }
.match-hero .score-panel strong { font-size: 22px; line-height: 1.15; }

.review-board { padding: 18px; }
.match-review-card {
  padding: 16px;
  content-visibility: auto;
  contain-intrinsic-size: 260px;
}
.match-review-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 12px;
}
.match-review-head span { color: var(--purple); font-size: 12px; font-weight: 900; }
.review-scoreline {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  width: min(760px, 100%);
}
.review-scoreline strong {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #eadffb;
  border-radius: 14px;
  background: #fbf8ff;
  color: var(--purple-deep);
  padding: 10px 12px;
  font-size: 18px;
  line-height: 1.2;
  text-align: center;
}
.review-scoreline b {
  min-width: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: var(--ink);
  color: #fff;
  padding: 12px 14px;
  font-size: 24px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  box-shadow: 0 14px 32px rgba(36, 33, 43, .18);
}
.review-hero {
  display: grid;
  gap: 8px;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  padding: 18px 20px;
}
.review-hero span { color: #c8c3d3; font-size: 13px; font-weight: 850; }
.review-hero strong { font-size: 28px; line-height: 1.1; }
.review-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 12px 0;
}
.compact-review-metrics { margin: 0; }
.review-metrics div {
  min-height: 122px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  padding: 16px;
}
.review-metrics strong { display: block; margin: 7px 0 4px; font-size: 18px; line-height: 1.35; }
.review-metrics p,
.prediction-body p,
.correction-grid p { margin: 0; color: var(--muted); font-size: 14px; }
.review-note {
  margin: 0 0 12px;
  border-left: 4px solid var(--purple);
  border-radius: 12px;
  background: #fbf8ff;
  padding: 10px 14px;
  color: var(--purple-deep);
  font-size: 14px;
  font-weight: 850;
}
.prediction-card { padding: 18px; }
.prediction-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}
.prediction-head h3 { margin: 4px 0 0; font-size: 22px; }
.prediction-head strong { color: #2b2735; font-size: 14px; }
.prediction-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0; }
.prediction-tags span {
  border: 1px solid #eadffb;
  background: #fbf8ff;
  color: var(--purple);
  padding: 4px 9px;
  font-size: 12px;
  font-weight: 900;
}
.prediction-body { display: grid; gap: 10px; border-top: 1px solid var(--line); padding-top: 14px; }
.correction-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}
.correction-grid article { padding: 18px; }
.correction-grid h3 { margin: 6px 0 8px; font-size: 18px; }

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 34px 0 max(46px, calc(30px + env(safe-area-inset-bottom)));
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 1040px) {
  .must-watch-section .advisor-grid,
  .today-focus-grid,
  .quick-link-list,
  .teams-section .team-profile-grid,
  .team-profile-grid--full,
  .group-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  body::after { display: none; }
  .site-header { align-items: flex-start; flex-direction: column; }
  .hero,
  .control-panel,
  .fixture-grid,
  .history-row,
  .review-metrics,
  .correction-grid,
  .advisor-grid,
  .player-row,
  .team-profile-notes,
  .match-advisor-body,
  .advisor-summary-strip,
  .match-advisor-head,
  .score-prediction-headline,
  .score-prediction-meta,
  .score-prediction-scenarios { grid-template-columns: 1fr; }
  .hero > div { min-height: auto; }
  .hero > div::before,
  .hero > div::after { opacity: .22; }
  h1 { font-size: clamp(42px, 14vw, 68px); }
  footer,
  .prediction-head,
  .subscribe-panel,
  .match-review-head,
  .today-focus-heading,
  .advisor-heading,
  .quick-links-heading,
  .score-poster-top {
    align-items: flex-start;
    flex-direction: column;
  }
  .today-focus-heading p:last-child,
  .advisor-heading p:last-child,
  .quick-links-heading p:last-child,
  .score-poster-top p:last-child { text-align: left; }
  .advisor-card-footer { justify-content: flex-start; }
  .review-scoreline { grid-template-columns: 1fr; width: 100%; }
  .review-scoreline b { width: 100%; }
  .button { width: 100%; }
  .section-heading h2 { max-width: none; }
  .teams { align-items: flex-start; flex-direction: column; }
}

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