:root {
  --bg: #040404;
  --panel: rgba(18, 18, 18, 0.82);
  --panel-strong: rgba(22, 22, 22, 0.96);
  --panel-soft: rgba(255, 255, 255, 0.04);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text: #f4f0ea;
  --muted: rgba(244, 240, 234, 0.7);
  --muted-soft: rgba(244, 240, 234, 0.46);
  --accent: #ddd4c4;
  --accent-strong: #fffaf0;
  --gold: #e7bd57;
  --silver: #c3cad4;
  --bronze: #cd8758;
  --danger: #ff8f7b;
  --success: #9be7bf;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.3);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: "Noto Sans", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
}

body {
  overflow-x: hidden;
  line-height: 1.6;
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.hidden {
  display: none !important;
}

.site-nav {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 30;
  padding: 0 18px;
  pointer-events: none;
}

.site-nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: min(560px, 100%);
  margin: 0 auto;
  padding: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: rgba(8, 8, 8, 0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transition: background 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
  pointer-events: auto;
}

body.is-scrolled .site-nav-inner {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(10, 10, 10, 0.58);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav-link {
  flex: 1 1 0;
  padding: 10px 14px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nav-link:hover {
  color: var(--accent-strong);
  transform: translateY(-1px);
}

.nav-link.active {
  background: rgba(255, 255, 255, 0.12);
  color: var(--accent-strong);
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100svh;
  padding: 54px clamp(20px, 5vw, 52px);
  overflow: hidden;
}

.hero-video,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.56) saturate(0.94);
  transform: scale(1.02);
}

.hero-scrim {
  background:
    linear-gradient(180deg, rgba(7, 7, 7, 0.06) 0%, rgba(7, 7, 7, 0.28) 34%, rgba(7, 7, 7, 0.9) 100%),
    radial-gradient(circle at 20% 24%, rgba(255, 255, 255, 0.16), transparent 34%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1420px, 100%);
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  margin: 0;
  font-family: "Gugi", "Noto Sans", sans-serif;
  font-size: clamp(72px, 12vw, 170px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.03em;
}

.hero-issue {
  margin: 18px 0 0;
  color: var(--muted);
  font-family: "Gugi", "Noto Sans", sans-serif;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 400;
  letter-spacing: 0.04em;
}

.hero-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 30px auto 0;
  padding: 14px 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--accent-strong);
  font-weight: 700;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.hero-link:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.26);
}

.content-shell {
  position: relative;
  z-index: 3;
  margin-top: -14px;
  padding: 0 clamp(16px, 3vw, 36px) 88px;
}

.status-stack,
.report-root,
.report-picker {
  max-width: 1420px;
  margin: 0 auto;
}

.game-root {
  max-width: none;
  margin: 0;
}

.summary-root {
  max-width: none;
  margin: 0;
}

.report-root,
.game-root {
  transition: opacity 180ms ease;
}

.summary-root {
  transition: opacity 180ms ease;
}

.report-root.is-updating,
.summary-root.is-updating {
  opacity: 0.64;
  pointer-events: none;
}

.loading-panel,
.error-panel,
.report-picker,
.report-intro,
.panel-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.loading-panel,
.error-panel {
  padding: 24px 26px;
  color: var(--muted);
}

.error-panel {
  color: var(--danger);
  border-color: rgba(255, 143, 123, 0.28);
  background: rgba(34, 15, 12, 0.88);
}

.report-picker {
  margin-bottom: 18px;
  padding: 24px;
}

.report-picker-head h2,
.report-intro h2,
.panel-card h2,
.panel-card h3 {
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.archive-strip {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  margin-top: 20px;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.archive-strip::-webkit-scrollbar,
.clip-carousel::-webkit-scrollbar {
  display: none;
}

.archive-chip,
.archive-empty {
  flex: 0 0 auto;
  min-width: 230px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  text-align: left;
}

.archive-empty {
  color: var(--muted);
}

.archive-chip {
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.archive-chip:hover,
.archive-chip.active {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.12);
}

.archive-chip-label {
  display: block;
  font-size: 17px;
  font-weight: 700;
}

.archive-chip-meta {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.report-shell {
  display: grid;
  gap: 22px;
}

.summary-wrap {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 0;
}

.summary-scroller {
  position: relative;
  height: calc(100svh - 74px);
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  overscroll-behavior: contain;
  scrollbar-width: none;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.08), transparent 28%),
    radial-gradient(circle at 78% 18%, rgba(75, 189, 206, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(8, 8, 8, 0.96), rgba(4, 4, 4, 0.98));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.summary-scroller::-webkit-scrollbar {
  display: none;
}

.summary-progress {
  position: fixed;
  top: 50%;
  right: clamp(16px, 2.8vw, 34px);
  z-index: 14;
  display: grid;
  gap: 10px;
  transform: translateY(-50%);
}

.summary-progress-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.summary-progress-dot.is-current {
  transform: scale(1.4);
  background: #4bbdce;
  box-shadow:
    0 0 0 6px rgba(75, 189, 206, 0.12),
    0 0 20px rgba(75, 189, 206, 0.24);
}

.summary-scene {
  position: relative;
  min-height: calc(100svh - 74px);
  padding: clamp(36px, 7vw, 88px);
  display: flex;
  align-items: center;
  justify-content: center;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  overflow: hidden;
}

.summary-scene::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 6, 6, 0.06), rgba(6, 6, 6, 0.12)),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.04), transparent 42%);
  pointer-events: none;
}

.summary-scene-intro::before,
.summary-scene-intro::after {
  content: "";
  position: absolute;
  inset: -10%;
  pointer-events: none;
}

.summary-scene-intro::before {
  background:
    repeating-linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.045) 0,
      rgba(255, 255, 255, 0.045) 1px,
      transparent 1px,
      transparent 9px
    ),
    linear-gradient(90deg, transparent 0%, rgba(75, 189, 206, 0.12) 48%, transparent 100%);
  mix-blend-mode: screen;
  opacity: 0.42;
  animation: summaryGlitchScan 7.2s linear infinite;
}

.summary-scene-intro::after {
  background:
    linear-gradient(90deg, transparent 0%, rgba(75, 189, 206, 0.12) 42%, transparent 58%),
    linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.04) 50%, transparent 100%);
  filter: blur(14px);
  opacity: 0.18;
  animation: summaryGlitchShift 4.6s steps(1, end) infinite;
}

.summary-scene-inner {
  position: relative;
  z-index: 1;
  width: min(1080px, 100%);
  display: grid;
  gap: 18px;
  justify-items: center;
  text-align: center;
  opacity: 0.24;
  transform: scale(0.82) translateY(60px);
  filter: blur(4px);
  transition:
    opacity 380ms ease,
    transform 540ms cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 380ms ease;
}

.summary-scene.is-before .summary-scene-inner,
.summary-scene.is-after .summary-scene-inner {
  opacity: 0.14;
}

.summary-scene.is-current .summary-scene-inner {
  opacity: 1;
  transform: scale(1) translateY(0);
  filter: blur(0);
}

.summary-stage-meta {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.summary-logo-story {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 2vw, 20px);
  font-size: clamp(38px, 6vw, 88px);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.94;
}

.summary-logo-pill {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.summary-logo-pill img {
  width: clamp(84px, 10vw, 148px);
  height: clamp(36px, 5vw, 64px);
  object-fit: contain;
}

.summary-leading-text,
.summary-trailing-text {
  display: inline-block;
}

.summary-scene-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.summary-scroll-hint {
  position: absolute;
  left: 50%;
  bottom: clamp(24px, 4vw, 46px);
  z-index: 2;
  display: grid;
  gap: 10px;
  justify-items: center;
  transform: translateX(-50%);
  color: rgba(244, 240, 234, 0.74);
}

.summary-scroll-arrow {
  color: rgba(139, 234, 245, 0.88);
  font-size: 28px;
  line-height: 1;
  animation: summaryScrollArrow 1.4s ease-in-out infinite;
}

.summary-scroll-hint p {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.summary-scroll-mouse {
  display: inline-flex;
  width: 28px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  justify-content: center;
  padding-top: 8px;
}

.summary-scroll-mouse span {
  display: block;
  width: 6px;
  height: 10px;
  border-radius: 999px;
  background: rgba(139, 234, 245, 0.92);
  animation: summaryScrollHint 1.6s ease-in-out infinite;
}

.summary-line,
.summary-question {
  margin: 0;
  font-size: clamp(34px, 4vw, 64px);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1.08;
}

.summary-line-tail {
  color: rgba(244, 240, 234, 0.88);
}

.summary-quoted-line {
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.summary-quoted-line strong {
  font-size: clamp(140px, 20vw, 280px);
  font-weight: 900;
}

.summary-quoted-line span {
  color: rgba(244, 240, 234, 0.9);
  font-size: clamp(28px, 3vw, 52px);
  font-weight: 800;
}

.summary-inline-number {
  color: #8beaf5;
  text-shadow: 0 0 24px rgba(75, 189, 206, 0.18);
}

.summary-inline-number-large {
  font-size: 1.24em;
  font-weight: 900;
}

.summary-number-block {
  display: inline-flex;
  align-items: flex-end;
  gap: 12px;
  line-height: 0.9;
  text-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
}

.summary-number-block strong {
  font-size: clamp(110px, 18vw, 250px);
  font-weight: 900;
  letter-spacing: -0.08em;
}

.summary-number-block span,
.summary-term-unit {
  color: rgba(244, 240, 234, 0.82);
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.summary-number-block.is-wide strong {
  font-size: clamp(78px, 13vw, 194px);
}

.summary-counter-caption {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 260ms ease, transform 260ms ease;
}

.summary-counter-caption.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.summary-scene-chat::before {
  background:
    radial-gradient(circle at center, rgba(8, 12, 15, 0.24), rgba(8, 12, 15, 0.86) 74%),
    linear-gradient(180deg, rgba(3, 6, 8, 0.1), rgba(3, 6, 8, 0.78));
}

.summary-chat-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 24px);
  padding: clamp(56px, 8vw, 96px);
  opacity: 0.78;
}

.summary-chat-column {
  display: grid;
  align-content: start;
  gap: 14px;
  animation: summaryChatDrift 18s linear infinite;
}

.summary-chat-column.is-column-2 {
  animation-duration: 20s;
  animation-direction: reverse;
}

.summary-chat-column.is-column-3 {
  animation-duration: 23s;
}

.summary-chat-bubble {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  max-width: min(100%, 420px);
  padding: 12px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(244, 240, 234, 0.72);
  font-size: clamp(13px, 1.25vw, 18px);
  line-height: 1.45;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.summary-chat-emote {
  width: 28px;
  height: 28px;
  object-fit: contain;
  vertical-align: middle;
  flex: 0 0 auto;
}

.summary-scene-inner-chat,
.summary-scene-inner-call {
  position: relative;
  z-index: 2;
}

.summary-number-block.is-chat-count strong {
  font-size: clamp(110px, 16vw, 238px);
}

.summary-question {
  max-width: 980px;
}

.summary-emphasis {
  color: var(--accent-strong);
}

.summary-emphasis.is-cyan {
  color: #8beaf5;
  text-shadow: 0 0 24px rgba(75, 189, 206, 0.24);
}

.summary-variant-cloud {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px 14px;
  align-content: center;
  justify-items: center;
  padding: clamp(28px, 4vw, 56px);
  opacity: 0.96;
  transition: filter 700ms ease, opacity 700ms ease, transform 700ms ease;
  z-index: 0;
}

.summary-scene-question.is-revealed .summary-variant-cloud {
  filter: blur(12px);
  opacity: 0.24;
  transform: scale(1.06);
}

.summary-variant-item {
  color: rgba(244, 240, 234, 0.9);
  font-size: clamp(20px, 2.4vw, 40px);
  font-weight: 900;
  letter-spacing: -0.06em;
  text-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}

.summary-variant-item.is-variant-2,
.summary-variant-item.is-variant-5 {
  color: rgba(139, 234, 245, 0.92);
}

.summary-variant-item.is-variant-3,
.summary-variant-item.is-variant-6 {
  font-size: clamp(16px, 2vw, 28px);
  opacity: 0.72;
}

.summary-term-card.is-call-focus {
  opacity: 0;
  transform: translateY(26px) scale(0.96);
  transition: opacity 420ms ease, transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.summary-scene-question.is-revealed .summary-term-card.is-call-focus {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.summary-term-card,
.summary-top-chatter-card {
  padding: clamp(24px, 3vw, 36px);
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.22);
}

.summary-term-card {
  display: grid;
  gap: 8px;
}

.summary-call-count-row {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  line-height: 0.9;
}

.summary-term-card.is-single {
  width: min(720px, 100%);
  justify-items: center;
  text-align: center;
}

.summary-term-name,
.summary-top-chatter-label {
  color: rgba(244, 240, 234, 0.64);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.summary-term-card strong,
.summary-top-chatter-card strong {
  font-size: clamp(54px, 7vw, 112px);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.9;
}

.summary-call-count-row .summary-term-unit {
  font-size: clamp(30px, 3.4vw, 50px);
}

.summary-term-note {
  margin: 0;
  color: rgba(244, 240, 234, 0.68);
  font-size: 16px;
  font-weight: 600;
}

.summary-term-note.subdued {
  color: rgba(244, 240, 234, 0.48);
}

.summary-top-chatter-card {
  width: min(760px, 100%);
  display: grid;
  gap: 14px;
  justify-items: center;
  text-align: center;
}

.summary-top-chatter-card.is-finale {
  background:
    radial-gradient(circle at 50% 0%, rgba(75, 189, 206, 0.14), transparent 36%),
    rgba(255, 255, 255, 0.05);
}

.summary-top-chatter-card.is-cta {
  max-width: 920px;
  min-height: 240px;
  place-items: center;
}

.summary-question-small {
  font-size: clamp(26px, 3vw, 42px);
}

@keyframes summaryScrollHint {
  0% {
    transform: translateY(0);
    opacity: 0.2;
  }
  24% {
    opacity: 1;
  }
  100% {
    transform: translateY(12px);
    opacity: 0;
  }
}

@keyframes summaryScrollArrow {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.5;
  }
  50% {
    transform: translateY(8px);
    opacity: 1;
  }
}

@keyframes summaryGlitchScan {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -16px, 0);
  }
  100% {
    transform: translate3d(0, -32px, 0);
  }
}

@keyframes summaryGlitchShift {
  0%, 100% {
    transform: translate3d(0, 0, 0);
    opacity: 0.16;
  }
  18% {
    transform: translate3d(-10px, 4px, 0);
    opacity: 0.28;
  }
  22% {
    transform: translate3d(12px, -6px, 0);
    opacity: 0.14;
  }
  54% {
    transform: translate3d(0, 0, 0);
    opacity: 0.18;
  }
  70% {
    transform: translate3d(8px, 0, 0);
    opacity: 0.24;
  }
}

@keyframes summaryChatDrift {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

.report-intro,
.panel-card {
  padding: 28px;
}

.report-intro-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px;
}

.report-subtitle,
.game-subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.public-filter-note {
  width: 100%;
  margin: -4px 4px 2px;
  color: var(--muted-soft);
  font-size: 12px;
  text-align: right;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-head {
  margin-bottom: 18px;
}

.signal-stage {
  overflow: hidden;
}

.signal-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.signal-column {
  display: grid;
  gap: 12px;
}

.signal-row {
  position: relative;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  min-height: 84px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.035);
  overflow: hidden;
  isolation: isolate;
}

.signal-row-fill {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: var(--fill, 50%);
  border-radius: inherit;
  opacity: 0.78;
  z-index: -1;
}

.signal-row-word .signal-row-fill {
  background:
    linear-gradient(90deg, rgba(214, 170, 74, 0.3) 0%, rgba(214, 170, 74, 0.12) 55%, rgba(214, 170, 74, 0.02) 100%);
}

.signal-row-emote .signal-row-fill {
  background:
    linear-gradient(90deg, rgba(94, 165, 255, 0.28) 0%, rgba(94, 165, 255, 0.12) 55%, rgba(94, 165, 255, 0.02) 100%);
}

.signal-row.is-rank-gold .signal-row-fill {
  background: linear-gradient(90deg, rgba(226, 180, 64, 0.44) 0%, rgba(226, 180, 64, 0.18) 56%, rgba(226, 180, 64, 0.03) 100%);
}

.signal-row.is-rank-silver .signal-row-fill {
  background: linear-gradient(90deg, rgba(192, 198, 207, 0.4) 0%, rgba(192, 198, 207, 0.16) 56%, rgba(192, 198, 207, 0.03) 100%);
}

.signal-row.is-rank-bronze .signal-row-fill {
  background: linear-gradient(90deg, rgba(194, 126, 83, 0.42) 0%, rgba(194, 126, 83, 0.16) 56%, rgba(194, 126, 83, 0.03) 100%);
}

.rank-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--accent);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.rank-badge.is-gold {
  background: rgba(226, 180, 64, 0.2);
  color: var(--gold);
}

.rank-badge.is-silver {
  background: rgba(192, 198, 207, 0.18);
  color: var(--silver);
}

.rank-badge.is-bronze {
  background: rgba(194, 126, 83, 0.2);
  color: var(--bronze);
}

.rank-main {
  min-width: 0;
}

.token-title {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-width: 0;
}

.token-title-text {
  display: flex;
  align-items: baseline;
  gap: 10px;
  min-width: 0;
  flex-wrap: wrap;
}

.token-primary {
  min-width: 0;
  font-size: 16px;
  font-weight: 700;
}

.token-title-text span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.token-aliases {
  max-width: 100%;
  color: var(--muted-soft);
  font-size: 12px;
  font-weight: 500;
}

.token-title img,
.compact-token img {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  object-fit: contain;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
}

.item-meta {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.item-value strong {
  display: block;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.05em;
  text-align: right;
}

.clip-carousel {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.clip-card {
  flex: 0 0 min(520px, 88vw);
  scroll-snap-align: start;
  padding: 22px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.clip-card-head {
  margin-bottom: 16px;
}

.clip-kicker {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.clip-kicker.is-gold {
  color: var(--gold);
}

.clip-kicker.is-silver {
  color: var(--silver);
}

.clip-kicker.is-bronze {
  color: var(--bronze);
}

.clip-card h4,
.search-result-header h4,
.guess-word-wrap h3 {
  margin: 0;
  font-size: 26px;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.clip-player {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  background: #000;
}

.clip-player-wrap {
  display: grid;
  gap: 12px;
}

.clip-player-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.clip-skip-button,
.search-button,
.game-guess-button,
.game-next-button,
.game-media-toggle {
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--accent-strong);
  font-weight: 700;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, opacity 160ms ease;
}

.clip-skip-button:hover,
.search-button:hover,
.game-guess-button:hover,
.game-next-button:hover,
.game-media-toggle:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.22);
}

.game-guess-button:disabled {
  opacity: 0.38;
  cursor: default;
  transform: none;
}

.clip-card-body {
  margin-top: 16px;
}

.clip-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
}

.clip-token-block {
  margin-top: 16px;
}

.clip-token-label,
.search-stat-label {
  display: block;
  color: var(--muted-soft);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.compact-token-row,
.guess-breakdown {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.compact-token,
.guess-breakdown-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
}

.compact-token.is-icon-only {
  min-width: 54px;
  justify-content: center;
  padding: 8px;
}

.compact-token.is-icon-only img {
  width: 38px;
  height: 38px;
  border-radius: 14px;
}

.guess-breakdown-chip {
  color: var(--muted);
}

.search-panel {
  display: grid;
  gap: 16px;
}

.search-form {
  display: flex;
  gap: 10px;
}

.search-input {
  flex: 1 1 auto;
  min-width: 0;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.search-input::placeholder {
  color: var(--muted-soft);
}

.search-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.search-tag {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--accent-strong);
  font-weight: 600;
}

.search-tag.sound-enabled::after {
  content: " 효과음";
  color: var(--muted-soft);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.search-result {
  padding: 22px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.search-result.empty {
  color: var(--muted);
}

.search-result-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
}

.search-result-header span,
.search-result-note {
  color: var(--muted);
}

.search-result-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.search-stat {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.search-stat-value {
  display: block;
  margin-top: 6px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.search-result-note.subdued {
  color: var(--muted-soft);
}

.game-wrap {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.game-stage-stack {
  position: relative;
  min-height: calc(100svh - 64px);
  overflow: hidden;
}

.game-stage {
  position: relative;
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  min-height: calc(100svh - 64px);
  background: #050505;
  overflow: hidden;
}

.game-stage.is-transition-old,
.game-stage.is-transition-new {
  position: absolute;
  inset: 0;
  min-height: 100%;
  transition:
    transform 560ms cubic-bezier(0.22, 0.78, 0.18, 1),
    opacity 560ms ease;
}

.game-stage.is-transition-old {
  z-index: 1;
}

.game-stage.is-transition-new {
  z-index: 2;
  transform: translateX(100%);
}

.game-stage-stack.is-transitioning .game-stage.is-transition-old {
  transform: translateX(-18%);
  opacity: 0.36;
}

.game-stage-stack.is-transitioning .game-stage.is-transition-new {
  transform: translateX(0);
}

.game-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 6, 6, 0.04), rgba(6, 6, 6, 0.22));
  pointer-events: none;
}

.game-score-corner {
  position: absolute;
  top: 22px;
  z-index: 5;
  display: grid;
  gap: 2px;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.38);
}

.game-score-left {
  left: 22px;
  text-align: left;
}

.game-score-right {
  right: 22px;
  text-align: right;
}

.game-media-corner {
  position: absolute;
  top: calc(50% + 74px);
  left: 59%;
  z-index: 8;
  transform: translateX(-50%);
}

.game-score-corner span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.game-score-corner strong {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.game-versus {
  position: absolute;
  top: 50%;
  left: 59%;
  z-index: 7;
  width: 92px;
  height: 92px;
  transform: translate(-50%, -50%);
  perspective: 900px;
}

.game-versus::after {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 999px;
  opacity: 0;
  pointer-events: none;
}

.game-versus-flip {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 620ms cubic-bezier(0.2, 0.76, 0.2, 1);
  will-change: transform;
}

.game-versus.is-revealed .game-versus-flip {
  transform: rotateY(180deg);
}

.game-versus-face {
  position: absolute;
  inset: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  backface-visibility: hidden;
}

.game-versus-front {
  background:
    radial-gradient(circle at 32% 28%, rgba(231, 251, 255, 0.42), transparent 32%),
    linear-gradient(180deg, #7ae4ef, #4bbdce);
  border: 1px solid rgba(141, 238, 247, 0.42);
  color: #fff;
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.3),
    0 0 0 10px rgba(75, 189, 206, 0.08),
    0 0 34px rgba(75, 189, 206, 0.26);
}

.game-versus-back {
  transform: rotateY(180deg);
  color: #fff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.game-versus.is-correct .game-versus-back {
  background: linear-gradient(180deg, #48c66f, #23954a);
  border: 1px solid rgba(189, 255, 206, 0.34);
}

.game-versus.is-wrong .game-versus-back {
  background: linear-gradient(180deg, #f16363, #c83838);
  border: 1px solid rgba(255, 214, 214, 0.3);
}

.game-versus.is-pulsed.is-correct::after {
  background: radial-gradient(circle, rgba(72, 198, 111, 0.3) 0%, rgba(72, 198, 111, 0.16) 42%, transparent 72%);
  animation: versusPulse 700ms ease-out forwards;
}

.game-versus.is-pulsed.is-wrong::after {
  background: radial-gradient(circle, rgba(241, 99, 99, 0.28) 0%, rgba(241, 99, 99, 0.14) 42%, transparent 72%);
  animation: versusPulse 700ms ease-out forwards;
}

.game-versus-label {
  color: #fff;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.game-versus-icon {
  display: inline-flex;
  width: 36px;
  height: 36px;
}

.game-versus-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: #fff;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.guess-card {
  position: relative;
  min-height: calc(100svh - 64px);
  overflow: hidden;
}

.guess-card-anchor {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.guess-card-challenger {
  border-left: 1px solid rgba(255, 255, 255, 0.06);
}

.guess-backdrop,
.guess-card-overlay,
.guess-card-inner {
  position: absolute;
  inset: 0;
}

.guess-backdrop {
  background-position: center;
  background-size: cover;
}

.guess-backdrop.is-photo {
  filter: brightness(0.74) saturate(0.95);
}

.guess-backdrop.is-video {
  overflow: hidden;
  background: #000;
}

.guess-backdrop-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8) saturate(0.92);
  transition: filter 220ms ease, transform 260ms ease;
}

.guess-backdrop.is-generated {
  background:
    linear-gradient(140deg, rgba(90, 78, 112, 0.9), rgba(48, 44, 58, 0.96)),
    #201d26;
}

.guess-backdrop-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 24% 26%, rgba(255, 255, 255, 0.16), transparent 28%);
}

.guess-backdrop-orb {
  position: absolute;
  top: 18%;
  left: 8%;
  width: 19vw;
  height: 19vw;
  min-width: 180px;
  min-height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.04) 58%, transparent 62%);
  filter: blur(14px);
  opacity: 0.82;
}

.guess-backdrop-mosaic {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
}

.guess-mosaic-tile {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 18px;
  overflow: hidden;
}

.guess-mosaic-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.22)),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.14), transparent 42%);
}

.guess-mosaic-tile span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  max-width: 100%;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.22);
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.tile-1 { background: linear-gradient(135deg, #6f5b84, #403345); }
.tile-2 { background: linear-gradient(135deg, #3e5368, #252f39); }
.tile-3 { background: linear-gradient(135deg, #6b4d4a, #31211e); }
.tile-4 { background: linear-gradient(135deg, #3d4f49, #23302a); }
.tile-5 { background: linear-gradient(135deg, #564164, #281f31); }
.tile-6 { background: linear-gradient(135deg, #5c5640, #2b271d); }

.guess-card-overlay {
  background: linear-gradient(180deg, rgba(6, 6, 6, 0.08) 0%, rgba(6, 6, 6, 0.16) 28%, rgba(6, 6, 6, 0.68) 100%);
  pointer-events: none;
  transition: background 220ms ease;
}

.guess-card-inner {
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 42px;
  pointer-events: none;
}

.guess-card.is-media-paused .guess-backdrop-video {
  filter: brightness(0.56) saturate(0.72);
  transform: scale(1.01);
}

.guess-card.is-media-paused .guess-card-overlay {
  background: linear-gradient(180deg, rgba(6, 6, 6, 0.16) 0%, rgba(6, 6, 6, 0.26) 26%, rgba(6, 6, 6, 0.76) 100%);
}

.guess-video-toggle {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.guess-video-feedback {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.44);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
  color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.92);
  transition: opacity 180ms ease, transform 220ms ease, background 220ms ease, border-color 220ms ease;
  pointer-events: none;
}

.guess-video-feedback.is-visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.guess-video-feedback.is-playing {
  background: rgba(43, 125, 138, 0.44);
  border-color: rgba(127, 228, 239, 0.3);
}

.guess-video-feedback.is-paused {
  background: rgba(22, 22, 22, 0.52);
  border-color: rgba(255, 255, 255, 0.14);
}

.guess-video-feedback-glyph {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  gap: 4px;
}

.guess-video-feedback-glyph span {
  display: block;
  width: 5px;
  height: 16px;
  border-radius: 999px;
  background: currentColor;
}

.guess-video-feedback-glyph.is-play span {
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid currentColor;
  background: transparent;
  border-radius: 0;
}

.guess-video-feedback-label {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.guess-rank {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(12, 12, 12, 0.3);
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  backdrop-filter: blur(8px);
}

.guess-word-wrap {
  max-width: min(520px, 80%);
}

.guess-word-head {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  flex-wrap: wrap;
}

.guess-word-wrap h3 {
  margin: 0;
  font-size: clamp(48px, 6vw, 76px);
  line-height: 0.92;
  letter-spacing: -0.06em;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.34);
}

.guess-token-inline {
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  line-height: 1.5;
  text-shadow: 0 8px 18px rgba(0, 0, 0, 0.34);
}

.guess-count {
  margin-top: 16px;
  display: flex;
  align-items: flex-end;
  gap: 10px;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.34);
}

.guess-count.is-hidden strong {
  letter-spacing: 0.08em;
}

.guess-count strong {
  font-size: clamp(52px, 7vw, 100px);
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.guess-count span,
.guess-ratio {
  color: rgba(255, 255, 255, 0.78);
}

.guess-ratio {
  margin-top: 8px;
  font-size: 15px;
}

.guess-breakdown {
  margin-top: 18px;
}

.guess-breakdown-chip {
  background: rgba(12, 12, 12, 0.3);
  color: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(8px);
}

.guess-card-footer-meta {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.game-floating-controls {
  position: absolute;
  top: 50%;
  left: calc(50% + clamp(180px, 16vw, 330px));
  z-index: 8;
  transform: translateY(-50%);
}

.game-button-stack {
  display: grid;
  gap: 12px;
}

.game-button-stack.is-frozen .game-guess-button {
  opacity: 0.94;
}

.game-guess-button,
.game-next-button,
.game-media-toggle {
  min-width: 148px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  background: rgba(23, 23, 23, 0.48);
  backdrop-filter: blur(10px);
}

.game-media-toggle {
  min-width: 134px;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  gap: 8px;
  line-height: 1;
  color: #f5fbff;
  border-color: rgba(75, 189, 206, 0.22);
  background: linear-gradient(180deg, rgba(20, 29, 34, 0.92), rgba(14, 18, 22, 0.92));
  box-shadow:
    0 12px 24px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(75, 189, 206, 0.06);
}

.game-media-toggle.is-active {
  background: linear-gradient(180deg, rgba(68, 176, 194, 0.92), rgba(42, 124, 138, 0.94));
  border-color: rgba(151, 237, 247, 0.44);
  color: #fff;
  box-shadow:
    0 14px 28px rgba(26, 86, 96, 0.34),
    0 0 18px rgba(75, 189, 206, 0.18);
}

.game-media-toggle.is-muted {
  background: linear-gradient(180deg, rgba(68, 44, 44, 0.9), rgba(36, 22, 22, 0.94));
  border-color: rgba(255, 146, 146, 0.2);
  color: rgba(255, 242, 242, 0.92);
}

.game-media-icon-wrap {
  display: inline-flex;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  flex: 0 0 20px;
}

.game-media-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1;
  white-space: nowrap;
}

.game-media-icon {
  width: 20px;
  height: 20px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.game-button-label {
  display: inline-flex;
  align-items: center;
}

.game-button-icon {
  display: inline-flex;
  width: 0;
  height: 0;
}

.game-button-icon-up {
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 11px solid rgba(255, 196, 84, 0.96);
  filter: drop-shadow(0 0 8px rgba(255, 196, 84, 0.34));
}

.game-button-icon-down {
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 11px solid rgba(255, 196, 84, 0.96);
  filter: drop-shadow(0 0 8px rgba(255, 196, 84, 0.34));
}

@keyframes versusPulse {
  0% {
    opacity: 0;
    transform: scale(0.88);
  }
  28% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1.16);
  }
}

@media (max-width: 1100px) {
  .signal-list {
    grid-template-columns: 1fr;
  }

  .summary-term-grid {
    grid-template-columns: 1fr;
  }

  .game-stage {
    grid-template-columns: 1fr;
  }

  .game-versus {
    top: 50%;
    left: 50%;
  }

  .game-media-corner {
    top: calc(50% + 74px);
    left: 50%;
    transform: translateX(-50%);
  }

  .game-floating-controls {
    top: auto;
    right: auto;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 720px) {
  .site-nav {
    top: 12px;
    padding: 0 12px;
  }

  .site-nav-inner {
    width: 100%;
  }

  .summary-progress {
    display: none;
  }

  .summary-scroller,
  .summary-scene {
    height: auto;
    min-height: calc(100svh - 64px);
  }

  .summary-scene {
    padding: 28px 20px 40px;
  }

  .summary-logo-story {
    font-size: clamp(34px, 12vw, 58px);
  }

  .summary-logo-pill {
    padding: 12px 16px;
  }

  .summary-number-block strong {
    font-size: clamp(72px, 26vw, 118px);
  }

  .summary-number-block.is-wide strong {
    font-size: clamp(62px, 18vw, 104px);
  }

  .summary-line,
  .summary-question {
    font-size: clamp(28px, 8vw, 42px);
  }

  .hero {
    min-height: 86svh;
    padding-top: 84px;
  }

  .hero h1 {
    font-size: clamp(54px, 18vw, 88px);
  }

  .report-intro,
  .panel-card,
  .report-picker {
    padding: 20px;
  }

  .signal-row {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
  }

  .item-value {
    grid-column: 2;
  }

  .item-value strong {
    text-align: left;
  }

  .search-form,
  .search-result-grid {
    grid-template-columns: 1fr;
  }

  .search-form {
    display: grid;
  }

  .clip-card {
    flex-basis: 92vw;
  }

  .clip-meta-row,
  .report-intro-head {
    display: grid;
    gap: 8px;
  }

  .game-stage,
  .guess-card {
    min-height: auto;
  }

  .guess-card {
    min-height: 52svh;
  }

  .guess-card-inner {
    padding: 22px;
  }

  .guess-word-wrap {
    max-width: 100%;
  }

  .guess-word-wrap h3 {
    font-size: clamp(34px, 10vw, 52px);
  }

  .game-score-corner {
    top: 14px;
  }

  .game-score-left {
    left: 14px;
  }

  .game-score-right {
    right: 14px;
  }

  .game-media-corner {
    top: 86px;
    right: 14px;
  }

  .game-versus {
    width: 72px;
    height: 72px;
    font-size: 22px;
  }
}
