:root {
  --ink: #080808;
  --panel: #11110f;
  --panel-soft: #171714;
  --paper: #f3efe5;
  --muted: #aaa69b;
  --line: rgba(243, 239, 229, 0.16);
  --gold: #ffc928;
  --gold-dark: #a67a00;
  --red: #ff304a;
  --red-dark: #9f1426;
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --body: "Noto Sans", "Noto Sans SC", "Noto Sans JP", "Noto Sans KR",
    "Noto Sans Arabic", sans-serif;
  --max: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 72% 15%, rgba(255, 48, 74, 0.08), transparent 24%),
    radial-gradient(circle at 18% 24%, rgba(255, 201, 40, 0.05), transparent 23%),
    var(--ink);
  color: var(--paper);
  font-family: var(--body);
  min-width: 320px;
  overflow-x: hidden;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  z-index: 99;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 76px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(8, 8, 8, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: max-content;
}

.brand-mark {
  position: relative;
  display: flex;
  width: 38px;
  height: 38px;
  transform: rotate(45deg);
  border: 1px solid var(--line);
  overflow: hidden;
}

.brand-mark span {
  flex: 1;
  display: grid;
  place-items: center;
  font: 800 16px/1 var(--display);
  transform: rotate(-45deg);
}

.brand-mark span:first-child {
  color: var(--gold);
}

.brand-mark span:last-child {
  color: var(--red);
}

.brand-name {
  font: 800 24px/1 var(--display);
  letter-spacing: 0.04em;
}

.brand-name > span {
  color: var(--gold);
}

.desktop-nav {
  display: flex;
  height: 76px;
  align-items: center;
  gap: 38px;
  color: var(--muted);
  font: 700 13px/1 var(--body);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav a {
  position: relative;
  display: grid;
  height: 100%;
  place-items: center;
}

.desktop-nav a::after {
  position: absolute;
  bottom: -1px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  content: "";
  transition: 180ms ease;
  transform: translateX(-50%);
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--paper);
}

.desktop-nav a.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}

.live-orbit {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.live-orbit i,
.live-pill i,
.story-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(255, 48, 74, 0.12);
  animation: livePulse 1.8s infinite;
}

@keyframes livePulse {
  50% {
    box-shadow: 0 0 0 9px rgba(255, 48, 74, 0);
  }
}

.language-trigger {
  display: flex;
  height: 40px;
  align-items: center;
  gap: 9px;
  padding: 0 12px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
}

.language-trigger:hover {
  border-color: var(--paper);
}

.breaking-ticker {
  height: 40px;
  display: flex;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 48, 74, 0.35);
  background: var(--red);
  color: var(--paper);
}

.ticker-label {
  position: relative;
  z-index: 2;
  display: grid;
  min-width: 130px;
  place-items: center;
  background: var(--paper);
  color: var(--ink);
  font: 900 14px/1 var(--display);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: skewX(-10deg);
  transform-origin: left;
}

.ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 60px;
  white-space: nowrap;
  animation: ticker 24s linear infinite;
}

.ticker-track p {
  margin: 0;
  font: 800 13px/1 var(--body);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

.court {
  border-bottom: 1px solid var(--line);
}

.court-grid {
  display: grid;
  max-width: var(--max);
  min-height: calc(100vh - 116px);
  grid-template-columns: minmax(0, 1fr) 380px;
  margin: 0 auto;
}

.hero-panel {
  min-width: 0;
  padding: 36px 54px 42px 24px;
  border-right: 1px solid var(--line);
}

.pulse-panel {
  padding: 36px 24px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 28px 28px;
}

.match-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.live-pill {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--paper);
}

.live-pill:not(:has(i)) {
  color: var(--gold);
}

#stories,
#rankings,
.next-case,
.mobile-nav a[href="#stories"],
.mobile-nav a[href="#rankings"] {
  display: none;
}

.fan-zone {
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    #0b0b0a;
  background-size: 32px 32px;
}

.fan-zone-shell {
  max-width: 900px;
  margin: 0 auto;
  padding: 72px 24px 90px;
}

.fan-zone-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 28px;
}

.fan-zone-heading h2 {
  margin: 5px 0 0;
  font: 900 clamp(52px, 7vw, 88px)/0.86 var(--display);
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.fan-identity {
  flex: 0 0 auto;
  padding: 12px 15px;
  border: 1px solid var(--line);
  text-align: right;
}

.fan-identity span,
.fan-identity strong {
  display: block;
}

.fan-identity span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.fan-identity strong {
  margin-top: 5px;
  color: var(--gold);
  font: 800 18px/1 var(--display);
  letter-spacing: 0.08em;
}

.comment-composer {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--line);
  background: rgba(17, 17, 15, 0.94);
}

.person-topic {
  position: relative;
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  margin-bottom: 18px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 48, 74, 0.48);
  background:
    linear-gradient(115deg, rgba(255, 48, 74, 0.14), transparent 48%),
    var(--panel);
}

.person-topic::after {
  position: absolute;
  top: -70px;
  right: 12%;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(255, 48, 74, 0.18);
  border-radius: 50%;
  content: "";
}

.person-topic-avatar {
  position: relative;
  display: grid;
  width: 94px;
  height: 94px;
  place-items: center;
  border: 2px solid var(--red);
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  font: 900 39px/1 var(--display);
  box-shadow: 10px 8px 0 rgba(255, 48, 74, 0.25);
}

.person-topic-avatar i {
  position: absolute;
  right: -5px;
  bottom: 7px;
  width: 18px;
  height: 18px;
  border: 4px solid var(--panel);
  border-radius: 50%;
  background: var(--gold);
}

.person-topic-copy {
  position: relative;
  z-index: 1;
}

.person-topic-label {
  color: var(--red);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.person-topic-copy h3 {
  margin: 5px 0 8px;
  font: 900 clamp(34px, 4vw, 54px)/0.9 var(--display);
  text-transform: uppercase;
}

.person-topic-copy strong {
  display: block;
  color: var(--gold);
  font-size: 15px;
}

.person-topic-copy p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.person-topic-stamp {
  position: relative;
  z-index: 1;
  padding: 9px 12px;
  border: 2px solid var(--red);
  color: var(--red);
  font: 900 14px/1 var(--display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: rotate(-3deg);
}

.composer-avatar,
.comment-avatar {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  background: var(--gold);
  color: var(--ink);
  font: 900 16px/1 var(--display);
}

.comment-composer textarea {
  width: 100%;
  min-height: 78px;
  resize: vertical;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--paper);
  font-size: 16px;
  line-height: 1.6;
}

.comment-composer textarea::placeholder {
  color: #77746c;
}

.reply-target {
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
}

.reply-target button {
  margin-left: 8px;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

.composer-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.composer-actions > span {
  color: var(--muted);
  font-size: 10px;
}

.composer-actions button {
  display: flex;
  min-width: 130px;
  height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 15px;
  border: 0;
  background: var(--red);
  color: white;
  font-size: 11px;
  font-weight: 900;
  cursor: pointer;
}

.composer-actions button:disabled {
  cursor: not-allowed;
  opacity: 0.35;
}

.comment-status {
  padding: 22px 4px;
  color: var(--muted);
  font-size: 12px;
}

.comment-feed {
  border-top: 1px solid var(--line);
}

.comment-thread {
  border-bottom: 1px solid var(--line);
}

.comment-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  padding: 22px 4px;
}

.comment-card.reply {
  margin-left: 62px;
  padding-top: 16px;
  border-top: 1px solid rgba(243, 239, 229, 0.08);
}

.comment-card.reply .comment-avatar {
  width: 38px;
  height: 38px;
  background: var(--panel-soft);
  color: var(--gold);
  font-size: 13px;
}

.comment-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 10px;
}

.comment-meta strong {
  color: var(--paper);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.comment-meta .you-badge {
  padding: 2px 5px;
  background: var(--gold);
  color: var(--ink);
  font-size: 8px;
  font-weight: 900;
}

.comment-body {
  margin: 8px 0 12px;
  color: var(--paper);
  font-size: 15px;
  line-height: 1.65;
  overflow-wrap: anywhere;
  white-space: pre-wrap;
}

.comment-actions {
  display: flex;
  gap: 24px;
}

.comment-actions button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
}

.comment-actions button:hover,
.comment-actions button.liked {
  color: var(--red);
}

.comment-card.shared-comment {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold), 0 0 38px rgba(255, 201, 40, 0.17);
  animation: sharedCommentPulse 1s ease 2;
}

@keyframes sharedCommentPulse {
  50% {
    transform: translateY(-2px);
    background: rgba(255, 201, 40, 0.08);
  }
}

.comment-empty {
  padding: 54px 10px;
  color: var(--muted);
  text-align: center;
  font-size: 13px;
}

@media (max-width: 720px) {
  .mobile-nav {
    grid-template-columns: repeat(2, 1fr);
  }

  .fan-zone-shell {
    padding: 52px 16px 70px;
  }

  .fan-zone-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .fan-zone-heading h2 {
    font-size: 52px;
  }

  .person-topic {
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 14px;
    padding: 17px 15px;
  }

  .person-topic-avatar {
    width: 62px;
    height: 62px;
    font-size: 27px;
    box-shadow: 6px 5px 0 rgba(255, 48, 74, 0.25);
  }

  .person-topic-copy h3 {
    font-size: 34px;
  }

  .person-topic-copy strong {
    font-size: 13px;
    line-height: 1.45;
  }

  .person-topic-copy p {
    line-height: 1.55;
  }

  .person-topic-stamp {
    grid-column: 1 / -1;
    width: max-content;
    margin-left: 76px;
    font-size: 12px;
  }

  .fan-identity {
    width: 100%;
    text-align: left;
  }

  .comment-composer {
    grid-template-columns: 38px 1fr;
    gap: 10px;
    padding: 15px;
  }

  .composer-avatar {
    width: 38px;
    height: 38px;
    font-size: 13px;
  }

  .comment-card {
    grid-template-columns: 38px 1fr;
    gap: 10px;
    padding: 18px 0;
  }

  .comment-avatar {
    width: 38px;
    height: 38px;
    font-size: 13px;
  }

  .comment-card.reply {
    margin-left: 28px;
  }

  .comment-body {
    font-size: 14px;
  }
}

@media (max-width: 390px) {
  .composer-actions {
    align-items: flex-end;
    flex-direction: column;
  }

  .composer-actions button {
    width: 100%;
  }
}

.scoreboard {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  margin: 32px 0 42px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.team {
  display: flex;
  align-items: center;
  gap: 15px;
  font: 800 clamp(24px, 2.4vw, 38px)/1 var(--display);
  text-transform: uppercase;
}

.team-right {
  flex-direction: row-reverse;
  text-align: right;
}

.flag {
  font-size: 32px;
  filter: saturate(0.86);
}

.score {
  display: flex;
  align-items: center;
  gap: 14px;
  font: 900 clamp(44px, 5vw, 72px)/0.8 var(--display);
}

.score i {
  color: var(--muted);
  font-size: 32px;
  font-style: normal;
}

.question-block {
  position: relative;
  max-width: 880px;
}

.case-number {
  color: var(--gold);
  font: 800 11px/1 var(--body);
  letter-spacing: 0.16em;
}

.question-block h1 {
  max-width: 900px;
  margin: 10px 0 12px;
  font: 900 clamp(56px, 7.2vw, 112px)/0.78 var(--display);
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.question-block p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.vote-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 32px;
  background: var(--ink);
  clip-path: polygon(0 0, 100% 0, 97% 100%, 3% 100%);
}

.vote-option {
  position: relative;
  min-height: 150px;
  overflow: hidden;
  padding: 24px 38px;
  border: 0;
  text-align: left;
  cursor: pointer;
  transition: filter 160ms ease, transform 160ms ease;
}

.vote-option::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 40%, rgba(255, 255, 255, 0.18));
  content: "";
  opacity: 0;
  transition: opacity 180ms;
}

.vote-option:hover {
  filter: brightness(1.08);
}

.vote-option:hover::after {
  opacity: 1;
}

.vote-option:active {
  transform: scale(0.992);
}

.vote-option.saint {
  background: var(--gold);
  color: var(--ink);
}

.vote-option.villain {
  background: var(--red);
  color: var(--paper);
}

.vote-kicker {
  display: block;
  margin-bottom: 12px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.vote-option strong {
  display: block;
  font: 900 clamp(40px, 4.6vw, 68px)/0.88 var(--display);
  text-transform: uppercase;
}

.vote-option small {
  display: block;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 700;
}

.vote-arrow {
  position: absolute;
  top: 20px;
  right: 28px;
  font-size: 26px;
}

.result-panel {
  display: none;
  position: relative;
  margin-top: 30px;
  padding: 26px 0 0;
  border-top: 1px solid var(--line);
}

.result-panel.visible {
  display: block;
  animation: revealResult 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes revealResult {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
}

.verdict-stamp {
  position: absolute;
  top: -84px;
  right: 20px;
  z-index: 3;
  padding: 8px 13px;
  border: 3px solid var(--paper);
  color: var(--paper);
  font: 900 22px/1 var(--display);
  letter-spacing: 0.08em;
  opacity: 0;
  transform: rotate(-8deg) scale(1.8);
}

.result-panel.visible .verdict-stamp {
  animation: stamp 520ms 120ms forwards cubic-bezier(0.2, 1.3, 0.4, 1);
}

@keyframes stamp {
  to {
    opacity: 0.8;
    transform: rotate(-8deg) scale(1);
  }
}

.result-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.result-heading > div > span,
.pulse-heading > span,
.section-label span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.result-heading strong {
  font: 800 28px/1 var(--display);
}

.result-heading small {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.share-button {
  display: flex;
  height: 48px;
  align-items: center;
  gap: 30px;
  padding: 0 18px;
  border: 1px solid var(--paper);
  background: transparent;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.share-button:hover {
  background: var(--paper);
  color: var(--ink);
}

.split-numbers {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: 20px;
}

.split-numbers strong {
  font: 900 clamp(42px, 6vw, 80px)/1 var(--display);
}

.split-numbers > span {
  color: var(--muted);
  font: 800 11px/1 var(--body);
  text-transform: uppercase;
}

.gold {
  color: var(--gold);
}

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

.split-bar {
  position: relative;
  display: flex;
  height: 9px;
  margin-top: 8px;
  overflow: visible;
  background: var(--panel);
}

.split-bar span {
  transition: width 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.split-saint {
  width: 51%;
  background: var(--gold);
}

.split-villain {
  width: 49%;
  background: var(--red);
}

.split-bar i {
  position: absolute;
  top: -5px;
  left: 51%;
  z-index: 2;
  width: 2px;
  height: 19px;
  background: var(--paper);
  transform: translateX(-50%);
}

.minority-copy {
  min-height: 20px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.pulse-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.pulse-heading strong {
  color: var(--gold);
  font: 900 30px/1 var(--display);
}

.pulse-heading small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font: 700 9px/1 var(--body);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.globe-visual {
  position: relative;
  display: grid;
  width: 280px;
  height: 280px;
  place-items: center;
  margin: 20px auto 28px;
}

.globe-core {
  position: relative;
  display: grid;
  width: 190px;
  height: 190px;
  place-items: center;
  align-content: center;
  border: 1px solid rgba(255, 201, 40, 0.34);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 201, 40, 0.12), transparent 60%),
    repeating-radial-gradient(circle, transparent 0 18px, rgba(255, 255, 255, 0.04) 19px 20px);
}

.globe-core::before,
.globe-core::after {
  position: absolute;
  content: "";
  background: rgba(255, 255, 255, 0.08);
}

.globe-core::before {
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
}

.globe-core::after {
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
}

.globe-core b {
  position: relative;
  z-index: 2;
  color: var(--gold);
  font: 900 58px/0.9 var(--display);
}

.globe-core b span {
  font-size: 25px;
}

.globe-core small {
  position: relative;
  z-index: 2;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.orbit {
  position: absolute;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.orbit-one {
  inset: 12px;
  border-color: rgba(255, 48, 74, 0.2);
  animation: rotate 12s linear infinite;
}

.orbit-one::after {
  position: absolute;
  top: 27px;
  right: 27px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  content: "";
  box-shadow: 0 0 14px var(--red);
}

.orbit-two {
  inset: 34px 4px;
  transform: rotate(35deg);
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

.pulse-dot {
  position: absolute;
  z-index: 3;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 10px var(--red);
}

.p1 { top: 36px; left: 55px; }
.p2 { right: 32px; top: 80px; background: var(--gold); box-shadow: 0 0 10px var(--gold); }
.p3 { bottom: 40px; left: 72px; background: var(--gold); box-shadow: 0 0 10px var(--gold); }
.p4 { right: 58px; bottom: 22px; }

.nation-clash {
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.section-label i {
  color: var(--red);
  font-size: 9px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.clash-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
  font-size: 12px;
}

.clash-meter {
  height: 3px;
  margin-top: 7px;
  background: rgba(255, 255, 255, 0.08);
}

.clash-meter i {
  display: block;
  height: 100%;
  background: var(--gold);
}

.red-meter i {
  background: var(--red);
}

.nation-clash p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.next-case {
  display: flex;
  width: 100%;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  margin-top: 22px;
  padding: 0 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
  text-align: left;
  cursor: pointer;
}

.next-case:hover {
  border-color: var(--gold);
}

.next-case small,
.next-case strong {
  display: block;
}

.next-case small {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.next-case strong {
  font: 800 18px/1 var(--display);
  text-transform: uppercase;
}

.next-case > b {
  color: var(--gold);
  font-size: 25px;
}

.section-shell {
  max-width: var(--max);
  margin: 0 auto;
  padding: 110px 24px;
}

.section-header,
.ranking-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 45px;
}

.eyebrow {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.section-header h2,
.ranking-title h2 {
  margin: 0;
  font: 900 clamp(54px, 7vw, 100px)/0.83 var(--display);
  letter-spacing: -0.04em;
}

.section-header > p {
  max-width: 410px;
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.875fr 0.875fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.story-card {
  position: relative;
  display: flex;
  min-height: 470px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 30px;
  background: var(--panel);
}

.story-card::before {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(105deg, transparent 0 35px, rgba(255, 255, 255, 0.018) 36px 37px);
  content: "";
}

.lead-story {
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 48, 74, 0.15), transparent 34%),
    var(--panel);
}

.villain-story {
  background: linear-gradient(160deg, var(--red) 0 1.5%, var(--panel) 1.6%);
}

.saint-story {
  background: linear-gradient(160deg, var(--gold) 0 1.5%, var(--panel) 1.6%);
}

.story-status {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--red);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.11em;
}

.saint-story .story-status {
  color: var(--gold);
}

.story-copy {
  position: relative;
  z-index: 1;
}

.story-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 16px;
}

.story-tags span {
  padding: 5px 7px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.story-card h3 {
  margin: 0;
  font: 900 clamp(38px, 4vw, 62px)/0.85 var(--display);
  letter-spacing: -0.025em;
}

.story-card p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.story-stat {
  position: absolute;
  top: 82px;
  right: 28px;
  display: grid;
  color: var(--red);
  text-align: right;
}

.story-stat b {
  font: 900 70px/0.8 var(--display);
}

.story-stat span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
}

.story-link {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0 0;
  border: 0;
  border-top: 1px solid var(--line);
  background: transparent;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

.story-link:hover {
  color: var(--gold);
}

.rank-number {
  position: absolute;
  top: 70px;
  right: 15px;
  color: rgba(255, 48, 74, 0.13);
  font: 900 180px/1 var(--display);
}

.halo-mark {
  position: absolute;
  top: 80px;
  right: 40px;
  width: 120px;
  height: 38px;
  border: 4px solid rgba(255, 201, 40, 0.36);
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(255, 201, 40, 0.18);
  transform: rotate(-10deg);
}

.rankings {
  border-top: 1px solid var(--line);
}

.ranking-title h2 i {
  color: var(--muted);
  font-style: italic;
}

.ranking-tabs {
  display: flex;
  border: 1px solid var(--line);
}

.ranking-tabs button {
  padding: 13px 18px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.ranking-tabs button.active {
  background: var(--paper);
  color: var(--ink);
}

.ranking-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.ranking-list {
  background: var(--panel);
}

.ranking-list-head {
  display: flex;
  height: 75px;
  align-items: center;
  justify-content: space-between;
  padding: 0 25px;
  border-bottom: 1px solid var(--line);
  font: 900 32px/1 var(--display);
}

.saint-list .ranking-list-head {
  color: var(--gold);
}

.villain-list .ranking-list-head {
  color: var(--red);
}

.ranking-row {
  display: grid;
  min-height: 92px;
  grid-template-columns: 32px 48px 1fr auto;
  align-items: center;
  gap: 15px;
  padding: 0 25px;
  border-bottom: 1px solid var(--line);
}

.ranking-row:last-child {
  border-bottom: 0;
}

.ranking-row .place {
  color: var(--muted);
  font: 800 15px/1 var(--display);
}

.player-badge {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--ink);
  font: 800 14px/1 var(--display);
}

.ranking-row strong,
.ranking-row small {
  display: block;
}

.ranking-row strong {
  font: 800 19px/1.1 var(--display);
  text-transform: uppercase;
}

.ranking-row small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 10px;
}

.ranking-row > b {
  font: 900 31px/1 var(--display);
}

.saint-list .ranking-row > b {
  color: var(--gold);
}

.villain-list .ranking-row > b {
  color: var(--red);
}

.manifesto {
  display: grid;
  min-height: 680px;
  place-items: center;
  align-content: center;
  border-top: 1px solid var(--line);
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(255, 201, 40, 0.07), transparent 33%);
}

.manifesto p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.manifesto h2 {
  margin: 28px 0;
  font: 900 clamp(70px, 12vw, 170px)/0.72 var(--display);
  letter-spacing: -0.055em;
}

.manifesto h2 span {
  display: block;
}

.manifesto h2 span:first-child {
  color: var(--gold);
}

.manifesto h2 span:last-child {
  color: var(--red);
}

.manifesto a {
  margin-top: 48px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--paper);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

footer {
  display: flex;
  max-width: var(--max);
  min-height: 125px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin: 0 auto;
  padding: 0 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
}

.footer-brand {
  filter: grayscale(0.4);
}

.mobile-nav {
  display: none;
}

dialog {
  padding: 0;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--paper);
}

dialog::backdrop {
  background: rgba(0, 0, 0, 0.84);
  backdrop-filter: blur(7px);
}

.language-dialog {
  width: min(850px, calc(100vw - 32px));
  max-height: min(780px, calc(100vh - 32px));
}

.language-dialog form {
  padding: 32px;
}

.dialog-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.dialog-head h2,
.share-controls h2 {
  margin: 0;
  font: 900 clamp(38px, 5vw, 68px)/0.9 var(--display);
  text-transform: uppercase;
}

.dialog-close {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  background: transparent;
  font-size: 24px;
  cursor: pointer;
}

.dialog-close:hover {
  background: var(--paper);
  color: var(--ink);
}

.language-dialog input {
  width: 100%;
  height: 52px;
  margin: 28px 0 18px;
  padding: 0 17px;
  border: 1px solid var(--line);
  outline: none;
  background: var(--ink);
  color: var(--paper);
}

.language-dialog input:focus {
  border-color: var(--gold);
}

.language-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-height: 440px;
  gap: 1px;
  overflow-y: auto;
  background: var(--line);
  border: 1px solid var(--line);
}

.language-option {
  min-height: 68px;
  padding: 12px 15px;
  border: 0;
  background: var(--panel);
  text-align: left;
  cursor: pointer;
}

.language-option:hover,
.language-option.active {
  background: var(--gold);
  color: var(--ink);
}

.language-option strong,
.language-option small {
  display: block;
}

.language-option strong {
  font-size: 13px;
}

.language-option small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 9px;
  text-transform: uppercase;
}

.language-option:hover small,
.language-option.active small {
  color: rgba(0, 0, 0, 0.6);
}

.share-dialog {
  position: relative;
  width: min(1020px, calc(100vw - 28px));
  max-height: calc(100vh - 28px);
}

.share-dialog-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 8;
  display: flex;
  height: 42px;
  align-items: center;
  gap: 9px;
  padding: 0 14px;
  border: 1px solid rgba(8, 8, 8, 0.22);
  background: rgba(243, 239, 229, 0.94);
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.share-dialog-close b {
  font-size: 21px;
  line-height: 1;
}

.share-layout {
  display: grid;
  grid-template-columns: minmax(330px, 0.85fr) 1.15fr;
}

.share-poster {
  position: relative;
  display: flex;
  min-height: 650px;
  flex-direction: column;
  padding: 32px;
  overflow: hidden;
  background:
    linear-gradient(150deg, rgba(255, 201, 40, 0.16), transparent 40%),
    repeating-linear-gradient(105deg, transparent 0 38px, rgba(255, 255, 255, 0.035) 39px 40px),
    var(--ink);
}

.share-poster::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 170px;
  height: 170px;
  border-top: 8px solid var(--red);
  border-right: 8px solid var(--red);
  content: "";
}

.poster-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font: 800 19px/1 var(--display);
}

.poster-top > span > span {
  color: var(--gold);
}

.poster-top b {
  color: var(--red);
  font-size: 10px;
  letter-spacing: 0.1em;
}

.poster-match {
  margin-top: 80px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.share-poster h2 {
  margin: 14px 0 20px;
  font: 900 62px/0.8 var(--display);
  letter-spacing: -0.04em;
}

.poster-choice {
  width: max-content;
  max-width: 100%;
  padding: 9px 13px;
  background: var(--gold);
  color: var(--ink);
  font: 900 20px/1 var(--display);
  transform: rotate(-2deg);
}

.poster-result {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  margin-top: 40px;
}

.poster-result strong {
  color: var(--gold);
  font: 900 80px/0.75 var(--display);
}

.poster-result span {
  max-width: 80px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.poster-bottom {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: auto;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}

.poster-cta b,
.poster-cta span,
.poster-cta small {
  display: block;
}

.poster-cta b {
  color: var(--gold);
  font: 900 22px/1 var(--display);
}

.poster-cta span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 10px;
}

.poster-cta small {
  margin-top: 12px;
  color: var(--paper);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.qr-frame {
  flex: 0 0 auto;
  padding: 7px;
  background: var(--paper);
  box-shadow: 8px 8px 0 var(--red);
}

.qr-code {
  width: 128px;
  height: 128px;
  display: block;
  object-fit: contain;
}

.share-controls {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px;
  background: var(--paper);
  color: var(--ink);
}

.share-close {
  position: absolute;
  top: 25px;
  right: 25px;
  border-color: rgba(0, 0, 0, 0.2);
}

.share-controls p {
  max-width: 420px;
  margin: 20px 0 35px;
  color: #5f5b52;
  font-size: 14px;
  line-height: 1.6;
}

.primary-share,
.secondary-share,
.save-image-button {
  display: flex;
  width: 100%;
  height: 58px;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  border: 0;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.primary-share {
  background: var(--red);
  color: white;
}

.save-image-button {
  margin-top: 9px;
  background: var(--ink);
  color: var(--paper);
}

.save-image-button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.secondary-share {
  justify-content: center;
  margin-top: 9px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: transparent;
  color: var(--ink);
}

.copy-status {
  min-height: 20px;
  margin: 12px 0 0 !important;
  color: var(--red) !important;
  font-size: 10px !important;
  font-weight: 800;
}

.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  z-index: 90;
  padding: 12px 18px;
  background: var(--paper);
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 20px);
  transition: 220ms ease;
}

.toast.visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

:focus-visible {
  outline: 3px solid var(--paper);
  outline-offset: 3px;
}

@media (max-width: 1020px) {
  .site-header {
    padding: 0 18px;
  }

  .desktop-nav {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr 1fr;
  }

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

  .hero-panel {
    padding: 32px 24px 38px;
    border-right: 0;
  }

  .pulse-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 38px 24px;
    border-top: 1px solid var(--line);
  }

  .pulse-heading,
  .next-case {
    grid-column: 1 / -1;
  }

  .globe-visual {
    margin: 0 auto;
  }

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

  .lead-story {
    grid-column: 1 / -1;
  }

  .story-card {
    min-height: 400px;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 72px;
  }

  .site-header {
    height: 58px;
    padding: 0 14px;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
  }

  .brand-name {
    font-size: 19px;
  }

  .header-actions {
    gap: 10px;
  }

  .language-trigger {
    height: 36px;
    gap: 7px;
    padding: 0 10px;
    font-size: 12px;
  }

  .live-orbit {
    display: none;
  }

  .breaking-ticker {
    height: 34px;
  }

  .ticker-label {
    min-width: 76px;
    font-size: 11px;
    letter-spacing: 0.08em;
  }

  .ticker-track {
    gap: 38px;
  }

  .ticker-track p {
    font-size: 10px;
    letter-spacing: 0.02em;
  }

  .hero-panel {
    padding: 20px 16px 28px;
  }

  .match-meta > span:last-child {
    display: none;
  }

  .scoreboard {
    gap: 8px;
    margin: 18px 0 24px;
    padding: 15px 0;
  }

  .team {
    gap: 6px;
    font-size: 19px;
  }

  .team strong {
    max-width: 92px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .flag {
    font-size: 22px;
  }

  .score {
    gap: 6px;
    font-size: 38px;
  }

  .score i {
    font-size: 22px;
  }

  .question-block h1 {
    margin: 9px 0 10px;
    font-size: clamp(44px, 14vw, 62px);
    line-height: 0.88;
  }

  .question-block p {
    font-size: 13px;
    line-height: 1.55;
  }

  .vote-grid {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 24px;
    clip-path: none;
  }

  .vote-option {
    min-height: 110px;
    padding: 17px 20px 16px;
  }

  .vote-option strong {
    font-size: 42px;
    line-height: 0.96;
  }

  .vote-kicker {
    margin-bottom: 8px;
  }

  .vote-option small {
    margin-top: 8px;
    padding-right: 30px;
    font-size: 11px;
    line-height: 1.4;
  }

  .vote-arrow {
    top: 14px;
    right: 16px;
    font-size: 22px;
  }

  .verdict-stamp {
    top: -65px;
    right: 12px;
    max-width: 148px;
    padding: 6px 9px;
    overflow: hidden;
    font-size: 12px;
    white-space: nowrap;
    transform-origin: right center;
  }

  .result-panel.visible .verdict-stamp {
    animation-name: stampMobile;
  }

  @keyframes stampMobile {
    to {
      opacity: 0.8;
      transform: rotate(-3deg) scale(1);
    }
  }

  .result-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .share-button {
    justify-content: space-between;
  }

  .split-numbers strong {
    font-size: 56px;
  }

  .pulse-panel {
    display: block;
    padding: 28px 16px 34px;
  }

  .globe-visual {
    margin: 8px auto 18px;
    transform: scale(0.9);
  }

  .section-shell {
    padding: 80px 16px;
  }

  .section-header,
  .ranking-title {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 30px;
  }

  .section-header h2,
  .ranking-title h2 {
    font-size: 58px;
  }

  .story-grid,
  .ranking-columns {
    grid-template-columns: 1fr;
  }

  .lead-story {
    grid-column: auto;
  }

  .story-card {
    min-height: 390px;
    padding: 24px;
  }

  .story-card h3 {
    font-size: 48px;
  }

  .ranking-title {
    gap: 20px;
  }

  .ranking-tabs {
    width: 100%;
  }

  .ranking-tabs button {
    flex: 1;
  }

  .ranking-row {
    grid-template-columns: 25px 42px 1fr auto;
    gap: 10px;
    padding: 0 15px;
  }

  .manifesto {
    min-height: 540px;
  }

  .manifesto h2 {
    font-size: 82px;
  }

  footer {
    min-height: 190px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  .mobile-nav {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 45;
    display: grid;
    height: 72px;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
    background: rgba(8, 8, 8, 0.94);
    backdrop-filter: blur(16px);
  }

  .mobile-nav a,
  .mobile-nav button {
    display: grid;
    place-items: center;
    align-content: center;
    gap: 2px;
    border: 0;
    background: transparent;
    color: var(--muted);
  }

  .mobile-nav .active {
    color: var(--gold);
  }

  .mobile-nav span {
    font-size: 18px;
  }

  .mobile-nav small {
    max-width: 100%;
    overflow: hidden;
    padding: 0 4px;
    font-size: 9px;
    font-weight: 800;
    line-height: 1.2;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .language-dialog {
    width: calc(100vw - 12px);
    max-height: calc(100dvh - 24px);
    margin: auto 6px 6px;
    border-bottom: 0;
  }

  .language-dialog form {
    padding: 20px 16px 24px;
  }

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

  .share-dialog {
    width: calc(100vw - 12px);
    max-height: calc(100dvh - 12px);
    margin: 6px;
    overflow-y: auto;
  }

  .share-layout {
    grid-template-columns: 1fr;
  }

  .share-poster {
    min-height: min(600px, calc(100dvh - 170px));
    padding: 22px 20px 20px;
  }

  .share-poster::before {
    width: 105px;
    height: 105px;
    border-width: 5px;
  }

  .poster-top {
    font-size: 17px;
  }

  .poster-match {
    margin-top: 42px;
  }

  .share-poster h2 {
    max-width: 8em;
    margin: 12px 0 16px;
    font-size: clamp(44px, 14vw, 58px);
    line-height: 0.84;
  }

  .poster-choice {
    padding: 8px 11px;
    font-size: 18px;
  }

  .poster-result {
    gap: 9px;
    margin-top: 28px;
  }

  .poster-result strong {
    font-size: 68px;
  }

  .poster-bottom {
    gap: 18px;
    padding-top: 20px;
  }

  .qr-code {
    width: clamp(126px, 38vw, 154px);
    height: clamp(126px, 38vw, 154px);
  }

  .poster-cta {
    min-width: 0;
  }

  .poster-cta b {
    font-size: 21px;
  }

  .poster-cta span {
    overflow-wrap: anywhere;
  }

  .share-controls {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 14px 16px 16px;
  }

  .share-dialog-close {
    position: fixed;
    top: 14px;
    right: 14px;
    height: 40px;
    border-color: rgba(243, 239, 229, 0.28);
    background: rgba(8, 8, 8, 0.88);
    color: var(--paper);
  }

  .share-controls .eyebrow,
  .share-controls h2,
  .share-controls > p:not(.copy-status) {
    display: none;
  }

  .primary-share,
  .secondary-share,
  .save-image-button {
    height: 52px;
    margin: 0;
  }

  .primary-share {
    grid-column: 1 / -1;
  }

  .copy-status {
    grid-column: 1 / -1;
    min-height: 0;
    margin: 0 !important;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .language-grid {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .language-option {
    min-height: 54px;
    padding: 10px 14px;
  }

  .dialog-head h2 {
    font-size: 34px;
    line-height: 0.95;
  }

  .share-poster {
    min-height: 555px;
  }

  .poster-bottom {
    align-items: flex-end;
  }

  .qr-code {
    width: 132px;
    height: 132px;
  }

  .poster-cta b {
    font-size: 18px;
  }
}

@media (max-width: 720px) {
  html[lang^="zh"] .question-block h1 {
    max-width: 9em;
    font-family: "Noto Sans SC", var(--body);
    font-size: clamp(42px, 12.4vw, 54px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.07em;
    text-wrap: balance;
  }

  html[lang^="zh"] .question-block p {
    max-width: 29em;
    line-height: 1.7;
  }

  html[lang^="zh"] .vote-option strong {
    font-family: "Noto Sans SC", var(--body);
    font-size: clamp(34px, 10vw, 42px);
    font-weight: 800;
    letter-spacing: -0.05em;
  }

  html[lang^="zh"] .vote-kicker,
  html[lang^="zh"] .vote-option small {
    letter-spacing: 0.02em;
  }

  html[lang^="zh"] .section-header h2,
  html[lang^="zh"] .ranking-title h2 {
    font-family: "Noto Sans SC", var(--body);
    font-size: 46px;
    line-height: 1.08;
    letter-spacing: -0.06em;
  }

  html[lang^="zh"] .story-card h3 {
    font-family: "Noto Sans SC", var(--body);
    font-size: 38px;
    line-height: 1.12;
    letter-spacing: -0.05em;
  }

  html[lang^="zh"] .mobile-nav small {
    font-size: 10px;
    letter-spacing: 0;
    text-transform: none;
  }

  html[lang^="zh"] .share-poster h2 {
    max-width: 8em;
    font-family: "Noto Sans SC", var(--body);
    font-size: clamp(38px, 11.5vw, 48px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.07em;
    text-wrap: balance;
  }

  html[lang^="zh"] .poster-choice {
    font-family: "Noto Sans SC", var(--body);
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -0.03em;
  }

  html[lang^="zh"] .poster-result span {
    max-width: 6em;
    line-height: 1.45;
    text-transform: none;
  }

  html[lang^="zh"] .poster-cta b {
    font-family: "Noto Sans SC", var(--body);
    font-size: 20px;
  }
}

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