:root {
  color-scheme: dark;
  --ink: #202653;
  --panel: rgba(31, 37, 82, .72);
  --panel-2: rgba(36, 43, 94, .80);
  --paper: #fbfbff;
  --muted: #b9bdd7;
  --line: rgba(255,255,255,.15);
  --cyan: #73e6ec;
  --pink: #ff55ac;
  --yellow: #ffd84d;
  --purple: #8b7cff;
  --green: #83f0b5;
  --danger: #ff846f;
  --shadow: 0 24px 70px rgba(1, 4, 20, .35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 82% 12%, rgba(255,85,172,.3), transparent 29rem),
    radial-gradient(circle at 13% 22%, rgba(115,230,236,.24), transparent 33rem),
    linear-gradient(145deg, #252c60, #171c43 58%, #342b64),
    var(--ink);
  color: var(--paper);
  font-family: "Hiragino Sans", "Yu Gothic", "YuGothic", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  z-index: 0;
  top: 0;
  right: -3vw;
  bottom: 0;
  width: min(54vw, 780px);
  pointer-events: none;
  background: url("./assets/hero-chibi-transparent.png") no-repeat right center / contain;
  opacity: .22;
  filter: saturate(1.18) brightness(1.03) drop-shadow(0 18px 60px rgba(8, 7, 37, .26));
  -webkit-mask-image: linear-gradient(to right, transparent 0, rgba(0,0,0,.72) 16%, #000 36%);
  mask-image: linear-gradient(to right, transparent 0, rgba(0,0,0,.72) 16%, #000 36%);
}

.site-header, main, footer { position: relative; z-index: 1; }

button, input, select { font: inherit; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 100;
  padding: .7rem 1rem;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 0 0 .7rem .7rem;
  font-weight: 800;
}
.skip-link:focus { top: 0; }

.site-header {
  width: min(1400px, calc(100% - 48px));
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--yellow);
  color: #342400;
  font-size: .72rem;
  font-weight: 900;
  box-shadow: inset -7px -2px 0 rgba(255,85,172,.35);
}
.brand b {
  display: block;
  letter-spacing: .04em;
  font-size: 1rem;
}
.brand small {
  display: block;
  color: var(--cyan);
  font-size: .64rem;
  letter-spacing: .16em;
  line-height: 1.2;
}
.site-header nav { display: flex; gap: 1.6rem; }
.site-header nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: .85rem;
  font-weight: 700;
  border-bottom: 1px solid transparent;
}
.site-header nav a:hover, .site-header nav a:focus-visible {
  color: var(--paper);
  border-bottom-color: var(--cyan);
}

main { width: min(1400px, calc(100% - 48px)); margin: 0 auto; }
.intro {
  position: relative;
  min-height: 430px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(310px, .85fr);
  align-items: center;
  gap: 4rem;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.intro::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .2;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, black, transparent 73%);
}
.intro-copy { position: relative; z-index: 2; padding: 2.6rem 0 2.2rem; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin: 0 0 1rem;
  color: var(--cyan);
  font-weight: 900;
  letter-spacing: .12em;
}
.eyebrow span {
  display: inline-block;
  padding: .24rem .65rem;
  color: #251c00;
  background: var(--yellow);
  border-radius: 999px;
  font-size: .78rem;
  letter-spacing: .08em;
}
h1, h2, p { margin-top: 0; }
h1 {
  margin-bottom: .75rem;
  font-size: clamp(2.4rem, 5vw, 5.2rem);
  line-height: .98;
  letter-spacing: -.065em;
  font-weight: 900;
}
h1 em { color: var(--pink); font-style: normal; }
.lead {
  max-width: 44rem;
  margin-bottom: 1.6rem;
  color: #d9dcf0;
  font-weight: 600;
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(100px, 1fr));
  max-width: 740px;
  margin: 0;
  border: 1px solid var(--line);
  background: rgba(18,22,56,.84);
  box-shadow: var(--shadow);
}
.stats div { padding: .75rem 1rem .8rem; border-right: 1px solid var(--line); }
.stats div:last-child { border-right: 0; }
.stats dt { color: var(--muted); font-size: .76rem; font-weight: 800; }
.stats dd { margin: .05rem 0 0; font-size: 1.8rem; line-height: 1; font-weight: 900; }
.stats small { margin-left: .15rem; color: var(--muted); font-size: .7rem; }
.stats .stat-safe dd { color: var(--green); }

.character-panel {
  position: relative;
  align-self: stretch;
  min-height: 430px;
  margin: 0;
  overflow: hidden;
  border-left: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 48%, rgba(255,216,77,.3), transparent 36%),
    linear-gradient(135deg, rgba(41,48,103,.72) 0 50%, rgba(25,30,72,.58) 50% 100%);
  backdrop-filter: blur(8px);
}
.character-panel::after {
  content: "KAGUYA / YACHIYO / IROHA";
  position: absolute;
  right: .7rem;
  top: 1.3rem;
  z-index: 2;
  color: rgba(251,251,255,.62);
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .13em;
  writing-mode: vertical-rl;
}
.character-panel img {
  position: absolute;
  z-index: 1;
  inset: 4% 2% 0;
  width: 96%;
  height: 96%;
  object-fit: contain;
  object-position: 50% 50%;
  opacity: .96;
  filter: saturate(1.08) brightness(1.02) drop-shadow(0 18px 34px rgba(2, 5, 28, .34));
}
.character-panel figcaption {
  position: absolute;
  z-index: 3;
  right: 1.5rem;
  bottom: 1.2rem;
  padding: .35rem .7rem;
  color: #15112c;
  background: rgba(255,255,255,.9);
  font-size: .72rem;
  font-weight: 800;
}
.sun-disc {
  position: absolute;
  z-index: 2;
  top: -85px;
  left: -85px;
  width: 170px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 18px solid var(--pink);
  opacity: .84;
}

.notice {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  gap: 2rem;
  align-items: center;
  margin: 1.5rem 0 3rem;
  padding: 1.15rem 1.35rem;
  color: #20233e;
  background: var(--cyan);
  border: 3px solid #23284e;
  box-shadow: 8px 8px 0 var(--pink);
}
.notice p { margin-bottom: 0; }
.notice-main { display: flex; align-items: center; gap: 1rem; }
.notice-main strong { font-size: 1.04rem; }
.notice-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 40px;
  aspect-ratio: 1;
  color: #fff;
  background: #24294d;
  border-radius: 50%;
  font-weight: 900;
}
.notice-sub { padding-left: 1.5rem; border-left: 1px solid rgba(32,35,62,.3); font-size: .78rem; font-weight: 700; }

.forecast {
  margin: 0 0 3.5rem;
  padding: 1.6rem;
  background: rgba(23,28,66,.74);
  border: 1px solid var(--line);
  backdrop-filter: blur(15px);
  box-shadow: var(--shadow);
}
.forecast-heading { display: flex; align-items: end; justify-content: space-between; gap: 1rem; margin-bottom: 1.2rem; }
.forecast-stamp { color: var(--muted); font-size: .74rem; font-weight: 800; }
.booking-callout {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 1.2rem;
  color: #1d2142;
  background: var(--yellow);
  border-left: 7px solid var(--pink);
}
.booking-callout p { margin: 0; font-size: .86rem; font-weight: 700; }
.booking-callout p:first-child { display: flex; flex-direction: column; }
.booking-callout span { font-size: .7rem; font-weight: 900; letter-spacing: .08em; }
.booking-callout strong { font-size: 1.45rem; line-height: 1.2; letter-spacing: .02em; }
.demand-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 1rem 0;
  padding: 0;
  list-style: none;
  border: 1px solid var(--line);
}
.demand-timeline li { position: relative; min-height: 112px; padding: .85rem; background: rgba(13,17,45,.68); border-right: 1px solid var(--line); }
.demand-timeline li:last-child { border-right: 0; }
.demand-timeline li::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 3px; background: var(--cyan); opacity: .6; }
.demand-timeline li.is-peak::before { width: 5px; background: var(--pink); opacity: 1; }
.demand-timeline time, .demand-timeline strong, .demand-timeline span { display: block; }
.demand-timeline time { color: var(--cyan); font-size: .72rem; font-weight: 900; }
.demand-timeline .is-peak time { color: var(--pink); }
.demand-timeline strong { margin: .18rem 0; font-size: .92rem; }
.demand-timeline span { color: var(--muted); font-size: .7rem; font-weight: 700; }
.forecast-evidence { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(270px, .7fr); gap: 1.5rem; align-items: center; }
.forecast-evidence p { margin: 0; color: #d9dcf0; font-size: .85rem; }
.forecast-key { display: grid; gap: .38rem; padding-left: 1.2rem; border-left: 1px solid var(--line); color: var(--muted); font-size: .72rem; font-weight: 800; }
.forecast-key span { display: flex; align-items: center; gap: .55rem; }
.risk-dot { width: 9px; height: 9px; border-radius: 50%; }
.risk-dot.peak { background: var(--pink); box-shadow: 0 0 0 4px rgba(255,85,172,.12); }
.risk-dot.busy { background: var(--yellow); }
.risk-dot.steady { background: var(--cyan); }
.forecast-caution { margin: 1rem 0 0; padding-top: .8rem; border-top: 1px solid var(--line); color: #8f95b8; font-size: .68rem; }

.finder { scroll-margin-top: 1rem; }
.finder-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.3rem;
}
.section-number { margin-bottom: .2rem; color: var(--cyan); font-size: .7rem; font-weight: 900; letter-spacing: .17em; }
h2 { margin-bottom: 0; font-size: clamp(1.8rem, 3vw, 2.8rem); line-height: 1.2; letter-spacing: -.045em; }
.updated { margin-bottom: .3rem; color: var(--muted); font-size: .78rem; font-weight: 700; }

.controls {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) 190px auto;
  gap: .7rem;
  padding: .85rem;
  background: rgba(25, 30, 70, .76);
  backdrop-filter: blur(16px);
  border: 1px solid var(--line);
  border-radius: 1rem 1rem 0 0;
}
.search-field, .select-field {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 48px;
  color: var(--muted);
  background: #0c102b;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: .65rem;
}
.search-field > span:not(.sr-only) { padding-left: .9rem; font-size: 1.45rem; transform: rotate(-18deg); }
.search-field input, .select-field select {
  width: 100%;
  height: 100%;
  min-height: 48px;
  padding: 0 .9rem;
  color: var(--paper);
  background: transparent;
  border: 0;
  outline: 0;
  font-size: .9rem;
  font-weight: 700;
}
.search-field:focus-within, .select-field:focus-within { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(115,230,236,.14); }
.select-field select { appearance: none; cursor: pointer; padding-right: 2.4rem; }
.select-field::after { content: "⌄"; position: absolute; right: .9rem; pointer-events: none; color: var(--cyan); font-weight: 900; }
.status-filter {
  display: inline-flex;
  gap: .25rem;
  padding: .25rem;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: .65rem;
  background: #0c102b;
}
.filter-button {
  min-height: 40px;
  padding: 0 .72rem;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: .48rem;
  cursor: pointer;
  font-size: .78rem;
  font-weight: 800;
  white-space: nowrap;
}
.filter-button:hover { color: var(--paper); }
.filter-button:focus-visible { outline: 2px solid var(--yellow); outline-offset: 1px; }
.filter-button.is-active { color: #15182f; background: var(--yellow); }

.result-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 58px;
  padding: 0 1rem;
  background: var(--panel-2);
  border-inline: 1px solid var(--line);
}
.result-bar p { display: flex; align-items: baseline; gap: .35rem; margin-bottom: 0; }
.result-bar strong { color: var(--yellow); font-size: 1.5rem; }
.result-bar p span { color: var(--muted); font-size: .78rem; font-weight: 700; }
.legend { display: flex; gap: 1.3rem; color: var(--muted); font-size: .74rem; font-weight: 700; }
.legend > span { display: inline-flex; align-items: center; gap: .4rem; }
.legend-dot { width: 8px; height: 8px; border-radius: 50%; }
.legend-dot.online { background: var(--green); }
.legend-dot.counter { background: var(--yellow); }
.legend-pin { color: var(--cyan); font-size: 1rem; font-style: normal; line-height: 1; }

.table-shell {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 0 0 1rem 1rem;
  background: rgba(25, 30, 69, .70);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}
table { width: 100%; min-width: 1490px; border-collapse: separate; border-spacing: 0; font-size: .8rem; }
th, td { padding: .8rem .72rem; text-align: center; border-bottom: 1px solid rgba(255,255,255,.1); }
th {
  position: sticky;
  top: 0;
  z-index: 3;
  color: #d3d6ec;
  background: #202650;
  font-size: .7rem;
  line-height: 1.35;
  letter-spacing: .03em;
}
th:nth-child(1), td:nth-child(1) { width: 92px; text-align: left; }
th:nth-child(2), td:nth-child(2) { width: 260px; text-align: left; }
th:nth-child(3), td:nth-child(3) { width: 104px; }
th:nth-child(4), td:nth-child(4) { width: 142px; }
th:nth-child(5), td:nth-child(5) { width: 160px; }
th.ticket-col, td.ticket-col { width: 148px; }
tbody tr { transition: background .16s ease; }
tbody tr:hover { background: rgba(115,230,236,.055); }
tbody tr:last-child td { border-bottom: 0; }
td.prefecture { color: var(--cyan); font-weight: 800; }
.theater-link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: var(--paper);
  text-decoration: none;
  font-weight: 800;
  line-height: 1.45;
}
.theater-link::after { content: "↗"; color: var(--cyan); font-size: .72rem; }
.theater-link:hover, .theater-link:focus-visible { color: var(--yellow); text-decoration: underline; text-underline-offset: 3px; }
.theater-name-cell { vertical-align: middle; }
.map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .24rem;
  min-height: 30px;
  margin-top: .42rem;
  padding: .2rem .52rem;
  color: var(--cyan);
  background: rgba(115,230,236,.08);
  border: 1px solid rgba(115,230,236,.42);
  border-radius: 999px;
  text-decoration: none;
  font-size: .68rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}
.map-link span { font-size: .92rem; }
.map-link:hover, .map-link:focus-visible {
  color: #15182f;
  background: var(--cyan);
  outline: none;
}
.booking-cell strong, .booking-cell small, .crowd-cell small { display: block; }
.booking-cell strong { color: var(--paper); font-size: .76rem; }
.booking-cell small, .crowd-cell small { margin-top: .2rem; color: var(--muted); font-size: .61rem; line-height: 1.35; }
.risk-badge { display: inline-flex; padding: .32rem .55rem; border-radius: .35rem; font-size: .68rem; font-weight: 900; white-space: nowrap; }
.risk-badge.peak, .risk-text.peak { color: #ff72b8; background: rgba(255,85,172,.12); }
.risk-badge.busy, .risk-text.busy { color: var(--yellow); background: rgba(255,216,77,.1); }
.risk-badge.steady, .risk-text.steady { color: var(--cyan); background: rgba(115,230,236,.08); }
.format-yes { color: var(--pink); font-size: 1rem; font-weight: 900; }
.format-no { color: #515775; }
.ticket-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .38rem .62rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 900;
  line-height: 1.2;
  white-space: nowrap;
}
.ticket-badge::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.ticket-badge.online { color: var(--green); background: rgba(131,240,181,.08); }
.ticket-badge.counter { color: var(--yellow); background: rgba(255,216,77,.08); }
.ticket-badge.unavailable { color: var(--danger); background: rgba(255,132,111,.08); }
.ticket-note { display: block; margin-top: .22rem; color: var(--muted); font-size: .62rem; }
.mobile-list { display: none; }

.empty-state {
  padding: 5rem 1rem;
  text-align: center;
  background: rgba(25, 30, 70, .82);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: 0 0 1rem 1rem;
}
.empty-state span { color: var(--yellow); font-size: 3rem; }
.empty-state p { margin-bottom: 1rem; color: var(--muted); }
.empty-state button {
  padding: .7rem 1rem;
  color: var(--ink);
  background: var(--cyan);
  border: 0;
  border-radius: .55rem;
  cursor: pointer;
  font-weight: 900;
}

.counter-only {
  display: grid;
  grid-template-columns: minmax(270px, .7fr) minmax(0, 1.3fr);
  gap: 4rem;
  margin: 5rem 0;
  padding: 2.2rem;
  border: 1px solid var(--line);
  background: rgba(27, 31, 67, .76);
  backdrop-filter: blur(16px);
  box-shadow: inset 8px 0 0 var(--yellow);
}
.counter-only > div > p:last-child { max-width: 34rem; margin-top: 1rem; margin-bottom: 0; color: var(--muted); }
.counter-only ol { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .6rem 1.4rem; margin: 0; padding: 0; list-style: none; counter-reset: theater; }
.counter-only li { position: relative; counter-increment: theater; border-bottom: 1px solid var(--line); }
.counter-only .counter-theater { display: grid; grid-template-columns: 2rem 1fr; padding: .75rem 4.2rem .75rem 0; text-decoration: none; font-size: .9rem; font-weight: 800; }
.counter-only .counter-theater::before { content: "0" counter(theater); color: var(--pink); font-size: .7rem; padding-top: .15rem; }
.counter-only small { display: block; color: var(--muted); font-size: .7rem; font-weight: 600; }
.counter-only .counter-theater:hover strong, .counter-only .counter-theater:focus-visible strong { color: var(--cyan); }
.counter-only .counter-map { position: absolute; right: 0; top: .78rem; margin-top: 0; }

footer {
  width: min(1400px, calc(100% - 48px));
  margin: 0 auto;
  padding: 1.8rem 0 2.4rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .74rem;
}
footer p { max-width: 60rem; margin-bottom: .45rem; }
.copyright { color: #9ca1be; }

@media (max-width: 1120px) {
  .intro { grid-template-columns: minmax(0, 1fr) 380px; gap: 2rem; }
  .controls { grid-template-columns: 1fr 190px; }
  .status-filter { grid-column: 1 / -1; }
  .filter-button { flex: 1; }
}

@media (max-width: 800px) {
  .site-header, main, footer { width: min(100% - 28px, 680px); }
  .site-header { min-height: 70px; }
  .site-header nav { display: none; }
  .intro { min-height: 0; grid-template-columns: 1fr; gap: 0; }
  .intro-copy { padding: 2rem 0 1.25rem; }
  h1 { font-size: clamp(2.6rem, 12vw, 4.3rem); }
  .lead { font-size: .94rem; }
  .character-panel { display: none; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stats div:nth-child(2) { border-right: 0; }
  .stats div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .notice { grid-template-columns: 1fr; gap: 1rem; padding: 1rem; margin-bottom: 2.5rem; }
  .notice-sub { padding: .8rem 0 0; border-left: 0; border-top: 1px solid rgba(32,35,62,.3); }
  .forecast { margin-bottom: 2.8rem; padding: 1.15rem; }
  .booking-callout { grid-template-columns: 1fr; gap: .45rem; padding: .9rem 1rem; }
  .demand-timeline { grid-template-columns: 1fr; }
  .demand-timeline li { min-height: 0; padding: .68rem .8rem .68rem 1rem; border-right: 0; border-bottom: 1px solid var(--line); }
  .demand-timeline li:last-child { border-bottom: 0; }
  .demand-timeline time { float: left; width: 5.6rem; }
  .demand-timeline strong, .demand-timeline span { margin-left: 5.6rem; }
  .demand-timeline strong { margin-top: 0; }
  .forecast-evidence { grid-template-columns: 1fr; gap: .9rem; }
  .forecast-key { padding: .8rem 0 0; border-left: 0; border-top: 1px solid var(--line); }
  .controls { grid-template-columns: 1fr; border-radius: .85rem .85rem 0 0; }
  .status-filter { grid-column: auto; overflow-x: auto; }
  .filter-button { flex: 0 0 auto; }
  .legend { display: none; }
  .table-shell { display: none; }
  .mobile-list { display: grid; gap: .7rem; padding: .75rem; background: var(--panel); border: 1px solid var(--line); border-radius: 0 0 1rem 1rem; }
  .theater-card { padding: 1rem; background: rgba(25,30,68,.9); border: 1px solid rgba(255,255,255,.12); border-radius: .8rem; }
  .card-top { display: flex; justify-content: space-between; align-items: start; gap: 1rem; }
  .card-pref { margin-bottom: .15rem; color: var(--cyan); font-size: .7rem; font-weight: 900; }
  .card-name { margin-bottom: 0; font-size: .98rem; font-weight: 900; line-height: 1.45; }
  .card-date { margin: .65rem 0; color: var(--muted); font-size: .76rem; }
  .card-outlook { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .5rem; margin-bottom: .75rem; }
  .card-outlook p { display: flex; flex-direction: column; gap: .12rem; margin: 0; padding: .65rem; background: rgba(36,42,83,.72); border-radius: .55rem; }
  .card-outlook span, .card-outlook small { color: var(--muted); font-size: .62rem; font-weight: 700; line-height: 1.35; }
  .card-outlook strong { font-size: .78rem; }
  .card-outlook .risk-text { align-self: flex-start; padding: .12rem .3rem; border-radius: .25rem; }
  .card-formats { display: flex; flex-wrap: wrap; gap: .35rem; }
  .card-formats span { padding: .2rem .45rem; color: #e7e8f5; background: #252b55; border-radius: .3rem; font-size: .64rem; font-weight: 800; }
  .card-links { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: .85rem; padding-top: .75rem; border-top: 1px solid rgba(255,255,255,.1); }
  .card-links .theater-link, .card-links .map-link { min-height: 40px; margin-top: 0; padding: .45rem .72rem; border-radius: .55rem; font-size: .76rem; }
  .card-links .theater-link { color: var(--paper); background: #252b55; border: 1px solid rgba(255,255,255,.14); }
  .counter-only { grid-template-columns: 1fr; gap: 1.8rem; margin: 3.5rem 0; padding: 1.6rem 1.3rem 1.6rem 1.5rem; }
  .counter-only ol { grid-template-columns: 1fr; }
}

@media (max-width: 800px) {
  body::before {
    right: -22vw;
    width: min(112vw, 650px);
    background-position: right center;
    background-size: contain;
    opacity: .18;
    -webkit-mask-image: linear-gradient(to right, transparent 0, rgba(0,0,0,.72) 15%, #000 34%);
    mask-image: linear-gradient(to right, transparent 0, rgba(0,0,0,.72) 15%, #000 34%);
  }
}

@media (max-width: 460px) {
  .brand-mark { width: 38px; }
  .finder-heading { align-items: start; }
  .updated { max-width: 5rem; text-align: right; line-height: 1.3; }
  .card-top { flex-direction: column; gap: .6rem; }
  .ticket-badge { align-self: flex-start; }
  .card-outlook { grid-template-columns: 1fr; }
}

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