@import url("https://fonts.googleapis.com/css2?family=Archivo+Black&family=Noto+Sans+SC:wght@400;500;600;700;800;900&display=swap");

:root {
  --ink: #0b1426;
  --paper: #f5f1e8;
  --surface: #fffef9;
  --pitch: #0f6b4f;
  --pitch-dark: #0a4938;
  --lime: #d8ff5f;
  --coral: #ff6b4a;
  --sky: #c8e8ff;
  --muted: #667085;
  --line: rgba(11, 20, 38, 0.14);
  --line-strong: rgba(11, 20, 38, 0.28);
  --radius-lg: 28px;
  --radius-md: 18px;
  --shadow: 0 24px 60px rgba(11, 20, 38, 0.11);
  --display: "Archivo Black", "Noto Sans SC", sans-serif;
  --sans: "Noto Sans SC", Inter, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(11, 20, 38, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 20, 38, 0.025) 1px, transparent 1px),
    var(--paper);
  background-size: 34px 34px;
  font-family: var(--sans);
  min-width: 320px;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  width: min(1240px, calc(100% - 48px));
  height: 84px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 24px;
  letter-spacing: -1px;
}

.brand small {
  padding: 3px 6px;
  color: var(--paper);
  background: var(--ink);
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.08em;
}

.brand-mark {
  position: relative;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  background: var(--pitch);
  overflow: hidden;
  transform: rotate(-12deg);
}

.brand-mark i {
  position: absolute;
  display: block;
  width: 24px;
  height: 6px;
  background: var(--lime);
}

.brand-mark i:nth-child(1) {
  top: 4px;
  left: -4px;
}

.brand-mark i:nth-child(2) {
  top: 13px;
  left: 5px;
}

.brand-mark i:nth-child(3) {
  top: 22px;
  left: -6px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14px;
  font-weight: 700;
}

.main-nav a {
  position: relative;
  padding: 30px 0;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 19px;
  left: 0;
  height: 3px;
  background: var(--pitch);
  content: "";
  opacity: 0;
  transform: scaleX(0);
  transition: 160ms ease;
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.language-toggle {
  justify-self: end;
  min-width: 54px;
  height: 36px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  background: transparent;
  font-weight: 800;
  cursor: pointer;
  transition: 160ms ease;
}

.language-toggle:hover {
  color: var(--paper);
  background: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(380px, 0.96fr);
  gap: 70px;
  align-items: center;
  min-height: 650px;
  padding-block: 68px 72px;
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: 54px;
  left: -130px;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(15, 107, 79, 0.18);
  border-radius: 50%;
  content: "";
}

.hero::after {
  position: absolute;
  z-index: -1;
  right: 38%;
  bottom: 24px;
  width: 78px;
  height: 78px;
  border: 18px solid rgba(255, 107, 74, 0.13);
  border-radius: 50%;
  content: "";
}

.eyebrow,
.section-index {
  margin: 0 0 18px;
  color: var(--pitch);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  display: inline-block;
  width: 32px;
  height: 3px;
  margin: 0 10px 3px 0;
  background: var(--coral);
  content: "";
}

.hero h1 {
  max-width: 670px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(48px, 5.6vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.reveal-copy {
  animation: reveal-up 720ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.reveal-board {
  animation:
    reveal-board 820ms 120ms cubic-bezier(0.2, 0.8, 0.2, 1) both,
    board-float 5.8s 1.2s ease-in-out infinite;
}

.hero-copy > * {
  animation: reveal-up 640ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-copy > :nth-child(1) {
  animation-delay: 80ms;
}

.hero-copy > :nth-child(2) {
  animation-delay: 150ms;
}

.hero-copy > :nth-child(3) {
  animation-delay: 230ms;
}

.hero-copy > :nth-child(4) {
  animation-delay: 310ms;
}

.hero-copy > :nth-child(5) {
  animation-delay: 390ms;
}

.hero-body {
  max-width: 610px;
  margin: 28px 0 0;
  color: #3d4657;
  font-size: 18px;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  gap: 28px;
  align-items: center;
  margin-top: 35px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  padding: 0 22px;
  align-items: center;
  justify-content: center;
  gap: 30px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 800;
  transition: 160ms ease;
}

.button-primary {
  color: var(--surface);
  background: var(--pitch);
  box-shadow: 7px 7px 0 var(--lime);
}

.button-primary:hover {
  background: var(--pitch-dark);
  box-shadow: 3px 3px 0 var(--lime);
  transform: translate(4px, 4px);
}

.text-link {
  border-bottom: 1px solid var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.trust-row {
  display: flex;
  gap: 22px;
  margin-top: 38px;
  color: var(--muted);
  font-size: 12px;
}

.trust-row span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-row b {
  font-weight: 600;
}

.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 5px rgba(255, 107, 74, 0.12);
}

.check {
  display: inline-grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--pitch);
  font-size: 11px;
  font-style: normal;
}

.hero-board {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  color: white;
  background:
    radial-gradient(circle at 100% 0, rgba(216, 255, 95, 0.18), transparent 30%),
    linear-gradient(145deg, var(--pitch), var(--pitch-dark));
  box-shadow: var(--shadow), 18px 18px 0 rgba(11, 20, 38, 0.08);
}

.hero-board::before,
.hero-board::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  content: "";
}

.hero-board::before {
  top: 50%;
  left: 50%;
  width: 260px;
  height: 260px;
  transform: translate(-50%, -50%);
}

.hero-board::after {
  top: -130px;
  right: -90px;
  width: 260px;
  height: 260px;
}

.board-top,
.board-matchup,
.probability,
.probability-bar,
.board-note {
  position: relative;
  z-index: 1;
}

.board-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  font-family: ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
}

.board-live {
  color: var(--lime);
}

.board-live i {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 6px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(216, 255, 95, 0.12);
  animation: live-pulse 1.8s ease-out infinite;
}

.board-matchup {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 15px;
  align-items: center;
  padding: 45px 0 32px;
  text-align: center;
}

.board-team {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.board-flag {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  font-size: 35px;
}

.board-flag img {
  display: block;
  width: 52px;
  height: 36px;
  border-radius: 6px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.board-team strong {
  font-family: var(--display);
  font-size: 30px;
}

.board-team small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.62);
}

.board-score span,
.board-score small {
  display: block;
  color: rgba(255, 255, 255, 0.65);
  font-size: 11px;
}

.board-score strong {
  display: block;
  margin: 8px 0;
  color: var(--lime);
  font-family: var(--display);
  font-size: 48px;
  letter-spacing: -0.05em;
}

.probability {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
}

.probability div {
  padding: 16px;
  background: rgba(4, 40, 29, 0.68);
}

.probability span,
.probability strong {
  display: block;
}

.probability span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 10px;
}

.probability strong {
  margin-top: 4px;
  font-size: 22px;
}

.probability-bar {
  display: flex;
  gap: 3px;
  height: 7px;
  margin-top: 10px;
}

.probability-bar i {
  display: block;
  border-radius: 999px;
  transform-origin: left center;
  animation: grow-bar 900ms 780ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.probability-bar i:nth-child(1) {
  background: var(--lime);
}

.probability-bar i:nth-child(2) {
  background: var(--sky);
}

.probability-bar i:nth-child(3) {
  background: var(--coral);
}

.board-note {
  margin-top: 24px;
  padding: 16px 18px;
  border-left: 3px solid var(--lime);
  background: rgba(255, 255, 255, 0.07);
}

.board-note span {
  color: var(--lime);
  font-size: 10px;
  font-weight: 800;
}

.board-note p {
  margin: 4px 0 0;
  font-size: 13px;
}

.board-stamp {
  position: absolute;
  z-index: 1;
  top: 92px;
  right: -14px;
  padding: 7px 25px;
  color: var(--ink);
  background: var(--lime);
  font-family: var(--display);
  font-size: 10px;
  line-height: 1;
  text-align: center;
  transform: rotate(7deg);
}

.matches-section {
  padding-block: 65px 105px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 24px;
  border-bottom: 3px solid var(--ink);
}

.section-heading h2,
.method-intro h2,
.notice h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 54px);
  letter-spacing: -0.04em;
}

.section-heading .section-index {
  margin-bottom: 7px;
}

.heading-note {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 12px;
}

.data-tag {
  padding: 5px 8px;
  color: var(--ink);
  background: var(--lime);
  font-weight: 800;
}

.date-tabs {
  display: flex;
  gap: 8px;
  padding: 20px 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.date-tabs::-webkit-scrollbar {
  display: none;
}

.date-tab {
  min-width: 146px;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.45);
  text-align: left;
  cursor: pointer;
  transition: 160ms ease;
}

.date-tab small,
.date-tab strong {
  display: block;
}

.date-tab small {
  font-family: ui-monospace, monospace;
  font-size: 10px;
}

.date-tab strong {
  margin-top: 4px;
  color: var(--ink);
  font-size: 13px;
}

.date-tab:hover,
.date-tab.is-active {
  border-color: var(--ink);
  color: var(--lime);
  background: var(--ink);
}

.date-tab.is-active strong,
.date-tab:hover strong {
  color: white;
}

.match-list {
  display: grid;
  gap: 12px;
}

.match-card {
  padding: 18px 20px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 254, 249, 0.86);
  box-shadow: 0 8px 20px rgba(11, 20, 38, 0.025);
  transition: 180ms ease;
}

.match-card-enter {
  animation: card-enter 460ms var(--card-delay) cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.match-list.is-refreshing .empty-state {
  animation: card-enter 420ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.match-card:hover {
  border-color: var(--line-strong);
  box-shadow: 0 16px 34px rgba(11, 20, 38, 0.08);
  transform: translateY(-2px);
}

.match-card.is-live {
  border-color: rgba(255, 107, 74, 0.55);
}

.match-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 13px;
  border-bottom: 1px dashed var(--line);
}

.stage {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pitch);
}

.status-pending {
  color: var(--muted);
}

.status-pending .status-dot {
  background: #b5b8be;
}

.status-live {
  color: var(--coral);
}

.status-live .status-dot {
  background: var(--coral);
  box-shadow: 0 0 0 5px rgba(255, 107, 74, 0.12);
  animation: live-pulse 1.8s ease-out infinite;
}

.match-main {
  display: grid;
  grid-template-columns: 115px minmax(300px, 1fr) 130px 190px;
  gap: 22px;
  align-items: center;
  padding-top: 18px;
}

.kickoff strong,
.kickoff span,
.prediction span,
.prediction strong,
.prediction small {
  display: block;
}

.kickoff strong {
  font-family: var(--display);
  font-size: 24px;
}

.kickoff span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
}

.teams {
  display: grid;
  grid-template-columns: 1fr 35px 1fr;
  align-items: center;
}

.team {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1px 10px;
  align-items: center;
}

.team-away {
  grid-template-columns: auto 1fr;
}

.flag {
  grid-row: 1 / span 2;
  font-size: 27px;
}

.flag img {
  display: block;
  width: 32px;
  height: 22px;
  border-radius: 3px;
  object-fit: cover;
  box-shadow: 0 0 0 1px var(--line);
}

.team-name {
  overflow: hidden;
  font-size: 16px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.team-code {
  color: var(--muted);
  font-family: ui-monospace, monospace;
  font-size: 10px;
}

.versus {
  color: #a0a5ae;
  font-family: var(--display);
  font-size: 11px;
  text-align: center;
}

.prediction {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.prediction span,
.prediction small {
  color: var(--muted);
  font-size: 10px;
}

.prediction strong {
  margin: 2px 0;
  font-family: var(--display);
  font-size: 24px;
}

.analysis-link {
  display: inline-flex;
  min-height: 46px;
  padding: 0 17px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--ink);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 800;
  transition: 160ms ease;
}

.analysis-link:hover,
.analysis-link:focus-visible {
  color: white;
  background: var(--ink);
  outline: 3px solid var(--lime);
  outline-offset: 2px;
}

.analysis-link.is-disabled {
  border-color: var(--line);
  color: var(--muted);
  background: #f1efe9;
}

.empty-state {
  display: flex;
  gap: 22px;
  align-items: center;
  min-height: 180px;
  padding: 32px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.35);
}

.empty-mark {
  font-family: var(--display);
  font-size: 65px;
  color: rgba(11, 20, 38, 0.12);
}

.empty-state h3 {
  margin: 0;
  font-size: 20px;
}

.empty-state p {
  margin: 7px 0 0;
  color: var(--muted);
}

.method-section {
  padding: 100px 0;
  color: white;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    var(--ink);
  background-size: 48px 48px;
}

.method-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
  align-items: start;
}

.method-intro .section-index {
  color: var(--lime);
}

.method-intro p:last-child {
  max-width: 490px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 16px;
  line-height: 1.8;
}

.method-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.method-steps li {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 22px;
  padding: 23px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.method-steps li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.method-steps > li > span {
  color: var(--lime);
  font-family: var(--display);
  font-size: 13px;
}

.method-steps h3 {
  margin: 0;
  font-size: 18px;
}

.method-steps p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.notice {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  margin-block: 65px;
  padding: 30px 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 107, 74, 0.35);
  border-radius: var(--radius-md);
  background: #fff2ec;
}

.notice-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--coral);
  font-family: var(--display);
  font-size: 24px;
}

.notice h2 {
  font-size: 23px;
}

.notice p {
  max-width: 780px;
  margin: 7px 0 0;
  color: #654a43;
  font-size: 13px;
  line-height: 1.7;
}

.notice-code {
  color: rgba(255, 107, 74, 0.55);
  font-family: ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding-block: 28px 38px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
}

.site-footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 14px;
}

.footer-links a {
  color: var(--muted);
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--ink);
}

.footer-ball {
  color: var(--pitch);
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes reveal-board {
  from {
    opacity: 0;
    transform: translateY(24px) rotate(1.4deg) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) rotate(0) scale(1);
  }
}

@keyframes board-float {
  0%,
  100% {
    transform: translateY(0) rotate(0);
  }

  50% {
    transform: translateY(-7px) rotate(-0.25deg);
  }
}

@keyframes grow-bar {
  from {
    opacity: 0.4;
    transform: scaleX(0);
  }

  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes card-enter {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes live-pulse {
  0% {
    box-shadow: 0 0 0 0 currentColor;
  }

  70% {
    box-shadow: 0 0 0 7px transparent;
  }

  100% {
    box-shadow: 0 0 0 0 transparent;
  }
}

@media (max-width: 940px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 45px;
    padding-top: 60px;
  }

  .hero-board {
    width: min(600px, 100%);
  }

  .match-main {
    grid-template-columns: 90px 1fr 120px;
  }

  .analysis-link {
    grid-column: 1 / -1;
  }

  .method-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 720px) {
  .shell,
  .site-header {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    height: 70px;
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-block: 48px 62px;
  }

  .hero h1 {
    font-size: clamp(43px, 13vw, 65px);
  }

  .hero-body {
    font-size: 16px;
  }

  .hero-actions,
  .trust-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-actions {
    gap: 22px;
  }

  .trust-row {
    gap: 12px;
  }

  .hero-board {
    padding: 18px;
    border-radius: 21px;
    box-shadow: var(--shadow), 8px 8px 0 rgba(11, 20, 38, 0.08);
  }

  .board-matchup {
    padding-block: 32px 24px;
  }

  .board-flag {
    width: 58px;
    height: 58px;
    font-size: 28px;
  }

  .board-score strong {
    font-size: 38px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .heading-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .match-card {
    padding: 16px;
  }

  .match-main {
    grid-template-columns: 1fr auto;
    gap: 18px;
  }

  .kickoff {
    grid-column: 1 / -1;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line);
  }

  .teams {
    grid-template-columns: 1fr 28px 1fr;
  }

  .team {
    display: flex;
    flex-direction: column;
    gap: 3px;
    text-align: center;
  }

  .flag {
    font-size: 30px;
  }

  .team-name {
    max-width: 115px;
    font-size: 14px;
  }

  .prediction {
    min-width: 84px;
    padding-left: 12px;
  }

  .analysis-link {
    grid-column: 1 / -1;
    min-height: 48px;
  }

  .method-section {
    padding-block: 70px;
  }

  .notice {
    grid-template-columns: auto 1fr;
    padding: 24px;
  }

  .notice-code {
    grid-column: 1 / -1;
  }

  .site-footer {
    grid-template-columns: auto 1fr;
  }

  .footer-links {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

@media (max-width: 420px) {
  .brand {
    font-size: 21px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .board-team strong {
    font-size: 24px;
  }

  .board-team small {
    font-size: 10px;
  }

  .probability div {
    padding: 13px 10px;
  }

  .probability strong {
    font-size: 19px;
  }

  .matches-section {
    padding-bottom: 75px;
  }

  .match-meta {
    align-items: flex-start;
    gap: 12px;
  }

  .status {
    justify-content: flex-end;
    text-align: right;
  }

  .team-name {
    max-width: 94px;
  }

  .empty-state {
    align-items: flex-start;
    padding: 24px;
  }

  .empty-mark {
    font-size: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
}
