:root {
  color-scheme: light;
  --green-700: #087c35;
  --green-600: #0aa64b;
  --green-500: #18c85a;
  --green-300: #79ef83;
  --acid: #b6ff37;
  --ink: #0b0d0c;
  --muted: #68706a;
  --paper: #f7f8f5;
  --white: #ffffff;
  --line: #dce2dc;
  --stage: #111512;
  --danger: #e9364c;
  --gold: #f4d474;
  --shadow: 0 22px 60px rgba(11, 25, 16, .12);
  --font-display: "Arial Narrow", "DIN Condensed", "Microsoft YaHei UI", sans-serif;
  --font-ui: "PingFang SC", "Microsoft YaHei UI", "Noto Sans SC", sans-serif;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

* { box-sizing: border-box; }
html { overflow-x: hidden; scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-ui);
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
body.splash-open { overflow: hidden; }
body.qr-open { overflow: hidden; }
body.promo-open { overflow: hidden; }
button, input, select, textarea { font: inherit; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button:focus-visible, a:focus-visible, input:focus-visible {
  outline: 3px solid var(--green-500);
  outline-offset: 3px;
}
img, video { display: block; max-width: 100%; }
.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 12px 16px;
  background: var(--ink);
  color: white;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  height: 74px;
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto minmax(210px, 1fr);
  align-items: center;
  gap: 24px;
  padding: 0 max(24px, calc((100vw - max(1440px, 70.5vw)) / 2));
  border-bottom: 1px solid rgba(11, 13, 12, .1);
  background: rgba(247, 248, 245, .93);
  backdrop-filter: blur(16px);
}
.gratitude-banner { min-height: 38px; position: relative; z-index: 85; display: grid; grid-template-columns: auto minmax(0, 1fr); color: white; background: var(--stage); border-bottom: 1px solid #2d382f; overflow: hidden; }
.gratitude-signal { padding: 0 22px; display: grid; place-items: center; color: var(--ink); background: var(--acid); font-size: 10px; font-weight: 900; letter-spacing: .12em; }
.gratitude-viewport { min-width: 0; overflow: hidden; }
.gratitude-track { width: max-content; min-height: 38px; display: flex; align-items: center; animation: gratitudeMarquee var(--gratitude-duration, 28s) linear infinite; }
.gratitude-track span { min-width: max-content; padding: 0 44px; color: #d9e5dc; font-size: 12px; }
.gratitude-track strong { color: white; }.gratitude-track b { color: var(--green-300); }.gratitude-track em { color: var(--gold); font-style: normal; font-weight: 900; }
.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 11px;
}
.brand-mark {
  width: 56px;
  height: 58px;
  flex: 0 0 auto;
}
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1;
  letter-spacing: -.02em;
}
.brand small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: .13em;
}
.desktop-nav {
  display: flex;
  align-items: stretch;
  height: 100%;
}
.desktop-nav a {
  position: relative;
  display: grid;
  place-items: center;
  padding: 0 17px;
  color: #4f5751;
  font-size: 13px;
  font-weight: 700;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 17px;
  right: 17px;
  bottom: 0;
  height: 3px;
  transform: scaleX(0);
  background: var(--green-500);
  transition: transform .25s var(--ease-out);
}
.desktop-nav a:hover, .desktop-nav a.active { color: var(--ink); }
.desktop-nav a.active::after { transform: scaleX(1); }
.desktop-nav a[data-route="support"] {
  align-self: center;
  min-height: 44px;
  margin: 0 5px;
  padding: 0 19px;
  color: var(--ink);
  background: var(--acid);
  font-weight: 900;
}
.desktop-nav a[data-route="support"]::after {
  left: 0;
  right: 0;
  height: 4px;
  transform: scaleX(1);
  background: var(--green-700);
}
.desktop-nav a[data-route="support"]:hover {
  color: white;
  background: var(--green-700);
}
.desktop-nav a[data-route="support"].active {
  color: var(--ink);
  background: var(--acid);
}
.header-action, .primary-button, .secondary-button, .vote-button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 0;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .22s var(--ease-out), background .22s, color .22s;
}
.header-action {
  padding: 0 19px;
  color: white;
  background: var(--ink);
}
.header-action:hover, .primary-button:hover, .vote-button:hover { transform: translateY(-2px); }
.header-utility {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 8px;
}
.lazy-pay-button {
  min-height: 46px;
  border: 1px solid var(--green-700);
  border-radius: 3px;
  color: var(--ink);
  background: var(--acid);
  cursor: pointer;
  text-align: left;
  transition: transform .22s var(--ease-out), color .22s, background .22s;
}
.lazy-pay-button:hover {
  transform: translateY(-2px);
  color: white;
  background: var(--green-700);
}
.lazy-pay-button span,
.lazy-pay-button strong { display: block; }
.lazy-pay-button span {
  font-size: 9px;
  font-weight: 800;
  line-height: 1.1;
}
.lazy-pay-button strong {
  margin-top: 2px;
  font-size: 11px;
  line-height: 1.2;
}
.lazy-pay-header { padding: 7px 13px; }
.lazy-pay-mobile { display: none; }
.menu-button { display: none; }
.mobile-menu { display: none; }

.page { min-height: 70vh; animation: pageIn .55s var(--ease-out) both; }
.shell { width: min(calc(100% - 48px), max(1380px, 67.5vw)); margin: 0 auto; }
.section { padding: clamp(72px, 9vw, 132px) 0; }
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 38px;
}
.section-heading h2, .page-title h1 {
  max-width: 840px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 84px);
  line-height: .92;
  letter-spacing: -.035em;
  text-wrap: balance;
}
.bilingual-title small {
  display: block;
  margin-top: 18px;
  color: var(--green-700);
  font: 800 clamp(15px, 1.6vw, 22px)/1.25 var(--font-ui);
  letter-spacing: 0;
}
.schedule-grid .bilingual-title small { color: #bff5cc; }
.section-heading p, .page-title p {
  max-width: 54ch;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}
.section-label {
  display: block;
  margin-bottom: 18px;
  color: var(--green-700);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}

.hero {
  position: relative;
  min-height: calc(100vh - 142px);
  overflow: hidden;
  background: white;
}
.hero-grid {
  width: min(100%, max(1480px, 72.5vw));
  min-height: calc(100vh - 142px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 46% 54%;
}
.hero-copy {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 5vw 120px clamp(24px, calc((100vw - 1380px) / 2), 74px);
}
.hero-copy h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(76px, 10vw, 154px);
  line-height: .76;
  letter-spacing: -.04em;
}
.hero-copy h1 span {
  display: block;
  margin-top: 10px;
  color: var(--green-600);
  font-size: .66em;
}
.hero-copy > p {
  max-width: 25ch;
  margin: 32px 0;
  font-size: clamp(18px, 1.65vw, 25px);
  font-weight: 700;
  line-height: 1.45;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.primary-button { padding: 0 23px; color: white; background: var(--green-700); }
.secondary-button {
  padding: 0 23px;
  color: var(--ink);
  border: 1px solid var(--ink);
  background: transparent;
}
.secondary-button:hover { color: white; background: var(--ink); }
.hero-meta {
  position: absolute;
  left: clamp(24px, calc((100vw - 1380px) / 2), 74px);
  bottom: 28px;
  display: flex;
  gap: 30px;
  color: var(--muted);
  font-size: 11px;
}
.hero-meta strong { display: block; color: var(--ink); font-size: 18px; }
.hero-media {
  position: relative;
  overflow: hidden;
  background: #c8f765 url("/ui概念视频等/节目背景.png") center/cover;
  clip-path: polygon(11% 0, 100% 0, 100% 100%, 0 100%);
}
.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, rgba(255,255,255,.94), transparent 19%), linear-gradient(180deg, transparent 65%, rgba(0,0,0,.6));
  pointer-events: none;
}
.hero-media video, .hero-video-embed { width: 100%; height: 100%; object-fit: cover; }
.hero-video-embed { border: 0; pointer-events: none; }

@media (min-width: 1600px) and (min-height: 900px) {
  .hero,
  .hero-grid {
    min-height: clamp(760px, 69vh, 1490px);
  }

  .hero-copy h1 {
    font-size: clamp(154px, 7.5vw, 288px);
  }

  .hero-copy > p {
    font-size: clamp(25px, 1.22vw, 47px);
  }

  .hero-actions .primary-button,
  .hero-actions .secondary-button {
    min-height: clamp(46px, 2.25vw, 86px);
    padding-inline: clamp(23px, 1.12vw, 43px);
    font-size: clamp(13px, .64vw, 24px);
  }

  .hero-meta {
    gap: clamp(30px, 1.46vw, 56px);
    font-size: clamp(11px, .54vw, 21px);
  }

  .hero-meta strong {
    font-size: clamp(18px, .88vw, 34px);
  }

  .hero-stamp strong {
    font-size: clamp(96px, 4.7vw, 180px);
  }

  .hero-stamp span {
    font-size: clamp(12px, .59vw, 23px);
  }

  .hero-media video {
    object-fit: contain;
    object-position: center;
  }
}
.hero-video-counter {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  min-width: 54px;
  padding: 7px 10px;
  color: var(--white);
  background: rgba(11,13,12,.82);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
}
.hero-video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  min-height: 48px;
  padding: 0 18px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 999px;
  color: white;
  background: rgba(5,10,7,.78);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .04em;
  box-shadow: 0 8px 30px rgba(0,0,0,.28);
  backdrop-filter: blur(10px);
}
.hero-video-play[hidden] { display: none; }
.hero-video-play span { margin-right: 8px; color: var(--acid); }
.hero-stamp {
  position: absolute;
  right: 30px;
  bottom: 34px;
  z-index: 3;
  color: white;
  text-align: right;
}
.hero-stamp strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 96px);
  line-height: .85;
}
.hero-stamp span { font-size: 12px; font-weight: 800; letter-spacing: .13em; }
.live-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -30%;
  z-index: 3;
  width: 22%;
  transform: skewX(-13deg);
  background: linear-gradient(90deg, transparent, rgba(200,255,180,.26), transparent);
  animation: sweep 7s 1.2s infinite var(--ease-out);
  pointer-events: none;
}

.rank-band { color: white; background: var(--stage); }
.rank-band-inner {
  min-height: 174px;
  display: grid;
  grid-template-columns: 250px 1fr auto;
  align-items: center;
  gap: 34px;
}
.rank-band-title span { color: var(--green-300); font-size: 11px; font-weight: 800; }
.rank-band-title h2 { margin: 7px 0 0; font: 700 28px var(--font-display); }
.rank-band-title h2 small { color: #9ca59e; font: 700 10px var(--font-ui); }
.top-three { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.top-row {
  min-width: 0;
  display: grid;
  grid-template-columns: 34px 42px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  border-bottom: 1px solid #303631;
}
.top-row:first-child { color: var(--acid); }
.top-row .rank-no { font: 900 25px var(--font-display); }
.mini-avatar {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  color: var(--ink); background: var(--green-300);
  clip-path: polygon(50% 0, 100% 24%, 85% 100%, 15% 100%, 0 24%);
  font-size: 11px; font-weight: 900;
}
.top-row strong { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 13px; }
.top-row small { color: #9ca59e; font-size: 10px; }
.top-percent { font: 900 18px var(--font-display); }
.band-link { min-height: 44px; display: inline-flex; align-items: center; gap: 10px; color: var(--green-300); font-size: 12px; font-weight: 800; }

.manifesto-section {
  padding: clamp(72px, 9vw, 126px) 0;
  background: var(--paper);
}
.manifesto-grid {
  display: grid;
  grid-template-columns: minmax(300px, .8fr) minmax(0, 1.2fr);
  align-items: start;
  gap: clamp(54px, 8vw, 120px);
}
.manifesto-title h2 {
  max-width: 9ch;
  margin: 0;
  font: 800 clamp(44px, 6vw, 82px)/.96 var(--font-display);
  letter-spacing: -.03em;
}
.manifesto-copy {
  padding-top: 4px;
  border-top: 1px solid var(--ink);
}
.manifesto-lead {
  max-width: 36ch;
  margin: 28px 0 0;
  font-size: clamp(18px, 2vw, 27px);
  font-weight: 700;
  line-height: 1.75;
}
.manifesto-question {
  margin: 38px 0 48px;
  color: var(--green-700);
  font: 800 clamp(30px, 4vw, 54px)/1.05 var(--font-display);
  letter-spacing: -.025em;
}
.manifesto-credits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.manifesto-credits span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}
.manifesto-credits strong {
  display: block;
  color: var(--ink);
  font-size: 13px;
}

.fan-cinema-section { padding: clamp(72px, 8vw, 118px) 0; color: white; background: var(--stage); }
.fan-cinema-shell { display: grid; grid-template-columns: minmax(220px, .34fr) minmax(0, 1fr); align-items: start; gap: clamp(36px, 6vw, 92px); }
.fan-cinema-heading { position: sticky; top: 112px; }
.fan-cinema-heading > span { color: var(--green-300); font-size: 11px; font-weight: 900; letter-spacing: .1em; }
.fan-cinema-heading h2 { margin: 18px 0 22px; font: 900 clamp(54px, 6vw, 86px)/.84 var(--font-display); letter-spacing: -.035em; }
.fan-cinema-heading p { max-width: 26ch; margin: 0; color: #aeb8b0; font-size: 12px; line-height: 1.7; }
.fan-cinema-program { min-width: 0; }
.fan-film { background: #080a09; }
.fan-film-media { width: 100%; aspect-ratio: 16 / 9; display: grid; place-items: center; overflow: hidden; background: black; }
.fan-film-media video, .fan-film-media iframe { width: 100%; height: 100%; border: 0; object-fit: contain; }
.fan-film-copy { padding: 24px 26px; display: grid; grid-template-columns: minmax(0, 1fr) minmax(180px, .42fr) auto; grid-template-areas: "tag body action" "title credit action"; align-items: center; gap: 7px 28px; border-top: 1px solid #29302b; }
.fan-film-copy > span { grid-area: tag; color: var(--green-300); font-size: 10px; font-weight: 900; }
.fan-film-copy h3 { grid-area: title; margin: 0; font: 900 clamp(24px, 2.5vw, 38px)/1 var(--font-display); }
.fan-film-copy p { grid-area: body; margin: 0; color: #c4cdc6; font-size: 12px; line-height: 1.65; }
.fan-film-copy small { grid-area: credit; color: #89938c; font-size: 10px; }
.fan-film-copy a { grid-area: action; min-width: 190px; min-height: 54px; padding: 0 18px; display: flex; align-items: center; justify-content: space-between; color: var(--ink); background: var(--acid); font-size: 13px; font-weight: 900; }
.fan-film-copy a:hover { background: white; }
.fan-film-copy a b { font-size: 21px; }
.fan-film-tabs { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); border-top: 1px solid #354038; }
.fan-film-tabs button { min-height: 62px; padding: 10px 14px; display: grid; grid-template-columns: 28px minmax(0, 1fr); align-items: center; gap: 10px; color: #aeb8b0; border: 0; border-right: 1px solid #354038; background: #161b18; text-align: left; cursor: pointer; }
.fan-film-tabs button.active { color: var(--ink); background: var(--green-300); }
.fan-film-tabs strong { font-size: 11px; }
.fan-film-tabs span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 11px; font-weight: 800; }

.program-stage { position: relative; overflow: hidden; background: var(--paper); }
.program-stage::before {
  content: "";
  position: absolute;
  right: -160px;
  top: 40px;
  width: 560px;
  height: 510px;
  border: 72px solid rgba(24, 200, 90, .07);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}
.persona-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, minmax(150px, 1fr));
  gap: 1px;
  background: #cfd5cf;
  border: 1px solid #cfd5cf;
}
.persona-card {
  position: relative;
  min-height: 0;
  aspect-ratio: 9 / 16;
  display: flex;
  flex-direction: column;
  justify-content: end;
  overflow: hidden;
  background: white;
  transition: transform .28s var(--ease-out), z-index .01s;
}
.persona-card:hover { z-index: 2; transform: translateY(-8px); }
.persona-card.with-vote {
  min-height: 0;
  aspect-ratio: auto;
  display: block;
}
.persona-card-body {
  position: relative;
  min-height: 0;
  aspect-ratio: 9 / 16;
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.persona-art {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 34%, var(--persona-light) 0 16%, transparent 16.5%),
    linear-gradient(135deg, transparent 38%, var(--persona-color) 38% 64%, transparent 64%),
    linear-gradient(180deg, #f6f7f4, #e7ebe6);
}
.persona-art::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 58px;
  width: 64%;
  height: 57%;
  transform: translateX(-50%);
  border-radius: 50% 50% 10% 10%;
  background: linear-gradient(150deg, rgba(255,255,255,.8), var(--persona-color));
  clip-path: polygon(30% 0, 70% 0, 100% 32%, 83% 100%, 17% 100%, 0 32%);
}
.persona-art.has-image::before { opacity: 0; }
.crop-image-frame {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
}
.crop-image-frame > img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  transform: translate(calc(-50% + var(--crop-x, 0%)), calc(-50% + var(--crop-y, 0%))) scale(var(--crop-zoom, 1));
  transform-origin: center;
}
.archive-image-frame { position: relative; width: 100%; height: 100%; display: block; overflow: hidden; background: #111713; isolation: isolate; }
.archive-image-frame > img { position: absolute; display: block; max-width: none; }
.archive-image-backdrop { inset: -8%; z-index: 0; width: 116%; height: 116%; object-fit: cover; filter: blur(24px) brightness(.48) saturate(.8); transform: scale(1.04); }
.archive-image-main { inset: 0; z-index: 1; width: 100%; height: 100%; object-fit: contain; }
.persona-number {
  position: absolute;
  right: 10px;
  top: 7px;
  color: rgba(11,13,12,.12);
  font: 900 58px var(--font-display);
}
.persona-out { position: absolute; z-index: 3; left: 50%; top: 52%; transform: translate(-50%,-50%) rotate(-9deg); padding: 4px 12px; color: rgba(255,255,255,.92); border: 4px solid currentColor; font: 900 clamp(54px,8vw,96px)/.8 var(--font-display); letter-spacing: -.04em; text-shadow: 0 3px 18px rgba(0,0,0,.5); mix-blend-mode: screen; }
.persona-info {
  position: relative;
  z-index: 1;
  padding: 18px;
  color: white;
  background: linear-gradient(180deg, transparent, rgba(8,11,9,.95) 37%);
}
.persona-info strong { display: block; font: 800 21px var(--font-display); }
.persona-info span { display: block; margin-top: 5px; color: #bfc6c0; font-size: 10px; }
.persona-info .persona-code-line {
  color: var(--acid);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .04em;
}
.persona-vote-button {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  border: 0;
  color: var(--ink);
  background: var(--acid);
  text-align: left;
  cursor: pointer;
  touch-action: manipulation;
  transition: background .2s, color .2s;
}
.persona-vote-button strong {
  font: 800 14px var(--font-display);
  white-space: nowrap;
}
.persona-vote-button span {
  font-size: 9px;
  line-height: 1.35;
  text-align: right;
}
.persona-vote-button:hover { color: white; background: var(--green-700); }
.persona-vote-button:disabled {
  color: #7b837d;
  background: #e5e9e5;
  cursor: not-allowed;
}

.qr-dialog {
  width: min(480px, calc(100% - 32px));
  max-height: calc(100dvh - 32px);
  padding: 0;
  overflow: visible;
  border: 0;
  color: var(--ink);
  background: transparent;
}
.qr-dialog::backdrop {
  background: rgba(5, 8, 6, .78);
  backdrop-filter: blur(8px);
}
.qr-dialog[open] { animation: qrDialogIn .28s var(--ease-out) both; }
.qr-dialog.fallback-open {
  position: fixed;
  inset: 0;
  z-index: 1000;
  width: 100%;
  max-height: none;
  padding: 16px;
  display: grid;
  place-items: center;
  background: rgba(5, 8, 6, .84);
}
.qr-dialog.fallback-open .qr-dialog-panel { width: min(448px, 100%); }
.qr-dialog-panel {
  position: relative;
  padding: clamp(24px, 5vw, 38px);
  overflow: auto;
  max-height: calc(100dvh - 32px);
  background: white;
  box-shadow: 0 28px 90px rgba(0, 0, 0, .34);
}
.qr-dialog-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 48px;
  height: 48px;
  border: 0;
  color: white;
  background: var(--ink);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.qr-dialog h2 {
  max-width: 8ch;
  margin: 0;
  font: 900 clamp(48px, 10vw, 72px)/.86 var(--font-display);
  letter-spacing: -.035em;
}
.qr-dialog-persona {
  margin: 18px 0 20px;
  color: var(--green-700);
  font-size: 13px;
  font-weight: 800;
}
.qr-dialog-code {
  width: min(320px, 100%);
  height: auto;
  aspect-ratio: 1 / 1;
  min-width: 0;
  min-height: 0;
  display: grid;
  place-items: center;
  margin: 0 auto;
  padding: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: white;
}
.qr-dialog-code img {
  min-width: 0;
  min-height: 0;
}
.qr-dialog-hint {
  margin: 20px 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
  text-align: center;
}
.qr-dialog-detail {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  color: white;
  background: var(--green-700);
  font-size: 13px;
  font-weight: 800;
}

.splash-dialog {
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  color: white;
  background: #080b09;
}
.splash-dialog::backdrop { background: #080b09; }
.splash-dialog[open] { animation: splashReveal .5s var(--ease-out) both; }
.splash-dialog-stage { position: relative; width: 100%; height: 100%; overflow: hidden; background: #101511; }
.splash-media, .splash-media picture, .splash-media img, .splash-media video, .splash-media iframe { width: 100%; height: 100%; border: 0; }
.splash-media img, .splash-media video { object-fit: cover; }
.splash-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3,8,5,.84) 0%, rgba(3,8,5,.5) 42%, rgba(3,8,5,.08) 73%),
    linear-gradient(0deg, rgba(3,8,5,.76) 0%, transparent 50%);
}
.splash-close {
  position: absolute;
  top: max(22px, env(safe-area-inset-top));
  right: max(22px, env(safe-area-inset-right));
  z-index: 3;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  padding: 0;
  color: white;
  border: 1px solid rgba(255,255,255,.5);
  background: rgba(4,9,6,.74);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}
.splash-close:hover { color: var(--ink); background: var(--acid); border-color: var(--acid); }
.splash-brand {
  position: absolute;
  left: max(32px, env(safe-area-inset-left));
  top: max(28px, env(safe-area-inset-top));
  z-index: 2;
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--font-display);
}
.splash-brand strong { font-size: 23px; letter-spacing: -.025em; }
.splash-brand span { color: var(--acid); font-size: 17px; font-weight: 900; }
.splash-content {
  position: absolute;
  left: max(5vw, 32px);
  bottom: max(6vh, 44px);
  z-index: 2;
  width: min(700px, calc(100% - 64px));
}
.splash-eyebrow {
  margin: 0 0 16px;
  color: var(--acid);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .09em;
}
.splash-content h2 {
  max-width: 10ch;
  margin: 0;
  text-wrap: balance;
  font: 900 clamp(54px, 7.5vw, 108px)/.88 var(--font-display);
  letter-spacing: -.035em;
}
.splash-body {
  max-width: 46ch;
  margin: 24px 0 0;
  color: #e4ece6;
  font-size: clamp(14px, 1.2vw, 17px);
  line-height: 1.75;
}
.splash-action-row {
  margin-top: 30px;
  display: flex;
  align-items: stretch;
  gap: 14px;
}
.splash-action {
  min-width: min(260px, 100%);
  min-height: 58px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  color: var(--ink);
  background: var(--acid);
  font-size: 15px;
  font-weight: 900;
  transition: transform .22s var(--ease-out), background .22s;
}
.splash-action:hover { transform: translateY(-3px); background: white; }
.splash-action b { font-size: 24px; }
.splash-countdown {
  min-width: 210px;
  padding: 8px 16px;
  display: grid;
  align-content: center;
  border: 1px solid rgba(255,255,255,.36);
  background: rgba(4,9,6,.68);
}
.splash-countdown span { color: #b7c6ba; font-size: 10px; }
.splash-countdown strong { margin-top: 4px; font: 900 20px var(--font-display); letter-spacing: .03em; }
.promo-dialog { width: min(960px, calc(100vw - 32px)); max-height: calc(100dvh - 32px); padding: 0; overflow: auto; border: 0; background: transparent; }
.promo-dialog::backdrop { background: rgba(5,9,6,.78); backdrop-filter: blur(8px); }
.promo-dialog[open] { animation: promoIn .38s var(--ease-out) both; }
.promo-dialog.fallback-open { position: fixed; inset: 0; z-index: 300; display: grid; place-items: center; margin: auto; background: rgba(5,9,6,.82); }
.splash-dialog.fallback-open { position: fixed; inset: 0; z-index: 310; display: block; }
.promo-panel { position: relative; overflow: hidden; background: white; box-shadow: var(--shadow); }
.promo-media { min-height: 0; display: grid; place-items: center; overflow: hidden; background: #111512; }
.promo-media picture { width: 100%; }
.promo-media img,.promo-media video { width:100%;height:auto;max-height:min(60dvh,580px);object-fit:contain;border:0;display:block; }
.promo-media iframe { width:100%;height:auto;aspect-ratio:16/9;border:0;display:block; }
.promo-copy { padding:24px 28px;display:grid;grid-template-columns:minmax(0,1.15fr) minmax(180px,.7fr) minmax(190px,.55fr);grid-template-areas:"eyebrow body action" "title body action";align-items:center;gap:6px 28px; }
.promo-copy .section-label{grid-area:eyebrow;margin:0}.promo-copy h2{grid-area:title;margin:0;font:900 clamp(28px,3vw,42px)/.98 var(--font-display);letter-spacing:-.03em;}.promo-copy>p:not(.section-label){grid-area:body;margin:0;color:var(--muted);line-height:1.65;}.promo-action { grid-area:action;min-height:56px;margin:0;padding:0 20px;display:flex;align-items:center;justify-content:space-between;color:white;background:var(--green-700);font-weight:900;}.promo-action b{font-size:24px;}
.promo-close { position:absolute;z-index:3;right:14px;top:14px;width:46px;height:46px;border:1px solid rgba(255,255,255,.45);color:white;background:rgba(11,13,12,.72);font-size:26px;cursor:pointer; }

.schedule-band { color: white; background: var(--green-700); }
.schedule-grid { display: grid; grid-template-columns: 1.1fr 2fr; gap: 70px; }
.schedule-grid h2 { margin: 0; font: 800 clamp(44px, 7vw, 92px)/.9 var(--font-display); letter-spacing: -.03em; }
.schedule-list { border-top: 1px solid rgba(255,255,255,.4); }
.schedule-item {
  display: grid;
  grid-template-columns: 120px minmax(150px, .7fr) minmax(0, 1.5fr);
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,.25);
}
.schedule-item span { color: #bff5cc; font-size: 12px; }
.schedule-item strong { font-size: 18px; }
.schedule-item em { font-style: normal; font-size: 12px; line-height: 1.65; text-align: right; }
.schedule-item a,
.about-block small a {
  color: var(--acid);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-hero {
  padding: clamp(72px, 9vw, 130px) 0 54px;
  border-bottom: 1px solid var(--line);
  background: white;
}
.page-title { display: grid; grid-template-columns: 1.4fr .6fr; align-items: end; gap: 50px; }
.status-note {
  margin-top: 28px;
  padding: 14px 0;
  color: var(--muted);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}
.filter-bar {
  position: sticky;
  top: 74px;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 13px max(24px, calc((100vw - 1380px) / 2));
  background: rgba(247,248,245,.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.filter-bar button {
  min-height: 42px;
  padding: 0 18px;
  border: 0;
  border-radius: 2px;
  color: var(--muted);
  background: transparent;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}
.filter-bar button span,
.filter-bar button small { display: block; }
.filter-bar button small {
  margin-top: 2px;
  color: inherit;
  font-size: 9px;
  font-weight: 600;
  opacity: .72;
}
.filter-bar button.active { color: white; background: var(--ink); }
.persona-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.persona-grid .persona-card { min-height: 0; }
.persona-grid .persona-card:nth-child(3n) { --persona-color: #f0d575 !important; --persona-light: #fff4a8 !important; }
.persona-grid .persona-card:nth-child(4n) { --persona-color: #9ad7ff !important; --persona-light: #daf0ff !important; }

.detail-hero {
  min-height: calc(100vh - 74px);
  display: grid;
  grid-template-columns: minmax(420px, .72fr) minmax(0, 1.28fr);
  background: white;
}
.detail-art {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background: linear-gradient(145deg, #dafedc, var(--persona-color));
}
.detail-art::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4%;
  width: 68%;
  height: 82%;
  transform: translateX(-50%);
  border-radius: 50% 50% 0 0;
  background: linear-gradient(140deg, white, var(--persona-color) 45%, #162019);
  clip-path: polygon(35% 0, 65% 0, 100% 25%, 84% 100%, 16% 100%, 0 25%);
}
.detail-art::after {
  content: attr(data-number);
  position: absolute;
  left: 5%;
  top: 6%;
  color: rgba(255,255,255,.75);
  font: 900 clamp(120px, 22vw, 340px)/1 var(--font-display);
}
.detail-art.has-image {
  background-color: #080a09;
}
.detail-art.has-image > .crop-image-frame,
.detail-art.has-image > .archive-image-frame { position: absolute; inset: 0; }
.detail-art.has-image::before,
.detail-art.has-image::after { opacity: 0; }
.detail-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(54px, 7vw, 110px); }
.detail-program-code {
  margin: 18px 0 14px;
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.detail-program-code strong { color: var(--green-700); font-size: 18px; overflow-wrap: anywhere; }
.detail-copy h1 { margin: 0; font: 900 clamp(58px, 8vw, 112px)/.8 var(--font-display); letter-spacing: -.04em; }
.detail-copy .persona-subtitle { margin: 20px 0 34px; color: var(--green-700); font-size: 15px; font-weight: 800; }
.detail-copy > p { max-width: 44ch; color: var(--muted); line-height: 1.85; }
.detail-stats { display: grid; grid-template-columns: repeat(3, 1fr); margin: 34px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.detail-stats div { padding: 18px 12px 18px 0; }
.detail-stats strong { display: block; font: 900 30px var(--font-display); }
.detail-stats span { color: var(--muted); font-size: 10px; }
.detail-qr-inline {
  margin-bottom: 28px;
  padding: 14px;
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  border: 1px solid var(--line);
  background: var(--paper);
}
.detail-qr-thumb {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--muted);
  border: 1px solid var(--line);
  background: white;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.5;
  text-align: center;
}
.detail-qr-thumb .crop-image-frame { width: 100%; height: 100%; }
.detail-qr-inline strong { font-size: 14px; }
.detail-qr-inline p { margin: 6px 0; color: var(--muted); font-size: 11px; line-height: 1.5; }
.detail-qr-inline a { color: var(--green-700); font-size: 12px; font-weight: 900; }
.video-stage { padding: 80px 0; color: white; background: var(--stage); }
.video-frame { aspect-ratio: 16 / 9; overflow: hidden; background: #222; }
.video-frame video { width: 100%; height: 100%; object-fit: cover; }
.video-frame iframe { width: 100%; height: 100%; border: 0; }
.external-video {
  min-height: 360px;
  padding: 32px;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 18px;
  color: #d5ddd7;
  text-align: center;
  background: #080a09;
}

.support-stage {
  min-height: calc(100vh - 74px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, .9fr);
  background: var(--stage);
}
.support-identity {
  position: relative;
  min-height: 720px;
  padding: clamp(54px, 7vw, 112px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: white;
  background: linear-gradient(145deg, var(--green-700), #102417);
}
.support-identity::after {
  content: "";
  position: absolute;
  right: -18%;
  bottom: -38%;
  width: 70%;
  aspect-ratio: 1;
  border: 1px solid rgba(182,255,55,.32);
  transform: rotate(45deg);
}
.support-back {
  position: absolute;
  left: clamp(30px, 5vw, 72px);
  top: 34px;
  z-index: 1;
  color: #d9f6df;
  font-size: 12px;
  font-weight: 800;
}
.support-identity .section-label { color: var(--acid); }
.support-number {
  position: absolute;
  right: 4%;
  top: 2%;
  color: rgba(255,255,255,.1);
  font: 900 clamp(180px, 28vw, 420px)/1 var(--font-display);
}
.support-identity h1 {
  position: relative;
  z-index: 1;
  max-width: 8ch;
  margin: 18px 0 20px;
  font: 900 clamp(66px, 9vw, 132px)/.78 var(--font-display);
  letter-spacing: -.04em;
}
.support-identity > p { position: relative; z-index: 1; max-width: 42ch; color: #d1e9d6; line-height: 1.8; }
.support-data {
  position: relative;
  z-index: 1;
  max-width: 420px;
  margin-top: 40px;
  padding-top: 22px;
  display: grid;
  border-top: 1px solid rgba(255,255,255,.25);
}
.support-data span { color: #b7d8be; font-size: 11px; }
.support-data strong { margin: 5px 0; color: var(--acid); font: 900 38px var(--font-display); }
.support-data small { color: #b7c9bb; font-size: 10px; line-height: 1.6; }
.support-qr-panel {
  padding: clamp(40px, 6vw, 86px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--paper);
}
.system-caption { margin: 0 0 15px; color: var(--green-700); font-size: 10px; font-weight: 900; letter-spacing: .1em; }
.support-qr {
  width: min(100%, 450px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: white;
}
.support-qr.ready { padding: clamp(20px, 3vw, 38px); }
.support-qr .crop-image-frame { width: 100%; height: 100%; }
.support-qr.empty > div { display: grid; justify-items: center; gap: 8px; color: var(--muted); text-align: center; }
.support-qr.empty strong { color: var(--ink); font-size: 24px; }
.support-qr.empty span { max-width: 24ch; font-size: 12px; line-height: 1.6; }
.support-notice { max-width: 450px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.support-notice > strong { font-size: 14px; }
.support-notice ol { margin: 10px 0 0; padding-left: 20px; color: var(--muted); font-size: 12px; line-height: 1.9; }
.support-original { align-self: flex-start; margin-top: 20px; }
.support-unavailable {
  min-height: calc(100vh - 74px);
  padding: clamp(54px, 8vw, 120px);
  display: grid;
  place-content: center;
  justify-items: start;
  color: white;
  background: var(--stage);
}
.support-unavailable .section-label { color: var(--acid); }
.support-unavailable h1 {
  margin: 18px 0 24px;
  font: 900 clamp(70px, 10vw, 142px)/.78 var(--font-display);
  letter-spacing: -.04em;
}
.support-unavailable p { max-width: 48ch; margin: 0 0 30px; color: #c8d3ca; line-height: 1.8; }

.support-hub-hero {
  padding: clamp(28px, 3.4vw, 48px) 0;
  color: white;
  background: var(--green-700);
}
.support-hub-title {
  display: grid;
  grid-template-columns: minmax(280px, .75fr) minmax(420px, 1.25fr);
  align-items: center;
  gap: 48px;
}
.support-hub-title .section-label { margin-bottom: 0; color: var(--acid); }
.support-hub-title h1 {
  margin: 10px 0 0;
  max-width: none;
  font: 800 clamp(46px, 5vw, 70px)/.88 var(--font-display);
  letter-spacing: -.03em;
}
.support-hub-title h1 br { display: none; }
.support-hub-summary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(255,255,255,.28);
}
.support-hub-summary p { grid-column: 1 / -1; margin: 0; padding: 10px 0; color: #d4ead9; font-size: 12px; line-height: 1.55; }
.support-hub-summary > div { padding: 9px 0; border-top: 1px solid rgba(255,255,255,.28); }
.support-hub-summary strong { display: block; color: var(--acid); font: 900 28px var(--font-display); }
.support-hub-summary span { color: #c3dcc9; font-size: 10px; }
.support-hub-content { padding: clamp(18px, 2.5vw, 34px) 0 72px; background: var(--stage); }
.support-hub-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid #364139; border-left: 1px solid #364139; }
.support-card {
  position: relative;
  min-height: 360px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  color: white;
  border-right: 1px solid #364139;
  border-bottom: 1px solid #364139;
  background: #121713;
  transition: transform .22s var(--ease-out), background-color .22s ease;
}
.support-card.ready:hover { z-index: 1; transform: translateY(-6px); background: #17231a; }
.support-card.pending { color: #8d9890; }
.support-card-number { color: var(--acid); font: 900 24px var(--font-display); }
.support-card-qr {
  width: min(100%, 240px);
  aspect-ratio: 1;
  margin: 14px auto;
  padding: 12px;
  display: grid;
  place-items: center;
  color: #7f8981;
  border: 1px solid #3a443d;
  background: white;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.5;
  text-align: center;
}
.support-card.pending .support-card-qr { background: #1a211c; }
.support-card-qr .crop-image-frame { width: 100%; height: 100%; }
.support-card-copy { margin-top: auto; display: grid; gap: 6px; }
.support-card-copy strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 18px; }
.support-card-copy span { color: #9ca69e; font-size: 10px; }
.support-card.ready .support-card-copy span { color: var(--green-300); }
.support-hub-empty {
  min-height: 360px;
  display: grid;
  place-content: center;
  justify-items: center;
  color: white;
  border: 1px solid #364139;
  text-align: center;
}
.support-hub-empty strong { font-size: 28px; }
.support-hub-empty p { color: #9ca69e; }
.support-hub-disclaimer { padding: 24px 0 0; color: #8f9991; font-size: 11px; line-height: 1.7; }

.ranking-stage {
  position: relative;
  padding: 62px 0 110px;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 50% 20%, rgba(56,217,105,.16), transparent 38%),
    linear-gradient(180deg, #151a16, #080a09);
}
.ranking-page .page-hero { padding: 48px 0 28px; }
.ranking-page .page-title h1 { font-size: clamp(40px, 5vw, 68px); }
.ranking-page .ranking-stage { padding: 34px 0 70px; }
.ranking-page .seat { min-height: 72px; }
.ranking-page .seat.top-seat { min-height: 88px; }
.ranking-stage::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 42px;
  height: 180px;
  background: linear-gradient(90deg, transparent, rgba(34,220,103,.18), transparent);
  filter: blur(48px);
  pointer-events: none;
}
.ranking-stage > .shell { position: relative; z-index: 2; }
.pyramid {
  position: relative;
  z-index: 2;
  width: min(1240px, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}
.pyramid-row { display: flex; justify-content: center; gap: 7px; }
.seat {
  position: relative;
  width: min(132px, calc((100vw - 96px) / var(--row-size, 6)));
  min-width: 58px;
  min-height: 92px;
  display: grid;
  grid-template-columns: 34px 1fr;
  align-content: center;
  gap: 3px 8px;
  padding: 15px;
  overflow: hidden;
  color: white;
  border: 1px solid #3a443d;
  background: #171d19;
  cursor: pointer;
  transition: transform .24s var(--ease-out), background .24s;
}
.seat::after {
  content: "";
  position: absolute;
  left: -40%;
  top: -120%;
  width: 35%;
  height: 300%;
  transform: rotate(24deg);
  background: rgba(255,255,255,.13);
  transition: left .55s var(--ease-out);
}
.seat:hover { z-index: 3; transform: translateY(-5px); background: #213027; }
.seat:hover::after { left: 140%; }
.seat.top-seat {
  min-height: 116px;
  color: var(--ink);
  border-color: var(--acid);
  background: linear-gradient(145deg, var(--acid), var(--green-300));
  box-shadow: 0 18px 44px rgba(83,255,128,.18);
}
.seat-rank { grid-row: span 2; font: 900 31px var(--font-display); }
.seat-name { align-self: end; overflow-wrap: anywhere; font-size: 9px; font-weight: 800; line-height: 1.1; }
.seat-percent { align-self: start; color: #aeb8b0; font-size: 10px; }
.top-seat .seat-percent { color: #294b30; }
.ranking-summary {
  width: min(1080px, 100%);
  margin: 42px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #303a33;
}
.ranking-summary div { padding: 22px; text-align: center; }
.ranking-summary strong { display: block; color: var(--green-300); font: 900 28px var(--font-display); }
.ranking-summary span { color: #9aa49c; font-size: 10px; }
.mobile-ranking-list { display: none; }
.mobile-pyramid-label { display: none; }
.duel-ranking-stage { min-height: 560px; }
.duel-ranking-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.duel-ranking-match { border: 1px solid #364038; background: #111612; }
.duel-ranking-match > header {
  min-height: 58px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #364038;
}
.duel-ranking-match > header span { color: var(--acid); font-size: 11px; font-weight: 900; letter-spacing: .08em; }
.duel-ranking-match > header strong { color: white; font-size: 13px; }
.duel-ranking-pair { display: grid; grid-template-columns: 1fr 42px 1fr; align-items: stretch; }
.duel-ranking-pair button {
  min-width: 0;
  min-height: 230px;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: flex-start;
  color: white;
  border: 0;
  background: #171d19;
  cursor: pointer;
  text-align: left;
}
.duel-ranking-pair button:last-child { align-items: flex-end; text-align: right; }
.duel-ranking-pair button:hover { background: #202a23; }
.duel-ranking-pair small { color: #849087; font-size: 9px; }
.duel-ranking-pair strong { margin-top: 8px; font: 900 clamp(25px, 3vw, 42px)/.92 var(--font-display); overflow-wrap: anywhere; }
.duel-ranking-pair em { margin-top: 18px; color: #b8c1ba; font-size: 12px; font-style: normal; }
.duel-ranking-pair b { margin-top: 4px; color: var(--green-300); font: 900 26px var(--font-display); }
.duel-ranking-pair i { display: grid; place-items: center; color: white; background: #080a09; font: 900 italic 16px var(--font-display); }
.duel-ranking-track { height: 8px; display: flex; background: #283029; }
.duel-ranking-track span:first-child { width: var(--left-score); background: var(--green-300); }
.duel-ranking-track span:last-child { flex: 1; background: #ff82bb; }
.duel-ranking-empty { min-height: 420px; display: grid; place-content: center; text-align: center; }
.duel-ranking-empty span { color: var(--acid); font-size: 10px; font-weight: 900; letter-spacing: .12em; }
.duel-ranking-empty h2 { margin: 12px 0 0; color: white; font: 900 clamp(48px, 8vw, 96px)/.9 var(--font-display); }
.duel-ranking-empty p { color: #9aa49c; font-size: 13px; }

.center-final-ranking .page-hero {
  position: relative;
  overflow: hidden;
  color: white;
  background: #090b09;
}
.center-final-ranking .page-hero::after {
  content: "C";
  position: absolute;
  right: 5vw;
  bottom: -0.24em;
  color: rgba(244, 212, 116, .12);
  font: 900 clamp(180px, 25vw, 430px)/.7 var(--font-display);
  pointer-events: none;
}
.center-final-ranking .page-title,
.center-final-ranking .status-note { position: relative; z-index: 1; }
.center-final-ranking .page-title small { color: var(--gold); }
.center-final-ranking .status-note { color: #d8c995; border-color: rgba(244, 212, 116, .32); }
.center-final-ranking .ranking-stage {
  background:
    radial-gradient(circle at 50% 8%, rgba(244, 212, 116, .2), transparent 34%),
    linear-gradient(180deg, #16150e, #070807 72%);
}
.final-crown-banner {
  position: relative;
  min-height: 210px;
  display: grid;
  place-content: center;
  margin: 0 auto 24px;
  overflow: hidden;
  border-top: 1px solid rgba(244, 212, 116, .46);
  border-bottom: 1px solid rgba(244, 212, 116, .24);
  text-align: center;
}
.final-crown-banner span { color: var(--gold); font-size: 10px; font-weight: 900; letter-spacing: .18em; }
.final-crown-banner strong {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: rgba(244, 212, 116, .1);
  font: 900 230px/.7 var(--font-display);
}
.final-crown-banner h2 { position: relative; margin: 16px 0 0; color: white; font: 900 clamp(38px, 5vw, 70px)/.9 var(--font-display); }
.final-ranking-grid { grid-template-columns: minmax(0, 1fr); }
.final-ranking-match { border-color: rgba(244, 212, 116, .5); box-shadow: 0 24px 80px rgba(0, 0, 0, .38); }
.final-ranking-match > header { border-color: rgba(244, 212, 116, .32); background: #0c0d09; }
.final-ranking-match > header span,
.final-ranking-match .duel-ranking-pair b { color: var(--gold); }
.final-ranking-match .duel-ranking-pair button { min-height: 330px; padding: 42px; background: linear-gradient(145deg, #1a1b14, #10130f); }
.final-ranking-match .duel-ranking-pair button:hover { background: #25251a; }
.final-ranking-match .duel-ranking-pair small { color: #d8c995; }
.final-ranking-match .duel-ranking-pair strong { font-size: clamp(46px, 6vw, 86px); }
.final-ranking-match .duel-ranking-pair i { color: #141107; background: var(--gold); font-size: 34px; }
.final-ranking-match .duel-ranking-track { height: 12px; }
.final-ranking-match .duel-ranking-track span:first-child { background: var(--gold); }
.center-final-ranking .ranking-summary { border-color: rgba(244, 212, 116, .26); }
.center-final-ranking .ranking-summary strong { color: var(--gold); }
.center-final-ranking.scores-hidden .page-title p,
.center-final-ranking.scores-hidden .status-note { color: #d8c995; }
.final-ranking-match.score-sealed .duel-ranking-pair em { color: #d8c995; }
.final-ranking-match.score-sealed .duel-ranking-pair b { color: white; font-size: 18px; }
.score-sealed-track {
  position: relative;
  overflow: hidden;
  background: #272317;
}
.score-sealed-track span:first-child,
.score-sealed-track span:last-child { width: 50%; flex: 0 0 50%; background: #6d623e; }
.score-sealed-track::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 28%;
  transform: translateX(-140%) skewX(-18deg);
  background: rgba(255, 244, 201, .5);
  animation: sealedCountSweep 2.8s infinite var(--ease-out);
}
.final-ranking-match .duel-ranking-pair button.final-winner {
  color: #171207;
  background: var(--gold);
  box-shadow: inset 0 0 0 5px #fff4c9;
}
.final-ranking-match .duel-ranking-pair button.final-winner small,
.final-ranking-match .duel-ranking-pair button.final-winner em,
.final-ranking-match .duel-ranking-pair button.final-winner b { color: #463510; }

.stage-filter {
  justify-content: space-between;
  gap: 24px;
}
.stage-filter strong { font-size: 13px; }
.stage-filter span { color: var(--muted); font-size: 12px; }
.qualifier-stage {
  min-height: calc(100vh - 116px);
  padding: clamp(68px, 8vw, 112px) 0;
  color: white;
  background: var(--stage);
}
.qualifier-intro {
  display: grid;
  grid-template-columns: minmax(300px, .8fr) minmax(0, 1.2fr);
  align-items: end;
  gap: clamp(44px, 7vw, 100px);
  margin-bottom: 54px;
}
.qualifier-intro .section-label { color: var(--acid); }
.qualifier-intro h1 {
  margin: 0;
  font: 900 clamp(76px, 11vw, 154px)/.74 var(--font-display);
  letter-spacing: -.04em;
}
.qualifier-intro h1 span {
  padding: 0 .14em;
  color: var(--green-300);
  font-size: .52em;
}
.qualifier-summary {
  padding-top: 24px;
  border-top: 1px solid #384039;
}
.qualifier-summary strong {
  display: block;
  max-width: 34ch;
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.45;
}
.qualifier-summary p {
  max-width: 58ch;
  margin: 18px 0 0;
  color: #aeb8b0;
  font-size: 13px;
  line-height: 1.8;
}
.qualifier-board { border-top: 1px solid #384039; }
.qualifier-row {
  min-height: 86px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 108px;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid #303731;
  transition: color .2s, background .2s;
}
.qualifier-row:hover { background: #1a201c; }
.qualifier-row-link {
  min-width: 0;
  min-height: 86px;
  display: grid;
  grid-template-columns: 62px 48px minmax(0, 1fr) minmax(120px, auto) 74px;
  align-items: center;
  gap: 18px;
}
.qualifier-rank {
  color: #aeb8b0;
  font: 900 28px var(--font-display);
}
.qualifier-row.advance .qualifier-rank { color: var(--acid); }
.qualifier-persona { min-width: 0; }
.qualifier-persona strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 15px;
}
.qualifier-persona small,
.qualifier-amount small {
  display: block;
  margin-top: 4px;
  color: #8f9a91;
  font-size: 10px;
}
.qualifier-amount { text-align: right; }
.qualifier-amount strong { color: white; font: 800 20px var(--font-display); }
.qualifier-row em {
  justify-self: end;
  color: #8f9a91;
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}
.qualifier-row.advance em { color: var(--acid); }
.qualifier-vote-button,
.fighter-qr-button {
  min-height: 48px;
  border: 1px solid var(--acid);
  color: var(--ink);
  background: var(--acid);
  font-weight: 900;
  cursor: pointer;
  touch-action: manipulation;
}
.qualifier-vote-button {
  width: 108px;
  display: grid;
  place-content: center;
  gap: 3px;
}
.qualifier-vote-button strong { font-size: 12px; }
.qualifier-vote-button span { font-size: 9px; font-weight: 700; }
.qualifier-vote-button:hover,
.fighter-qr-button:hover { color: white; border-color: var(--green-700); background: var(--green-700); }
.qualifier-vote-button:disabled,
.fighter-qr-button:disabled {
  color: #778078;
  border-color: #303831;
  background: #202621;
  cursor: not-allowed;
}
.fighter-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.fighter-qr-button { padding: 0 18px; }
.duel-pending {
  min-height: calc(100vh - 74px);
  padding: clamp(64px, 9vw, 132px);
  display: grid;
  place-content: center;
  justify-items: start;
  color: white;
  background: var(--stage);
}
.duel-pending .section-label { color: var(--acid); }
.duel-pending h1 {
  max-width: 7ch;
  margin: 18px 0 28px;
  font: 900 clamp(76px, 11vw, 154px)/.78 var(--font-display);
  letter-spacing: -.04em;
}
.duel-pending p {
  max-width: 48ch;
  margin: 0 0 32px;
  color: #aeb8b0;
  line-height: 1.8;
}

.pk-arena {
  min-height: calc(100vh - 74px);
  display: grid;
  grid-template-columns: 1fr 140px 1fr;
  color: white;
  background: var(--stage);
}
.fighter {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: end;
  min-height: 720px;
  padding: 54px 54px 132px;
  overflow: hidden;
  background: linear-gradient(150deg, var(--fighter-soft), var(--fighter));
}
.fighter::before {
  content: attr(data-number);
  position: absolute;
  z-index: 2;
  top: 2%;
  right: 2%;
  color: rgba(255,255,255,.18);
  font: 900 220px/1 var(--font-display);
}
.fighter-figure {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 62%;
  height: 82%;
  transform: translateX(-50%);
  background: linear-gradient(140deg, rgba(255,255,255,.85), var(--fighter) 45%, #111);
  clip-path: polygon(34% 0, 66% 0, 100% 28%, 85% 100%, 15% 100%, 0 28%);
}
.fighter.has-photo { background: #0a0d0b; }
.fighter.has-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5, 8, 6, .05) 34%, rgba(5, 8, 6, .32) 57%, rgba(5, 8, 6, .96) 100%),
    linear-gradient(90deg, rgba(5, 8, 6, .22), transparent 48%);
}
.fighter.has-photo .fighter-figure {
  inset: 0;
  width: 100%;
  height: 100%;
  transform: none;
  background: none;
  clip-path: none;
  overflow: hidden;
}
.fighter-photo-backdrop {
  position: absolute;
  left: -10%;
  top: -10%;
  width: 120%;
  height: 120%;
  max-width: none;
  object-fit: cover;
  filter: blur(24px) brightness(.5) saturate(.8);
  transform: scale(1.08);
}
.fighter.has-photo .crop-image-frame {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.fighter.has-photo .crop-image-frame > img {
  object-fit: contain;
  transform: translate(-50%, -50%);
}
.fighter-copy { position: relative; z-index: 3; }
.fighter-copy h2 { margin: 0; font: 900 clamp(48px, 7vw, 92px)/.84 var(--font-display); }
.fighter-copy p { max-width: 34ch; margin: 15px 0 25px; font-size: 13px; line-height: 1.7; }
.vote-button { padding: 0 22px; color: var(--ink); background: white; }
.vote-button.selected { background: var(--acid); }
.versus {
  position: relative;
  z-index: 3;
  display: grid;
  place-items: center;
  background: #080a09;
}
.versus strong { font: 900 43px var(--font-display); transform: rotate(-90deg); }
.versus strong small { display: block; margin-top: 3px; font: 700 9px var(--font-ui); letter-spacing: .08em; text-align: center; }
.pk-score {
  position: absolute;
  left: 50%;
  bottom: 30px;
  z-index: 5;
  width: min(640px, calc(100% - 48px));
  transform: translateX(-50%);
  color: white;
}
.score-numbers { display: flex; justify-content: space-between; }
.score-numbers > span { display: grid; gap: 2px; }
.score-numbers > span:last-child { text-align: right; }
.score-numbers strong { font: 900 32px var(--font-display); text-shadow: 0 2px 10px rgba(0,0,0,.9); }
.score-numbers small { color: #f2f5f2; font-size: 11px; font-weight: 900; text-shadow: 0 2px 8px rgba(0,0,0,.95); }
.score-track { height: 8px; display: flex; margin-top: 8px; background: #263029; }
.score-track span:first-child { width: var(--left-score); background: var(--green-300); }
.score-track span:last-child { flex: 1; background: #ff82bb; }
.pk-round-nav { display: flex; gap: 8px; margin-top: 24px; }
.pk-round-nav button { min-height: 44px; padding: 0 18px; border: 1px solid #384039; color: white; background: transparent; cursor: pointer; }
.filter-bar .pk-round-nav button { color: var(--ink); border-color: #aeb8b0; }
.pk-round-nav button.active { color: var(--ink); border-color: var(--acid); background: var(--acid); }

.center-final-bar {
  color: white;
  border-color: rgba(244, 212, 116, .28);
  background: #0a0c0a;
}
.center-final-bar strong { color: var(--gold); }
.center-final-bar .pk-round-nav button,
.center-final-bar .pk-round-nav button.active {
  color: #171207;
  border-color: var(--gold);
  background: var(--gold);
}
.center-final-arena {
  position: relative;
  background:
    radial-gradient(circle at 50% 30%, rgba(244, 212, 116, .18), transparent 26%),
    #070907;
}
.center-final-arena::before {
  content: "CENTER FINAL";
  position: absolute;
  left: 50%;
  top: 18px;
  z-index: 4;
  transform: translateX(-50%);
  color: rgba(244, 212, 116, .58);
  font: 900 clamp(28px, 4vw, 60px)/1 var(--font-display);
  letter-spacing: -.03em;
  white-space: nowrap;
  pointer-events: none;
}
.center-final-page .fighter { border-top: 3px solid var(--gold); }
.center-final-page .fighter-copy .section-label { color: var(--gold); }
.center-final-page .versus {
  color: #171207;
  background: linear-gradient(180deg, #f7e39c, #c4932e);
}
.center-final-page .versus strong { font-size: 72px; }
.center-final-page .versus strong small { color: #463510; }
.center-final-page .score-numbers strong { color: var(--gold); }
.center-final-page .score-track { background: #332b17; }
.center-final-page .score-track span:first-child { background: var(--gold); }
.center-final-page .score-track span:last-child { background: #fff4c9; }
.center-final-page.scores-hidden .center-final-arena::before { content: "VOTES SEALED"; }
.center-final-page.scores-hidden .versus { color: #fff4c9; background: #17150e; }
.center-final-page.scores-hidden .versus strong small { color: #d8c995; }
.center-final-page .fighter.final-winner {
  border-color: #fff4c9;
  box-shadow: inset 0 0 0 5px var(--gold);
}
.center-final-page .fighter.final-winner .fighter-copy::before {
  content: "CENTER · 冠军C位";
  display: inline-block;
  margin-bottom: 12px;
  padding: 7px 10px;
  color: #171207;
  background: var(--gold);
  font-size: 10px;
  font-weight: 900;
}
.final-score-sealed { text-align: center; }
.sealed-score-copy { display: flex; align-items: end; justify-content: space-between; gap: 20px; }
.sealed-score-copy strong { color: var(--gold); font: 900 30px var(--font-display); }
.sealed-score-copy span { color: #fff4c9; font-size: 11px; font-weight: 800; }

@keyframes sealedCountSweep {
  0%, 35% { transform: translateX(-140%) skewX(-18deg); }
  72%, 100% { transform: translateX(460%) skewX(-18deg); }
}

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.about-block { min-height: 300px; padding: clamp(34px, 5vw, 74px); background: white; }
.about-block.dark { color: white; background: var(--stage); }
.about-block.green { color: white; background: var(--green-700); }
.about-block h2 { margin: 0 0 22px; font: 800 clamp(32px, 4vw, 58px)/.95 var(--font-display); }
.about-block p, .about-block li { max-width: 55ch; color: var(--muted); font-size: 14px; line-height: 1.9; }
.about-block.dark p, .about-block.dark li { color: #b8c1ba; }
.about-block.green p, .about-block.green li { color: #d5f6dd; }
.about-block ol { padding-left: 22px; }
.about-block li small { display: block; margin: 2px 0 12px; color: #8f9a91; font-size: 11px; line-height: 1.6; }

.sponsor-placement { position: relative; overflow: hidden; color: white; background: var(--green-700); }
.sponsor-placement.has-campaign-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 37, 18, .96), rgba(5, 37, 18, .72)), var(--sponsor-image) center / cover;
}
.sponsor-placement-inner { position: relative; min-height: 132px; padding: 24px 0; display: grid; grid-template-columns: minmax(170px, .35fr) minmax(0, 1fr); align-items: center; gap: clamp(24px, 5vw, 80px); }
.sponsor-placement-title span, .sponsor-placement-title strong { display: block; }
.sponsor-placement-title strong { margin-top: 8px; font: 900 clamp(24px, 2.4vw, 38px)/1 var(--font-display); }
.sponsor-disclosure { color: var(--acid); font-size: 9px; font-weight: 900; letter-spacing: .12em; }
.sponsor-brand-list { min-width: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 1px; background: rgba(255,255,255,.16); }
.sponsor-brand { min-width: 0; min-height: 76px; padding: 12px 16px; display: grid; grid-template-columns: 48px minmax(0, 1fr) auto; align-items: center; gap: 12px; color: white; background: rgba(8, 20, 12, .72); }
a.sponsor-brand:hover { background: rgba(5, 10, 7, .94); }
.sponsor-brand img, .sponsor-monogram { width: 48px; height: 48px; object-fit: contain; background: white; }
.sponsor-monogram { display: grid; place-items: center; color: var(--green-700); font-size: 22px; font-weight: 900; }
.sponsor-brand-copy { min-width: 0; }
.sponsor-brand-copy small, .sponsor-brand-copy strong, .sponsor-brand-copy em { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.sponsor-brand-copy small { color: var(--green-300); font-size: 9px; font-weight: 900; }
.sponsor-brand-copy strong { margin-top: 3px; font-size: 14px; }
.sponsor-brand-copy em { margin-top: 4px; color: #bfcbc2; font-size: 10px; font-style: normal; }
.sponsor-brand > b { color: var(--acid); font-size: 15px; }
.sponsor-persona { background: var(--stage); border-top: 1px solid #303832; }
.sponsor-pyramid { width: min(900px, 92%); margin: 16px auto 26px; padding: 13px 14px 14px; color: #fff5ce; border: 1px solid rgba(244,212,116,.58); background: linear-gradient(180deg, #3d3216, #17140c); box-shadow: 0 14px 40px rgba(0,0,0,.2); }
.sponsor-pyramid > .sponsor-disclosure { display: block; margin: 0 0 8px; color: var(--gold); text-align: center; }
.sponsor-pyramid .sponsor-brand-list { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); background: rgba(244,212,116,.16); }
.sponsor-pyramid .sponsor-brand { min-height: 62px; padding: 9px 12px; background: rgba(12,10,5,.68); }
.sponsor-pyramid .sponsor-brand img, .sponsor-pyramid .sponsor-monogram { width: 40px; height: 40px; }
.sponsor-pyramid .sponsor-brand-copy small { color: var(--gold); }
.sponsor-pyramid .sponsor-brand > b { color: var(--gold); }

.partner-wall { grid-column: 1 / -1; width: 100%; padding-bottom: 38px; border-bottom: 1px solid #252a27; }
.partner-wall-inner { display: grid; grid-template-columns: minmax(190px, .35fr) minmax(0, 1fr); align-items: center; gap: clamp(24px, 5vw, 80px); }
.partner-wall-heading span, .partner-wall-heading strong { display: block; }
.partner-wall-heading span { color: var(--green-300); font-size: 9px; font-weight: 900; letter-spacing: .12em; }
.partner-wall-heading strong { margin-top: 8px; color: white; font-size: 17px; }
.partner-wall-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1px; background: #29302b; }
.partner-wall .sponsor-brand { background: #111512; }

.site-footer {
  min-height: 190px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(40px, 6vw, 96px);
  padding: 50px max(24px, calc((100vw - 1380px) / 2));
  color: #9ca59e;
  background: #080a09;
  font-size: 11px;
}
.footer-logo { color: white; font: 800 27px var(--font-display); }
.footer-credits {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: clamp(24px, 4vw, 64px);
}
.footer-credits div { min-width: 0; }
.footer-credits strong,
.footer-credits span { display: block; }
.footer-credits strong { margin-bottom: 7px; color: white; font-size: 12px; }
.footer-credits span { line-height: 1.6; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { min-height: 44px; display: inline-flex; align-items: center; color: white; }
.toast {
  position: fixed;
  left: 50%;
  bottom: 36px;
  z-index: 200;
  min-width: min(420px, calc(100vw - 36px));
  padding: 16px 20px;
  transform: translateX(-50%);
  color: white;
  background: var(--ink);
  border-bottom: 3px solid var(--green-500);
  box-shadow: var(--shadow);
  text-align: center;
  font-size: 13px;
}
.bottom-nav { display: none; }

@keyframes pageIn { from { opacity: 0; transform: translateY(10px); } }
@keyframes sweep { 0%, 18% { left: -32%; } 55%, 100% { left: 120%; } }
@keyframes qrDialogIn { from { opacity: 0; transform: translateY(18px) scale(.97); } }
@keyframes splashReveal { from { opacity: 0; filter: blur(8px); } }
@keyframes promoIn { from { opacity:0; transform:translateY(24px) scale(.97); filter:blur(5px); } }
@keyframes gratitudeMarquee { to { transform: translateX(-50%); } }

@media (max-width: 1100px) {
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav, .header-utility { display: none; }
  .menu-button {
    justify-self: end;
    width: 46px; height: 46px;
    display: grid; align-content: center; gap: 6px;
    border: 0; background: transparent;
  }
  .menu-button span { width: 23px; height: 2px; justify-self: center; background: var(--ink); transition: transform .2s; }
  .menu-button[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .mobile-menu {
    position: fixed; inset: 74px 0 0; z-index: 80;
    display: grid; align-content: start;
    padding: 24px; color: white; background: rgba(8,10,9,.98);
  }
  .mobile-menu[hidden] { display: none; }
  .mobile-menu a { min-height: 64px; display: flex; align-items: center; border-bottom: 1px solid #283029; font: 800 24px var(--font-display); }
  .mobile-menu a[href="#/support"] { color: var(--acid); }
  .persona-rail { grid-template-columns: repeat(4, 1fr); }
  .persona-grid { grid-template-columns: repeat(3, 1fr); }
  .rank-band-inner { grid-template-columns: 190px 1fr; }
  .band-link { display: none; }
  .pk-arena { grid-template-columns: 1fr 90px 1fr; }
  .fighter { padding: 35px 35px 118px; }
  .lazy-pay-mobile {
    width: min(460px, 100%);
    margin-top: 14px;
    padding: 11px 14px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
  }
  .lazy-pay-mobile span {
    padding-right: 10px;
    border-right: 1px solid rgba(11, 13, 12, .28);
  }
  .lazy-pay-mobile strong { margin: 0; font-size: 13px; }
  .lazy-pay-mobile b { font-size: 10px; white-space: nowrap; }
}

@media (max-width: 760px) {
  body { padding-bottom: 66px; }
  .site-header { height: 62px; padding: 0 18px; }
  .gratitude-banner { min-height: 34px; grid-template-columns: auto minmax(0,1fr); }.gratitude-signal{padding:0 12px;font-size:8px}.gratitude-track{min-height:34px}.gratitude-track span{padding:0 24px;font-size:11px}
  .brand { gap: 8px; }
  .brand-mark { width: 44px; height: 48px; }
  .brand small { display: none; }
  .mobile-menu { inset: 62px 0 66px; }
  .shell { width: min(100% - 32px, 1380px); }
  .splash-shade {
    background:
      linear-gradient(0deg, rgba(3,8,5,.93) 0%, rgba(3,8,5,.62) 42%, rgba(3,8,5,.04) 76%),
      linear-gradient(90deg, rgba(3,8,5,.28), transparent 70%);
  }
  .splash-close {
    top: max(14px, env(safe-area-inset-top));
    right: max(14px, env(safe-area-inset-right));
    width: 48px;
    height: 48px;
  }
  .splash-brand {
    left: max(18px, env(safe-area-inset-left));
    top: max(18px, env(safe-area-inset-top));
  }
  .splash-content {
    left: 18px;
    bottom: max(24px, env(safe-area-inset-bottom));
    width: calc(100% - 36px);
  }
  .splash-eyebrow { margin-bottom: 10px; font-size: 10px; }
  .splash-content h2 { max-width: 9ch; font-size: clamp(44px, 14vw, 66px); }
  .splash-body { margin-top: 15px; font-size: 13px; line-height: 1.6; }
  .splash-action-row { margin-top: 20px; display: grid; gap: 10px; }
  .splash-action { min-width: 0; min-height: 56px; }
  .splash-countdown { min-height: 54px; grid-template-columns: 1fr auto; align-items: center; }
  .splash-countdown strong { margin: 0; font-size: 18px; }
  .promo-dialog { width: calc(100vw - 16px); max-height: calc(100dvh - 16px); }
  .promo-panel { min-height: 0; }
  .promo-media img,.promo-media video { max-height: 52dvh; }
  .promo-copy { padding:18px;display:block; }
  .promo-copy .section-label { padding-right:48px;font-size:9px; }
  .promo-copy h2 { margin:8px 0 10px;font-size:clamp(26px,8.5vw,36px);line-height:1.02; }
  .promo-copy>p:not(.section-label) { margin:0;font-size:13px;line-height:1.55; }
  .promo-action { min-height:54px;margin-top:16px; }
  .promo-close { right:8px;top:8px;width:44px;height:44px; }
  .section { padding: 64px 0; }
  .section-heading, .page-title { display: block; }
  .section-heading h2, .page-title h1 { font-size: clamp(44px, 15vw, 70px); }
  .section-heading p, .page-title p { margin-top: 20px; }
  .hero { min-height: auto; }
  .hero-grid { min-height: auto; display: block; }
  .hero-copy { min-height: 57vh; padding: 58px 22px 105px; }
  .hero-copy h1 { font-size: clamp(58px, 17vw, 74px); }
  .hero-copy > p { margin: 25px 0; font-size: 18px; }
  .lazy-pay-mobile {
    min-height: 54px;
    margin-top: 12px;
  }
  .hero-media { min-height: 48vh; clip-path: polygon(0 8%, 100% 0, 100% 100%, 0 100%); }
  .hero-media::before { background: linear-gradient(180deg, white, transparent 23%, rgba(0,0,0,.55)); }
  .hero-meta { left: 22px; bottom: 28px; }
  .hero-meta > div:last-child { display: none; }
  .hero-stamp { right: 18px; bottom: 23px; }
  .rank-band-inner { min-height: auto; display: block; padding: 30px 0; }
  .top-three { display: block; margin-top: 20px; }
  .top-row { grid-template-columns: 34px 42px 1fr auto; }
  .manifesto-section { padding: 70px 0; }
  .manifesto-grid { display: block; }
  .manifesto-title h2 { max-width: 8ch; font-size: 52px; }
  .manifesto-copy { margin-top: 42px; }
  .manifesto-lead { font-size: 18px; line-height: 1.8; }
  .manifesto-question { margin: 32px 0 38px; font-size: 38px; }
  .manifesto-credits { grid-template-columns: 1fr; gap: 14px; }
  .fan-cinema-section { padding: 58px 0; }
  .fan-cinema-shell { display: block; }
  .fan-cinema-heading { position: static; margin-bottom: 28px; }
  .fan-cinema-heading h2 { margin: 14px 0 16px; font-size: 52px; }
  .fan-cinema-heading p { max-width: none; }
  .fan-film-copy { padding: 20px 18px; display: block; }
  .fan-film-copy h3 { margin: 8px 0 12px; font-size: 30px; }
  .fan-film-copy p { font-size: 13px; }
  .fan-film-copy small { display: block; margin-top: 10px; }
  .fan-film-copy a { width: 100%; min-width: 0; margin-top: 18px; }
  .fan-film-tabs { grid-template-columns: 1fr; }
  .persona-rail { grid-template-columns: repeat(2, 1fr); }
  .persona-card { min-height: 0; }
  .persona-card.with-vote { min-height: 0; }
  .persona-card.with-vote .persona-card-body { min-height: 0; }
  .persona-vote-button { min-height: 72px; padding: 12px; }
  .persona-vote-button { display: block; }
  .persona-vote-button span { display: block; margin-top: 3px; text-align: left; }
  .schedule-grid { display: block; }
  .schedule-list { margin-top: 38px; }
  .schedule-item { grid-template-columns: 90px 1fr; }
  .schedule-item em { grid-column: 1 / -1; text-align: left; }
  .page-hero { padding: 58px 0 38px; }
  .filter-bar { top: 62px; overflow-x: auto; padding: 10px 16px; scrollbar-width: none; }
  .filter-bar button { flex: 0 0 auto; }
  .persona-grid { grid-template-columns: repeat(2, 1fr); }
  .persona-grid .persona-card { min-height: 0; }
  .detail-hero { min-height: auto; display: flex; flex-direction: column; }
  .detail-art { min-height: 0; height: clamp(480px, 75vh, 720px); }
  .detail-copy { padding: 46px 22px 64px; }
  .detail-copy h1 { font-size: 70px; }
  .detail-stats strong { font-size: 23px; }
  .detail-qr-inline { grid-template-columns: 72px minmax(0, 1fr); }
  .detail-qr-thumb { width: 72px; height: 72px; }
  .video-stage { padding: 56px 0; }
  .video-frame { width: min(100%, 420px); margin: 0 auto; aspect-ratio: 9 / 16; }
  .video-frame video { object-fit: contain; }
  .support-stage { min-height: auto; display: flex; flex-direction: column; }
  .support-identity {
    min-height: 194px;
    padding: 58px 18px 18px;
    justify-content: flex-start;
  }
  .support-back { left: 18px; top: 16px; }
  .support-identity .section-label { margin-top: 12px; font-size: 9px; }
  .support-number { right: 2%; top: 0; font-size: 112px; }
  .support-identity h1 { max-width: 11ch; margin: 8px 0 4px; font-size: 42px; line-height: .86; }
  .support-identity > p { display: none; }
  .support-data {
    max-width: none;
    margin-top: 10px;
    padding-top: 8px;
    grid-template-columns: auto 1fr;
    align-items: baseline;
    gap: 10px;
  }
  .support-data strong { margin: 0; font-size: 25px; }
  .support-data small { display: none; }
  .support-qr-panel { padding: 18px 16px 56px; }
  .support-qr-panel .system-caption { margin-bottom: 10px; }
  .support-qr { width: 100%; }
  .support-qr.ready { padding: 14px; }
  .support-notice { padding: 16px 0; }
  .support-original { width: 100%; margin-top: 14px; }
  .support-unavailable { min-height: calc(100vh - 128px); padding: 56px 22px; }
  .support-unavailable h1 { font-size: 72px; }
  .support-hub-hero { padding: 22px 0 18px; }
  .support-hub-title { display: block; }
  .support-hub-title h1 {
    max-width: none;
    margin-top: 7px;
    font-size: 38px;
    line-height: .9;
  }
  .support-hub-summary { margin-top: 16px; }
  .support-hub-summary p { padding: 8px 0; font-size: 11px; line-height: 1.55; }
  .support-hub-summary > div { padding: 7px 0; }
  .support-hub-summary strong { font-size: 24px; }
  .support-hub-content { padding: 14px 0 56px; }
  .support-hub-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .support-card { min-height: 280px; padding: 12px; }
  .support-card-qr { margin: 10px auto; padding: 8px; }
  .support-card-copy strong { font-size: 14px; }
  .ranking-page .page-hero { padding: 34px 0 22px; }
  .ranking-page .ranking-stage { padding: 20px 0 56px; }
  .mobile-pyramid-label {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
    color: var(--gold);
  }
  .mobile-pyramid-label strong { font: 800 18px var(--font-display); }
  .mobile-pyramid-label span { color: #b8aa83; font-size: 10px; }
  .ranking-page .pyramid {
    width: 100%;
    display: flex;
    gap: 4px;
    padding: 14px 0 24px;
  }
  .ranking-page .pyramid-row { width: 100%; gap: 4px; }
  .ranking-page .seat,
  .ranking-page .seat.top-seat {
    width: calc((100% - 20px) / 6);
    min-height: 46px;
    display: grid;
    grid-template-columns: 1fr;
    place-content: center;
    padding: 4px;
    color: #2a1b05;
    border-color: #f4d474;
    background: linear-gradient(145deg, #ffeeb0, #c78c24);
    box-shadow: 0 8px 18px rgba(244, 212, 116, .09);
  }
  .ranking-page .pyramid-row:nth-child(2n) .seat { background: linear-gradient(145deg, #f7d978, #a96f17); }
  .ranking-page .seat.top-seat {
    min-height: 62px;
    background: linear-gradient(145deg, #fff6c9, #e7ae34);
    box-shadow: 0 10px 28px rgba(244, 212, 116, .24);
  }
  .ranking-page .seat-rank { grid-row: auto; font-size: 18px; }
  .ranking-page .seat-name {
    display: -webkit-box;
    min-height: 16px;
    overflow: hidden;
    font-size: 7px;
    line-height: 1.1;
    text-align: center;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
  .ranking-page .seat-percent { display: none; }
  .ranking-page .ranking-stage::after {
    left: 2%;
    right: 2%;
    bottom: auto;
    top: 90px;
    height: 280px;
    background: radial-gradient(circle, rgba(244,212,116,.28), transparent 66%);
  }
  .mobile-ranking-list { position: relative; z-index: 3; display: block; margin-top: 14px; border-top: 1px solid #3b372a; }
  .mobile-rank-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 92px;
    align-items: center;
    gap: 10px;
    min-height: 72px;
    border-bottom: 1px solid #2e3730;
  }
  .mobile-rank-row:first-child { color: var(--acid); }
  .mobile-rank-person {
    min-width: 0;
    min-height: 72px;
    display: grid;
    grid-template-columns: 32px 44px minmax(0, 1fr);
    align-items: center;
    gap: 8px;
  }
  .mobile-rank-row .mini-avatar { width: 44px; height: 44px; }
  .mobile-rank-row strong { display: block; font-size: 12px; }
  .mobile-rank-row small { color: #9aa49c; font-size: 9px; }
  .mobile-rank-vote {
    width: 92px;
    min-height: 58px;
    padding: 0 8px;
    color: var(--ink);
    border: 0;
    background: var(--acid);
    font-weight: 900;
  }
  .mobile-rank-vote strong { font-size: 11px; }
  .mobile-rank-vote span { font-size: 8px; }
  .mobile-rank-vote:disabled { color: #7f8981; background: #283029; }
  .ranking-summary { grid-template-columns: 1fr; margin-top: 30px; }
  .ranking-summary div { border-bottom: 1px solid #303a33; }
  .duel-ranking-page .page-title h1 { font-size: 58px; }
  .duel-ranking-page .page-title p { max-width: 30ch; }
  .duel-ranking-grid { grid-template-columns: 1fr; gap: 12px; }
  .duel-ranking-pair { grid-template-columns: 1fr 36px 1fr; }
  .duel-ranking-pair button { min-height: 180px; padding: 22px 14px; }
  .duel-ranking-pair strong { font-size: 25px; }
  .duel-ranking-pair b { font-size: 22px; }
  .center-final-ranking .page-hero::after { right: -16px; font-size: 210px; }
  .final-crown-banner { min-height: 150px; margin-bottom: 14px; }
  .final-crown-banner strong { font-size: 160px; }
  .final-crown-banner h2 { max-width: 12ch; margin-inline: auto; font-size: 34px; line-height: 1.06; }
  .final-ranking-match .duel-ranking-pair { grid-template-columns: 1fr 32px 1fr; }
  .final-ranking-match .duel-ranking-pair button { min-height: 220px; padding: 22px 12px; }
  .final-ranking-match .duel-ranking-pair strong { font-size: 30px; }
  .final-ranking-match .duel-ranking-pair i { font-size: 24px; }
  .stage-filter { align-items: flex-start; }
  .stage-filter span { max-width: 16ch; text-align: right; }
  .qualifier-stage { padding: 58px 0 78px; }
  .qualifier-intro { display: block; margin-bottom: 40px; }
  .qualifier-intro h1 { font-size: 84px; }
  .qualifier-summary { margin-top: 34px; }
  .qualifier-summary strong { font-size: 20px; }
  .qualifier-row {
    min-height: 108px;
    grid-template-columns: minmax(0, 1fr) 82px;
    gap: 8px;
  }
  .qualifier-row-link {
    min-height: 108px;
    grid-template-columns: 36px 44px minmax(0, 1fr);
    gap: 10px;
  }
  .qualifier-rank { font-size: 22px; }
  .qualifier-row .mini-avatar { width: 44px; height: 44px; }
  .qualifier-persona small { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .qualifier-amount { grid-column: 3; text-align: left; }
  .qualifier-amount strong { display: inline; font-size: 16px; }
  .qualifier-amount small { display: inline; margin: 0 0 0 8px; }
  .qualifier-row em { display: none; }
  .qualifier-vote-button { width: 82px; min-height: 64px; }
  .qualifier-vote-button strong { font-size: 11px; }
  .duel-pending { min-height: calc(100vh - 128px); padding: 64px 22px; }
  .duel-pending h1 { font-size: 72px; }
  .pk-arena { min-height: auto; display: block; }
  .fighter { min-height: 64vh; padding: 0; }
  .fighter::before { font-size: 150px; }
  .fighter-copy { position: absolute; left: 0; right: 0; bottom: 28px; padding: 0 22px; }
  .fighter-copy .section-label,
  .fighter-copy p,
  .fighter-actions { display: none; }
  .fighter-copy h2 { max-width: 88%; font-size: clamp(44px, 14vw, 64px); }
  .versus { min-height: 58px; }
  .versus strong { transform: none; font-size: 28px; }
  .center-final-arena::before { top: 16px; font-size: 30px; }
  .center-final-page .versus strong { font-size: 42px; }
  .pk-score { position: static; width: 100%; padding: 14px 22px 18px; transform: none; background: #080a09; }
  .sealed-score-copy { display: grid; justify-content: stretch; gap: 4px; text-align: left; }
  .sealed-score-copy strong { font-size: 25px; }
  .sealed-score-copy span { font-size: 9px; }
  .score-numbers strong { font-size: 25px; }
  .score-numbers small { font-size: 10px; }
  .pk-round-nav { overflow-x: auto; padding-bottom: 4px; }
  .pk-round-nav button { flex: 0 0 auto; }
  .about-grid { display: block; }
  .about-block { min-height: 0; }
  .site-footer { display: block; padding-bottom: 90px; }
  .sponsor-placement-inner, .partner-wall-inner { display: block; }
  .sponsor-placement-title, .partner-wall-heading { margin-bottom: 18px; }
  .sponsor-brand-list, .partner-wall-list { grid-template-columns: 1fr; }
  .sponsor-brand { min-height: 70px; }
  .sponsor-pyramid { width: 100%; margin: 12px 0 18px; }
  .partner-wall { padding-bottom: 30px; }
  .footer-credits { margin-top: 30px; grid-template-columns: 1fr; gap: 18px; }
  .footer-links { margin-top: 24px; }
  .bottom-nav {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 100;
    height: 66px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    padding-bottom: env(safe-area-inset-bottom);
    color: #7e8780;
    border-top: 1px solid #2e342f;
    background: rgba(9,12,10,.97);
    backdrop-filter: blur(14px);
  }
  .bottom-nav a { min-width: 0; display: grid; place-content: center; gap: 3px; text-align: center; font-size: 9px; }
  .bottom-nav a span { font-size: 18px; line-height: 1; }
  .bottom-nav a.active { color: white; }
  .bottom-nav .bottom-primary {
    color: white;
    background: var(--green-700);
    font-weight: 900;
  }
  .bottom-nav .bottom-primary span { color: var(--acid); }
  .bottom-nav .bottom-primary.active {
    color: var(--ink);
    background: var(--acid);
  }
  .bottom-nav .bottom-primary.active span { color: var(--green-700); }
  .toast { bottom: 82px; }
}
@media (prefers-reduced-motion: reduce) { .gratitude-track { animation-duration: 80s; } .promo-dialog[open], .splash-dialog[open] { animation: none; } }

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

/* 第一季线上纪念馆 */
.archive-mode .gratitude-banner,
.archive-mode .qr-dialog,
.archive-mode .splash-dialog,
.archive-mode .promo-dialog { display: none !important; }
.archive-status-banner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 7px 20px;
  color: #192015;
  background: linear-gradient(90deg, #d7b95c, var(--gold), #fff0b5, var(--gold), #d7b95c);
  border-bottom: 1px solid rgba(90,68,12,.25);
  font-size: 11px;
  letter-spacing: .06em;
}
.archive-status-banner span { font-weight: 900; letter-spacing: .14em; }
.archive-status-banner strong { font-size: 12px; }
.archive-header-action { background: var(--stage); }
.archive-hero {
  min-height: calc(100vh - 108px);
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(440px, 1.1fr);
  background: #0c120e;
  color: white;
}
.archive-hero-copy { align-self: center; padding: clamp(56px, 8vw, 130px) max(30px, calc((100vw - 1440px) / 2)); padding-right: clamp(30px, 6vw, 90px); }
.archive-kicker { color: var(--gold); font-size: 11px; font-weight: 900; letter-spacing: .14em; }
.archive-hero h1 { margin: 22px 0; font: 900 clamp(66px, 8vw, 138px)/.78 var(--font-display); letter-spacing: -.075em; }
.archive-hero h1 em { color: var(--acid); font-style: normal; }
.archive-hero-copy > p { max-width: 42em; color: #bbc8be; line-height: 1.85; }
.archive-champion-name { margin: 34px 0 4px; padding-left: 18px; box-shadow: inset 2px 0 var(--gold); }
.archive-champion-name small { display: block; color: var(--gold); font-size: 10px; font-weight: 900; letter-spacing: .12em; }
.archive-champion-name strong { display: block; margin-top: 6px; font-size: clamp(28px, 3vw, 48px); }
.archive-champion { position: relative; min-height: 680px; overflow: hidden; background: radial-gradient(circle at 50% 30%, #29452e, #0e1711 65%); }
.archive-champion .archive-image-frame { width: 100%; height: 100%; }
.archive-champion .archive-image-frame::after { content: ""; position: absolute; inset: 45% 0 0; z-index: 2; background: linear-gradient(transparent, rgba(7,10,8,.92)); }
.archive-champion > div:last-child { position: absolute; left: 8%; right: 8%; bottom: 7%; z-index: 2; display: grid; grid-template-columns: 1fr auto; align-items: end; }
.archive-champion > div:last-child small { grid-column: 1/-1; color: var(--gold); font-size: 10px; font-weight: 900; letter-spacing: .15em; }
.archive-champion > div:last-child strong { font-size: clamp(36px, 4vw, 68px); }
.archive-champion > div:last-child em { color: var(--acid); font: 900 24px var(--font-display); font-style: normal; }
.archive-crown { position: absolute; right: 3%; top: 0; color: rgba(182,255,55,.18); font: 900 clamp(180px, 24vw, 390px)/1 var(--font-display); }
.archive-top3 { padding: clamp(70px, 9vw, 130px) 0; background: #f3f1e9; }
.archive-section-title span, .archive-highlight-grid > div > span, .archive-entry .shell > span { color: #846c25; font-size: 10px; font-weight: 900; letter-spacing: .15em; }
.archive-section-title h2, .archive-highlight h2, .archive-entry h2 { margin: 8px 0 34px; font: 900 clamp(38px, 5vw, 72px)/.95 var(--font-display); }
.archive-podium, .archive-final-top { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: end; }
.archive-podium-card { position: relative; min-width: 0; display: grid; padding-bottom: 22px; border-bottom: 1px solid #c9c2aa; }
.archive-podium-photo { height: clamp(300px, 39vw, 580px); overflow: hidden; background: #d9ddd7; }
.archive-podium-card.rank-1 .archive-podium-photo { height: clamp(360px, 46vw, 680px); border-top: 5px solid var(--gold); }
.archive-podium-photo .archive-image-frame { width: 100%; height: 100%; }
.archive-podium-card > span { margin-top: -42px; padding-left: 14px; position: relative; color: white; font: 900 76px/1 var(--font-display); text-shadow: 0 3px 20px rgba(0,0,0,.5); }
.archive-podium-card > strong { padding: 10px 14px 0; font-size: clamp(20px, 2vw, 32px); }
.archive-podium-card > small { padding: 4px 14px 0; color: #736b56; font-weight: 800; }
.archive-highlight { padding: clamp(70px, 9vw, 120px) 0; color: white; background: #101512; }
.archive-highlight-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(34px, 7vw, 110px); align-items: center; }
.archive-highlight p { max-width: 34em; color: #aeb8b0; line-height: 1.8; }
.archive-film { position: relative; aspect-ratio: 16/9; overflow: hidden; background: #000; }
.archive-film video, .archive-film iframe { width: 100%; height: 100%; object-fit: cover; border: 0; }
.archive-entry { padding: 90px 0; }
.archive-entry .shell > div { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.archive-entry a { display: flex; justify-content: space-between; padding: 24px 4px; border-bottom: 1px solid var(--line); font-weight: 900; }
.archive-entry a + a { margin-left: 26px; }
.archive-ranking-stage, .archive-duels { padding: clamp(50px, 8vw, 100px) 0; color: white; background: #0d130f; }
.archive-ranking-hero { background: #f1efe7; }
.archive-final-top { margin-bottom: 50px; }
.archive-finalist { min-width: 0; display: grid; grid-template-columns: auto 1fr; align-items: end; border: 1px solid #344138; background: #151d18; }
.archive-finalist > div { grid-column: 1/-1; height: clamp(250px, 30vw, 430px); overflow: hidden; }
.archive-finalist.rank-1 { border-color: var(--gold); transform: translateY(-18px); }
.archive-finalist > div .archive-image-frame { width: 100%; height: 100%; }
.archive-finalist > span { padding: 14px 0 14px 18px; color: var(--gold); font: 900 48px var(--font-display); }
.archive-finalist > strong { padding: 14px 18px; font-size: 24px; text-align: right; }
.archive-finalist > small { grid-column: 1/-1; padding: 0 18px 18px; color: #aebbaf; text-align: right; }
.archive-pyramid-block { margin: clamp(54px, 8vw, 100px) 0; padding: clamp(38px, 6vw, 72px) 0; border-top: 1px solid #354238; border-bottom: 1px solid #354238; }
.archive-pyramid-block > header { display: grid; grid-template-columns: minmax(0, 1fr) minmax(260px, .55fr); column-gap: 50px; align-items: end; margin-bottom: 40px; }
.archive-pyramid-block > header span { grid-column: 1/-1; color: var(--gold); font-size: 10px; font-weight: 900; letter-spacing: .14em; }
.archive-pyramid-block > header h2 { margin: 8px 0 0; font: 900 clamp(36px, 5vw, 66px)/.95 var(--font-display); }
.archive-pyramid-block > header p { max-width: 34em; margin: 0; color: #aeb8b0; line-height: 1.75; }
.archive-pyramid-block .seat { border-color: #51482d; background: #191c17; }
.archive-pyramid-block .seat:hover { background: #28281c; }
.archive-pyramid-block .seat.top-seat { color: #211a08; border-color: var(--gold); background: linear-gradient(145deg, #fff0ad, #d2a13b); box-shadow: 0 18px 44px rgba(244,212,116,.16); }
.archive-pyramid-block .top-seat .seat-percent { color: #5c4818; }
.archive-rank-list { border-top: 1px solid #354238; }
.archive-rank-list a { min-height: 76px; display: grid; grid-template-columns: 70px minmax(160px, 1fr) 1fr auto; align-items: center; gap: 16px; border-bottom: 1px solid #354238; transition: background .2s ease, transform .2s ease; }
.archive-rank-list a:hover { background: #172019; transform: translateX(8px); }
.archive-rank-list a > strong { color: var(--gold); font: 900 30px var(--font-display); }
.archive-rank-list a > span { font-size: 20px; font-weight: 900; }
.archive-rank-list a > small { color: #97a29a; }
.archive-rank-list a > b { color: var(--acid); font-size: 11px; }
.archive-data-note { margin: 36px 0 0; color: #859087; font-size: 10px; letter-spacing: .08em; }
.season-timeline { padding: clamp(50px, 8vw, 110px) 0; background: #f0efe8; }
.season-timeline article { min-height: 150px; display: grid; grid-template-columns: 70px 180px 1fr; gap: 30px; align-items: start; padding: 34px 0; border-top: 1px solid #c8c5b8; }
.season-timeline article > span { color: #9c812e; font: 900 36px var(--font-display); }
.season-timeline time { padding-top: 8px; color: #5d655f; font-weight: 900; }
.season-timeline h2 { margin: 0 0 10px; font-size: clamp(24px, 3vw, 42px); }
.season-timeline p { max-width: 55em; margin: 0; color: #68706a; line-height: 1.75; }
.season-closed { padding: 38px 0; color: #151a16; background: var(--gold); }
.season-closed .shell { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.season-closed strong { font-size: 22px; }
.season-closed a { font-weight: 900; }
.archive-duels .shell { display: grid; gap: 30px; }
.archive-duel-card { border: 1px solid #354238; background: #141b16; }
.archive-duel-card header { display: flex; justify-content: space-between; padding: 16px 20px; color: #a9b4ab; border-bottom: 1px solid #354238; font-size: 10px; letter-spacing: .1em; }
.archive-duel-card header strong { color: var(--gold); }
.archive-duel-card > div { display: grid; grid-template-columns: 1fr 70px 1fr; align-items: center; }
.archive-duel-card a { min-width: 0; display: grid; grid-template-columns: 150px 1fr; align-items: center; gap: 20px; padding: 20px; }
.archive-duel-card a > div { width: 150px; aspect-ratio: 4/5; overflow: hidden; }
.archive-duel-card a .archive-image-frame { width: 100%; height: 100%; }
.archive-duel-card a strong { font-size: clamp(20px, 3vw, 38px); }
.archive-duel-card a small { grid-column: 2; color: #9ea9a0; }
.archive-duel-card i { color: var(--acid); font: 900 24px var(--font-display); font-style: normal; text-align: center; }
.archive-empty { padding: 90px 30px; text-align: center; border: 1px solid #354238; }
.archive-empty strong { font-size: 30px; }
.archive-empty p { color: #9ea9a0; }
.archive-roster-section { padding: 30px 0 48px; border-top: 1px solid #354238; }
.archive-roster-section header span { color: var(--gold); font-size: 10px; font-weight: 900; letter-spacing: .14em; }
.archive-roster-section header h2 { margin: 7px 0 24px; font: 900 clamp(30px, 4vw, 52px) var(--font-display); }
.archive-roster-section > div { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.archive-roster-section a { min-width: 0; display: block; padding-bottom: 15px; border-bottom: 1px solid #354238; }
.archive-roster-section a > div { aspect-ratio: 4/5; overflow: hidden; background: #1b241e; }
.archive-roster-section a .archive-image-frame { width: 100%; height: 100%; }
.archive-roster-section a strong { display: block; margin-top: 12px; font-size: 18px; }
.archive-roster-section a small { color: #9ea9a0; }
.archive-match-note { margin: 0; color: #8e9990; font-size: 11px; line-height: 1.7; }
.season-credits { padding: clamp(72px, 10vw, 150px) 0; color: #f4f6f2; background: #0d130f; }
.season-credits-heading { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr); column-gap: clamp(36px, 8vw, 120px); align-items: end; }
.season-credits-heading > span { grid-column: 1/-1; margin-bottom: 18px; color: var(--gold); font-size: 10px; font-weight: 900; letter-spacing: .15em; }
.season-credits-heading h2 { max-width: 16ch; margin: 0; font: 900 clamp(42px, 6vw, 86px)/.94 var(--font-display); letter-spacing: -.035em; }
.season-credits-heading p { max-width: 32em; margin: 0 0 6px; color: #aebcaf; line-height: 1.85; }
.season-credit-roll { margin-top: clamp(58px, 8vw, 110px); border-top: 1px solid #39453c; }
.season-credit-group { display: grid; grid-template-columns: minmax(170px, .32fr) minmax(0, 1fr); gap: clamp(28px, 6vw, 90px); padding: clamp(28px, 4vw, 54px) 0; border-bottom: 1px solid #39453c; }
.season-credit-group header small { display: block; margin-bottom: 7px; color: #95a398; font-size: 9px; font-weight: 900; letter-spacing: .13em; }
.season-credit-group h3 { margin: 0; color: var(--gold); font: 900 clamp(27px, 3vw, 42px) var(--font-display); }
.season-credit-group > div { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 13px 28px; align-content: start; }
.season-credit-group > div span { min-width: 0; overflow-wrap: anywhere; color: #e5ebe6; font-size: 14px; line-height: 1.65; }
.season-credit-group.credit-featured > div { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.season-credit-closing { margin-top: clamp(64px, 9vw, 130px); padding-top: 28px; border-top: 1px solid var(--gold); }
.season-credit-closing > span { color: var(--gold); font-size: 10px; font-weight: 900; letter-spacing: .15em; }
.season-credit-closing p { max-width: 38em; margin: 22px 0 48px; font-size: clamp(22px, 3vw, 38px); font-weight: 800; line-height: 1.65; }
.season-credit-closing strong { color: #879389; font: 900 clamp(34px, 6vw, 82px)/1 var(--font-display); letter-spacing: -.03em; }

@media (max-width: 760px) {
  .archive-status-banner { min-height: 28px; gap: 7px; padding: 5px 10px; font-size: 8px; }
  .archive-status-banner strong { font-size: 10px; }
  .archive-hero { min-height: 0; grid-template-columns: 1fr; }
  .archive-hero-copy { padding: 48px 22px 40px; }
  .archive-hero h1 { font-size: clamp(58px, 20vw, 82px); }
  .archive-champion { min-height: 68vh; }
  .archive-champion > div:last-child { bottom: 6%; }
  .archive-podium { grid-template-columns: 1fr 1fr; }
  .archive-podium-card.rank-1 { grid-column: 1/-1; }
  .archive-podium-photo, .archive-podium-card.rank-1 .archive-podium-photo { height: 62vw; }
  .archive-podium-card.rank-1 .archive-podium-photo { height: 110vw; }
  .archive-highlight-grid { grid-template-columns: 1fr; }
  .archive-entry .shell > div { grid-template-columns: 1fr; }
  .archive-entry a + a { margin-left: 0; }
  .archive-final-top { grid-template-columns: 1fr 1fr; }
  .archive-finalist.rank-1 { grid-column: 1/-1; transform: none; }
  .archive-finalist > div { height: 62vw; }
  .archive-finalist.rank-1 > div { height: 110vw; }
  .archive-finalist > strong { font-size: 18px; }
  .archive-pyramid-block { margin: 48px 0; padding: 34px 0; }
  .archive-pyramid-block > header { display: block; margin-bottom: 16px; }
  .archive-pyramid-block > header h2 { font-size: 38px; }
  .archive-pyramid-block > header p { margin-top: 16px; }
  .archive-pyramid-block > header + .mobile-pyramid-label { margin-top: 26px; }
  .ranking-page .archive-pyramid-block .pyramid-row .seat {
    color: #2a1b05;
    border-color: #f4d474;
    background: linear-gradient(145deg, #ffe9a0, #d49a28);
  }
  .ranking-page .archive-pyramid-block .pyramid-row:nth-child(odd) .seat {
    background: linear-gradient(145deg, #f8dc83, #bd821e);
  }
  .ranking-page .archive-pyramid-block .pyramid-row .seat.top-seat {
    color: #211a08;
    background: linear-gradient(145deg, #fff6c9, #e7ae34);
  }
  .archive-rank-list a { grid-template-columns: 45px 1fr auto; gap: 8px; }
  .archive-rank-list a > small { display: none; }
  .archive-rank-list a > b { font-size: 0; }
  .archive-rank-list a > b::after { content: "→"; font-size: 14px; }
  .season-timeline article { grid-template-columns: 44px 1fr; gap: 10px; }
  .season-timeline time { font-size: 11px; text-align: right; }
  .season-timeline article > div { grid-column: 1/-1; padding-left: 54px; }
  .season-closed .shell { align-items: flex-start; flex-direction: column; }
  .archive-duel-card > div { grid-template-columns: 1fr 42px 1fr; }
  .archive-duel-card a { display: block; padding: 10px; text-align: center; }
  .archive-duel-card a > div { width: 100%; }
  .archive-duel-card a strong { display: block; margin-top: 10px; font-size: 15px; }
  .archive-duel-card a small { display: block; margin-top: 4px; }
  .archive-roster-section > div { grid-template-columns: repeat(2, 1fr); }
  .archive-roster-section a strong { font-size: 14px; }
  .season-credits-heading { display: block; }
  .season-credits-heading h2 { font-size: 46px; }
  .season-credits-heading p { margin-top: 24px; }
  .season-credit-group { grid-template-columns: 1fr; gap: 22px; }
  .season-credit-group > div,
  .season-credit-group.credit-featured > div { grid-template-columns: 1fr; gap: 8px; }
  .season-credit-group > div span { font-size: 13px; }
  .season-credit-closing p { font-size: 21px; }
}
