/* ================================================================
   WORLD CUP ’26 — summer tournament poster / sticker-album look
   ================================================================ */

:root {
  --paper: #fbf2e0;
  --paper-deep: #f5e8cf;
  --ink: #1d3050;
  --ink-soft: #4a5a78;
  --card: #fffdf8;
  --green: #169b62;
  --green-deep: #0e7a4c;
  --red: #e8504f;
  --blue: #2f86d4;
  --yellow: #ffc53d;
  --orange: #ff8a3d;
  --shadow: 5px 5px 0 rgba(29, 48, 80, 0.9);
  --shadow-sm: 3px 3px 0 rgba(29, 48, 80, 0.9);
  --radius: 14px;
  --font-display: "Lilita One", system-ui, sans-serif;
  --font-body: "Karla", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background-color: var(--paper);
  background-image:
    radial-gradient(rgba(29, 48, 80, 0.07) 1.2px, transparent 1.3px),
    radial-gradient(1200px 600px at 110% -10%, rgba(47, 134, 212, 0.10), transparent 60%),
    radial-gradient(1000px 500px at -10% 110%, rgba(22, 155, 98, 0.10), transparent 60%);
  background-size: 26px 26px, auto, auto;
  min-height: 100vh;
}

/* ---------- bunting flags across the very top ---------- */
.bunting {
  height: 26px;
  background: repeating-linear-gradient(90deg,
    var(--green) 0 52px,
    var(--card) 52px 104px,
    var(--red) 104px 156px,
    var(--yellow) 156px 208px,
    var(--blue) 208px 260px);
  -webkit-mask: conic-gradient(from -45deg at bottom, #0000, #000 1deg 89deg, #0000 90deg) 50% / 52px 100%;
          mask: conic-gradient(from -45deg at bottom, #0000, #000 1deg 89deg, #0000 90deg) 50% / 52px 100%;
}

/* ---------- header ---------- */
.site-header {
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 24px 0;
}

.header-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.kicker {
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--green-deep);
  animation: drop-in 0.55s cubic-bezier(.2,.9,.3,1.2) both;
}

.site-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 88px);
  line-height: 0.95;
  margin: 6px 0 4px;
  letter-spacing: 0.01em;
  text-shadow: 4px 4px 0 var(--yellow);
  animation: drop-in 0.55s 0.08s cubic-bezier(.2,.9,.3,1.2) both;
}

.title-year { color: var(--red); }

.subtitle {
  font-size: 17px;
  font-weight: 500;
  color: var(--ink-soft);
  animation: drop-in 0.55s 0.16s cubic-bezier(.2,.9,.3,1.2) both;
}

@keyframes drop-in {
  from { opacity: 0; transform: translateY(-14px); }
  to   { opacity: 1; transform: none; }
}

.header-badge {
  font-family: var(--font-display);
  font-size: 20px;
  background: var(--red);
  color: #fff;
  padding: 12px 20px;
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transform: rotate(2.5deg);
  animation: drop-in 0.55s 0.24s cubic-bezier(.2,.9,.3,1.2) both;
}
.header-badge small { display: block; font-family: var(--font-body); font-weight: 800; font-size: 11px; letter-spacing: .14em; opacity: .9; }

/* ---------- folder tabs ---------- */
.tabs {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin-top: 30px;
  padding: 0 14px;
  border-bottom: 3px solid var(--ink);
  flex-wrap: wrap;
}

.tab {
  position: relative;
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--ink-soft);
  background: var(--paper-deep);
  border: 3px solid var(--ink);
  border-bottom: none;
  border-radius: 14px 14px 0 0;
  padding: 9px 22px 8px;
  cursor: pointer;
  transition: background 0.12s ease, padding 0.12s ease, color 0.12s ease;
}
.tab:hover { background: var(--card); color: var(--ink); }
.tab.is-active {
  background: var(--yellow);
  color: var(--ink);
  font-size: 19px;
  padding: 13px 24px 10px;
}
.tab.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -3px;
  height: 3px;
  background: var(--yellow);
}

/* ---------- follow bar ---------- */
.follow-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 14px 4px 0;
  font-weight: 800;
}
.follow-label { font-family: var(--font-display); font-size: 17px; }
.follow-chips { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.follow-none { color: var(--ink-soft); font-weight: 700; font-style: italic; font-size: 14px; }

.follow-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--card);
  border: 2.5px solid var(--ink);
  border-radius: 999px;
  padding: 3px 6px 3px 5px;
  font-size: 13px; font-weight: 800;
  cursor: pointer;
  transition: transform .1s ease;
}
.follow-chip:hover { transform: translateY(-1px); }
.follow-chip img { width: 24px; height: 17px; object-fit: cover; border: 1.5px solid var(--ink); border-radius: 3px; }
.follow-chip .x { color: var(--red); font-weight: 800; padding: 0 3px; }

.picker-wrap { position: relative; }
.follow-pick-btn {
  font-family: var(--font-body); font-weight: 800; font-size: 13.5px;
  background: var(--blue); color: #fff;
  border: 2.5px solid var(--ink);
  border-radius: 999px;
  padding: 7px 15px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform .1s ease, box-shadow .1s ease;
}
.follow-pick-btn:hover { transform: translateY(-2px); }
.follow-pick-btn:active { transform: translate(2px,2px); box-shadow: 0 0 0 transparent; }

.team-picker {
  position: absolute;
  z-index: 1200;
  top: calc(100% + 10px);
  left: 0;
  width: min(640px, calc(100vw - 48px));
  max-height: 430px;
  overflow: auto;
  background: var(--card);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 14px;
}
.picker-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.picker-head h4 { font-family: var(--font-display); font-size: 16px; margin: 0; }
.picker-clear {
  font-weight: 800; font-size: 12px; color: var(--red);
  background: none; border: 2px solid var(--red); border-radius: 999px;
  padding: 3px 10px; cursor: pointer;
}
.picker-groups { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 12px; }
.picker-group h5 {
  margin: 0 0 6px;
  font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-soft);
}
.pick-team {
  display: flex; align-items: center; gap: 7px;
  width: 100%;
  font-family: var(--font-body); font-weight: 800; font-size: 13px;
  color: var(--ink);
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 9px;
  padding: 5px 8px;
  margin-bottom: 5px;
  cursor: pointer;
  text-align: left;
  transition: background .1s ease, transform .1s ease;
}
.pick-team:hover { transform: translateX(2px); }
.pick-team.is-on { background: var(--green); color: #fff; }
.pick-team.is-on .rank-pill { background: #fff; }
.pick-team img { width: 26px; height: 18px; object-fit: cover; border: 1.5px solid var(--ink); border-radius: 3px; }
.pick-team .pick-name { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.rank-hint { margin-left: auto; font-size: 11px; font-weight: 800; letter-spacing: .04em; color: var(--ink-soft); }

/* ---------- rank pills ---------- */
.rank-pill {
  display: inline-flex; align-items: center;
  font-size: 10.5px; font-weight: 800;
  background: var(--paper-deep);
  color: var(--ink-soft);
  border: 1.5px solid var(--ink-soft);
  border-radius: 999px;
  padding: 0.5px 6px;
  line-height: 1.5;
  vertical-align: 2px;
}
.rank-pill.r1 { background: #ffd84d; color: var(--ink); border-color: var(--ink); }
.rank-pill.r2 { background: #e3e6ea; color: var(--ink); border-color: var(--ink); }
.rank-pill.r3 { background: #f3c29b; color: var(--ink); border-color: var(--ink); }

/* ---------- views ---------- */
main { max-width: 1180px; margin: 0 auto; padding: 26px 24px 60px; }
.view { display: none; }
.view.is-active { display: block; animation: view-in 0.35s ease both; }
@keyframes view-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.panel-title {
  font-family: var(--font-display);
  font-size: 26px;
  margin: 0 0 14px;
}

.card-frame {
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  background: var(--card);
}

/* ---------- filter chips (intentionally lighter than the view tabs) ---------- */
.chip-row { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; margin-bottom: 22px; }
.chip-row-label {
  font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-soft);
  margin-right: 4px;
}

.chip {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 13px;
  padding: 6px 14px;
  background: transparent;
  color: var(--ink-soft);
  border: 2px solid var(--ink-soft);
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.12s ease, color .12s ease, border-color .12s ease;
}
.chip:hover { transform: translateY(-2px); color: var(--ink); border-color: var(--ink); }
.chip.is-active { background: var(--green); border-color: var(--ink); color: #fff; }
.chip:active { transform: translate(1px,1px); }

/* ---------- calendar layout ---------- */
.calendar-layout {
  display: grid;
  grid-template-columns: minmax(320px, 430px) 1fr;
  gap: 28px;
  align-items: start;
}

.month-grids { display: flex; flex-direction: column; gap: 22px; position: sticky; top: 18px; }

.month-card {
  background: var(--card);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px 16px 18px;
}
.month-name {
  font-family: var(--font-display);
  font-size: 22px;
  margin: 0 0 10px;
  display: flex; justify-content: space-between; align-items: baseline;
}
.month-name span { font-family: var(--font-body); font-size: 12px; font-weight: 800; letter-spacing: .12em; color: var(--ink-soft); }

.dow-row, .week-row { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; }
.dow-row { margin-bottom: 6px; }
.dow {
  text-align: center; font-size: 11px; font-weight: 800;
  letter-spacing: .08em; color: var(--ink-soft);
}
.week-row { margin-bottom: 5px; }

.day-cell {
  position: relative;
  aspect-ratio: 1 / 0.92;
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 4px 0 2px;
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  font-size: 13px; font-weight: 700;
  color: var(--ink-soft);
  background: transparent;
  cursor: default;
}
.day-cell.has-matches {
  background: #fff;
  border-color: var(--ink);
  color: var(--ink);
  cursor: pointer;
  transition: transform .1s ease, box-shadow .1s ease;
}
.day-cell.has-matches:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); z-index: 2; }
.day-cell.is-selected { background: var(--yellow); box-shadow: var(--shadow-sm); }
.day-cell.is-today { border-color: var(--red); border-style: dashed; }
.day-cell.is-today.is-selected, .day-cell.is-today.has-matches { border-style: solid; }
.day-cell.is-today::after {
  content: "today";
  position: absolute; top: -9px; right: -6px;
  background: var(--red); color: #fff;
  font-size: 8px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  padding: 1.5px 5px; border-radius: 99px; border: 1.5px solid var(--ink);
}
.day-count {
  font-size: 9.5px; font-weight: 800;
  background: var(--green); color: #fff;
  border-radius: 99px; padding: 1px 6px;
  line-height: 1.5;
}
.day-cell.is-knockout .day-count { background: var(--red); }
.day-cell.is-rest { opacity: .45; }

.cal-legend { display: flex; gap: 14px; margin-top: 10px; font-size: 11.5px; font-weight: 700; color: var(--ink-soft); }
.cal-legend i { display: inline-block; width: 10px; height: 10px; border-radius: 99px; margin-right: 5px; }

/* ---------- match cards ---------- */
.match-list { display: flex; flex-direction: column; gap: 14px; }

.date-divider {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--ink);
  margin: 10px 0 0;
  display: flex; align-items: center; gap: 10px;
}
.date-divider::after { content: ""; flex: 1; border-top: 3px dotted rgba(29,48,80,.3); }

.match-card {
  background: var(--card);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 14px 16px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 16px;
  align-items: center;
  transition: transform .12s ease, box-shadow .12s ease;
}
.match-card:hover { transform: translateY(-2px) rotate(-0.4deg); box-shadow: var(--shadow); }

.match-teams { display: flex; align-items: center; gap: 10px; font-size: 17px; font-weight: 800; flex-wrap: wrap; }
.match-teams .vs { font-family: var(--font-display); color: var(--red); font-size: 14px; }
.team-chip { display: inline-flex; align-items: center; gap: 7px; }
.team-chip img.flag {
  width: 30px; height: 21px; object-fit: cover;
  border: 2px solid var(--ink); border-radius: 4px;
  background: #eee;
}
.team-chip .placeholder-flag {
  width: 30px; height: 21px;
  border: 2px dashed var(--ink-soft); border-radius: 4px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; color: var(--ink-soft); background: var(--paper-deep);
}
.slot-name { color: var(--ink-soft); font-weight: 700; font-style: italic; font-size: 15px; }

.match-meta {
  grid-column: 1;
  display: flex; gap: 14px; flex-wrap: wrap;
  font-size: 13.5px; font-weight: 700; color: var(--ink-soft);
}
.match-meta .city-link { color: var(--blue); cursor: pointer; text-decoration: underline; text-decoration-style: wavy; text-decoration-thickness: 1px; text-underline-offset: 3px; }

.match-time {
  grid-row: 1 / span 2; grid-column: 2;
  text-align: right;
}
.match-time .big { font-family: var(--font-display); font-size: 21px; line-height: 1; }
.match-time .tz { font-size: 11.5px; font-weight: 800; color: var(--ink-soft); letter-spacing: .04em; }

.stage-tag {
  display: inline-block;
  font-size: 10.5px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  border: 2px solid var(--ink); border-radius: 6px;
  padding: 2px 7px;
  background: var(--paper-deep);
  margin-right: 4px;
}
.stage-tag.group-A { background: #d9f0e4; } .stage-tag.group-B { background: #dbeafc; }
.stage-tag.group-C { background: #ffe9d4; } .stage-tag.group-D { background: #ffe1e1; }
.stage-tag.group-E { background: #f3e4ff; } .stage-tag.group-F { background: #fff5cc; }
.stage-tag.group-G { background: #d9f0e4; } .stage-tag.group-H { background: #dbeafc; }
.stage-tag.group-I { background: #ffe9d4; } .stage-tag.group-J { background: #ffe1e1; }
.stage-tag.group-K { background: #f3e4ff; } .stage-tag.group-L { background: #fff5cc; }
.stage-tag.knockout { background: var(--yellow); }
.stage-tag.final { background: var(--red); color: #fff; }

.empty-note {
  background: var(--paper-deep);
  border: 3px dashed var(--ink-soft);
  border-radius: var(--radius);
  padding: 26px;
  text-align: center;
  font-weight: 700;
  color: var(--ink-soft);
}

/* ---------- map view ---------- */
.map-layout {
  display: grid;
  grid-template-columns: 1.65fr 1fr;
  gap: 24px;
  align-items: start;
}
.map-wrap { position: relative; }
#bigMap { height: 600px; }

.city-panel { min-height: 200px; }
.city-panel-empty {
  border: 3px dashed var(--ink-soft);
  border-radius: var(--radius);
  padding: 40px 24px;
  text-align: center;
  color: var(--ink-soft);
  font-weight: 700;
  background: var(--paper-deep);
}
.big-emoji { font-size: 42px; margin-bottom: 6px; }

.city-card-header {
  background: var(--blue);
  color: #fff;
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px 18px;
  margin-bottom: 16px;
  transform: rotate(-0.6deg);
}
.city-card-header h3 { font-family: var(--font-display); font-size: 24px; margin: 0; }
.city-card-header .stadium-line { font-weight: 700; font-size: 14px; opacity: .95; }
.city-matches { display: flex; flex-direction: column; gap: 12px; max-height: 520px; overflow: auto; padding: 4px; }

/* leaflet customization */
.leaflet-container { font-family: var(--font-body); background: #cfe7f3; }

.city-badge {
  background: var(--card);
  border: 2.5px solid var(--ink);
  border-radius: 999px;
  box-shadow: 3px 3px 0 rgba(29,48,80,.85);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 12px;
  color: var(--ink);
  display: flex; align-items: center; gap: 5px;
  padding: 3px 9px 3px 6px;
  white-space: nowrap;
  width: max-content !important;
  transition: transform .1s ease;
  cursor: pointer;
}
.city-badge:hover { transform: scale(1.07); z-index: 1000 !important; }
.city-badge .dot {
  background: var(--green); color: #fff;
  border-radius: 99px;
  font-size: 10.5px;
  padding: 1px 6px;
  border: 1.5px solid var(--ink);
}
.city-badge.is-active { background: var(--yellow); }
.city-badge.is-dim { opacity: 0.4; }

.stop-badge {
  background: var(--red);
  color: #fff;
  border: 2.5px solid var(--ink);
  border-radius: 999px;
  box-shadow: 3px 3px 0 rgba(29,48,80,.85);
  font-family: var(--font-display);
  font-size: 15px;
  display: flex; align-items: center; justify-content: center;
  width: 30px !important; height: 30px !important;
}
.stop-badge.is-final { background: var(--yellow); color: var(--ink); width: 38px !important; height: 38px !important; font-size: 19px; }
.stop-badge.is-multi { width: max-content !important; height: 30px !important; padding: 0 10px; }
.stop-badge .stop-multi { font-family: var(--font-body); font-weight: 800; font-size: 12.5px; letter-spacing: .04em; }

.leaflet-popup-content-wrapper {
  border: 3px solid var(--ink);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  font-weight: 700;
}

.path-line {
  stroke-dasharray: 10 12;
  animation: march 1.2s linear infinite;
}
@keyframes march { to { stroke-dashoffset: -22; } }

/* ---------- path view ---------- */
.path-controls {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  margin-bottom: 20px;
  font-size: 18px; font-weight: 800;
}
.path-label { font-family: var(--font-display); font-size: 20px; }

.team-select {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 16px;
  padding: 9px 14px;
  border: 3px solid var(--ink);
  border-radius: 12px;
  background: var(--card);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  color: var(--ink);
}

.seed-toggle {
  display: inline-flex;
  border: 2.5px solid var(--ink);
  border-radius: 999px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--card);
}
.seed-btn {
  font-family: var(--font-body); font-weight: 800; font-size: 13px;
  border: none; background: transparent; color: var(--ink);
  padding: 8px 14px; cursor: pointer;
}
.seed-btn.is-active { background: var(--green); color: #fff; }

.path-map-wrap { margin-bottom: 26px; }
#pathMap { height: 480px; }

.path-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(195px, 1fr));
  gap: 18px;
  counter-reset: stop;
}

.leg-card {
  position: relative;
  background: var(--card);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 38px 14px 14px;
  transition: transform .12s ease, box-shadow .12s ease;
  animation: drop-in .4s both;
}
.leg-card:nth-child(odd) { transform: rotate(-0.7deg); }
.leg-card:nth-child(even) { transform: rotate(0.7deg); }
.leg-card:hover { transform: translateY(-4px) rotate(0deg); box-shadow: var(--shadow); z-index: 2; }
.leg-card.is-final-card { background: #fff8e0; border-width: 4px; }

.leg-num {
  counter-increment: stop;
  position: absolute; top: -14px; left: 12px;
  background: var(--red); color: #fff;
  font-family: var(--font-display); font-size: 15px;
  border: 2.5px solid var(--ink); border-radius: 99px;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
}
.leg-num::before { content: counter(stop); }
.is-final-card .leg-num { background: var(--yellow); color: var(--ink); }

.leg-round {
  position: absolute; top: -12px; right: 10px;
  font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  background: var(--blue); color: #fff;
  border: 2px solid var(--ink); border-radius: 6px;
  padding: 3px 8px;
}
.is-final-card .leg-round { background: var(--red); }

.leg-date { font-weight: 800; font-size: 12.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--green-deep); }
.leg-opp { font-size: 15.5px; font-weight: 800; margin: 5px 0 7px; min-height: 40px; display:flex; align-items:center; gap:8px; flex-wrap: wrap; }
.leg-opp img.flag { width: 26px; height: 18px; object-fit: cover; border: 2px solid var(--ink); border-radius: 3px; }
.leg-opp .maybe { color: var(--ink-soft); font-style: italic; font-weight: 700; font-size: 13.5px; }
.leg-place { font-size: 13px; font-weight: 700; color: var(--ink-soft); }
.leg-place b { color: var(--ink); }
.leg-rest {
  margin-top: 9px;
  font-size: 11px; font-weight: 800; letter-spacing: .05em;
  color: var(--orange);
}

/* ---------- footer ---------- */
.site-footer {
  text-align: center;
  font-weight: 700;
  color: var(--ink-soft);
  padding: 26px 20px 40px;
  font-size: 13.5px;
}

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .calendar-layout, .map-layout { grid-template-columns: 1fr; }
  .month-grids { position: static; flex-direction: row; flex-wrap: wrap; }
  .month-card { flex: 1 1 300px; }
  #bigMap { height: 440px; }
}
@media (max-width: 640px) {
  .tabs { gap: 5px; padding: 0 6px; }
  .tab { font-size: 13px; padding: 8px 10px 7px; border-width: 2.5px; }
  .tab.is-active { font-size: 14px; padding: 11px 12px 8px; }
  .tab.is-active::after { bottom: -3px; height: 3px; }
  .rank-hint { margin-left: 0; }
}
@media (max-width: 560px) {
  .site-title { text-shadow: 3px 3px 0 var(--yellow); }
  #bigMap { height: 360px; }
  #pathMap { height: 340px; }
  .match-time { grid-row: auto; grid-column: 1; text-align: left; }
}
