:root {
  --ink: #101515;
  --paper: #f8fff9;
  --line: rgba(16, 21, 21, 0.14);
  --green: #12b76a;
  --green-2: #047857;
  --mint: #dff8ed;
  --night: #06110d;
  --orange: #f97316;
  --cyan: #86f7d0;
  font-family: "Microsoft YaHei", "PingFang SC", Inter, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

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

img {
  display: block;
  max-width: 100%;
}

.version-page,
.index-page {
  background:
    linear-gradient(90deg, rgba(4, 120, 87, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(4, 120, 87, 0.08) 1px, transparent 1px),
    var(--paper);
  background-size: 42px 42px;
}

.site-nav {
  position: fixed;
  inset: 14px auto auto 50%;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;
  width: min(760px, calc(100% - 28px));
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  transform: translateX(-50%);
  color: #063f2d;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px);
  box-shadow: 0 14px 46px rgba(4, 43, 30, 0.14);
  font-size: 0.88rem;
  font-weight: 900;
}

.site-nav a {
  padding: 8px 10px;
  border-radius: 6px;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.site-nav a:last-child {
  justify-self: end;
}

.site-nav a:hover {
  color: white;
  background: var(--green-2);
  transform: translateY(-1px);
}

.dark-nav {
  color: #d9ffee;
  background: rgba(4, 11, 9, 0.78);
  border-color: rgba(134, 247, 208, 0.22);
}

.dark-nav a:hover {
  color: #04100c;
  background: var(--cyan);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green-2);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0;
}

.dark .eyebrow,
.terminal-page .eyebrow {
  color: var(--cyan);
}

.big-name {
  margin: 0;
  font-size: clamp(3.6rem, 11vw, 10.4rem);
  line-height: 0.86;
  letter-spacing: 0;
}

.big-name span {
  display: block;
  color: var(--green);
}

.lede {
  margin: 18px 0 0;
  max-width: 640px;
  color: #4d5a55;
  font-size: clamp(1rem, 2vw, 1.22rem);
  line-height: 1.75;
}

.dark .lede,
.terminal-page .lede {
  color: #b5d8ca;
}

.index-shell {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: 74px 0 46px;
}

.index-hero {
  min-height: 44vh;
  display: grid;
  align-content: end;
  padding-bottom: 34px;
  animation: rise-in 0.45s ease both;
}

.index-hero h1 {
  margin: 0;
  font-size: clamp(3.4rem, 10vw, 9rem);
  line-height: 0.9;
}

.index-hero h1 span {
  color: var(--green);
}

.version-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.version-link {
  min-height: 260px;
  padding: 20px;
  border-radius: 8px;
  color: white;
  background: var(--night);
  overflow: hidden;
  position: relative;
  isolation: isolate;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.version-link::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(135deg, rgba(18, 183, 106, 0.88), transparent 45%),
    radial-gradient(circle at 80% 20%, rgba(249, 115, 22, 0.45), transparent 34%);
  opacity: 0.92;
}

.version-link:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(3, 33, 24, 0.2);
}

.version-number {
  display: block;
  margin-bottom: 72px;
  font-size: 3.4rem;
  font-weight: 950;
}

.version-link strong,
.version-link small {
  display: block;
}

.version-link strong {
  font-size: 1.15rem;
}

.version-link small {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}

.shell {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 104px 0 48px;
}

.hero-grid {
  min-height: calc(100vh - 118px);
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 34px;
  align-items: center;
}

.hero-copy {
  animation: rise-in 0.5s ease both;
}

.identity-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.identity-line span {
  padding: 10px 13px;
  border: 1px solid rgba(4, 120, 87, 0.18);
  border-radius: 999px;
  color: #073d2d;
  background: rgba(255, 255, 255, 0.74);
  font-weight: 900;
}

.character-stage {
  position: relative;
  min-height: 600px;
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px),
    linear-gradient(145deg, #062217, #0a7d55 58%, #dff8ed);
  background-size: 44px 44px, 44px 44px, auto;
  box-shadow: 0 30px 90px rgba(2, 35, 25, 0.22);
}

.character-stage::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 2px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
}

.character-stage img {
  position: absolute;
  z-index: 2;
  bottom: -6px;
  object-fit: contain;
  filter: drop-shadow(0 26px 24px rgba(0, 0, 0, 0.28));
}

.tsuki-img {
  left: -4%;
  width: min(65%, 560px);
  max-height: 570px;
}

.oikawa-img {
  right: -2%;
  width: min(52%, 430px);
  max-height: 540px;
}

.stage-label {
  position: absolute;
  z-index: 3;
  left: 24px;
  bottom: 24px;
  color: white;
}

.stage-label strong {
  display: block;
  font-size: clamp(2.2rem, 5vw, 5rem);
  line-height: 0.95;
}

.stage-label span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 900;
}

.deep-copy {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 22px;
}

.deep-copy article {
  padding: 18px 0;
  border-top: 2px solid var(--green);
}

.deep-copy h2,
.deep-copy h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.deep-copy p {
  margin: 0;
  color: #53615c;
  line-height: 1.72;
}

.poster-page {
  background:
    linear-gradient(90deg, transparent 49.7%, rgba(18, 183, 106, 0.22) 49.7% 50.3%, transparent 50.3%),
    linear-gradient(0deg, rgba(4, 120, 87, 0.1) 1px, transparent 1px),
    #f8fff9;
  background-size: auto, 100% 72px, auto;
}

.poster-page .big-name span {
  color: var(--orange);
}

.poster-hero-grid {
  grid-template-columns: minmax(360px, 0.82fr) minmax(520px, 1.18fr);
  gap: 48px;
  align-items: center;
}

.poster-page .hero-copy {
  display: grid;
  align-content: center;
}

.poster-page .lede {
  max-width: 620px;
}

.scoreboard {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid rgba(4, 120, 87, 0.18);
  border-radius: 8px;
  background: rgba(4, 120, 87, 0.18);
}

.scoreboard div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.86);
}

.scoreboard strong,
.scoreboard span {
  display: block;
}

.scoreboard strong {
  color: var(--green-2);
  font-size: clamp(1.35rem, 3vw, 2.1rem);
  line-height: 1;
}

.scoreboard span {
  margin-top: 8px;
  color: #5b6863;
  font-size: 0.88rem;
  font-weight: 900;
}

.poster-page .character-stage {
  min-height: 640px;
  overflow: hidden;
}

.poster-page .character-stage::before {
  content: "11";
  position: absolute;
  right: 18px;
  top: -34px;
  color: rgba(255, 255, 255, 0.12);
  font-size: clamp(10rem, 20vw, 17rem);
  font-weight: 950;
  line-height: 1;
}

.poster-page .character-stage .tsuki-img {
  left: -13%;
  width: min(76%, 610px);
  max-height: 610px;
}

.poster-page .character-stage .oikawa-img {
  right: -5%;
  width: min(47%, 390px);
  max-height: 540px;
}

.poster-page .stage-label {
  left: 28px;
  top: 28px;
  bottom: auto;
  max-width: 260px;
}

.poster-page .stage-label strong {
  font-size: clamp(2.2rem, 4.4vw, 4.6rem);
}

.court-map {
  position: absolute;
  z-index: 4;
  right: 24px;
  bottom: 24px;
  display: grid;
  grid-template-columns: repeat(3, 36px);
  grid-template-rows: repeat(2, 28px);
  gap: 5px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  background: rgba(4, 17, 13, 0.44);
  backdrop-filter: blur(8px);
}

.court-map span {
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.12);
}

.poster-training,
.poster-character-notes,
.poster-rhythm {
  margin-top: 42px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(220px, 0.54fr) 1fr;
  gap: 24px;
  align-items: end;
  padding-top: 28px;
  border-top: 3px solid var(--green);
}

.section-heading h2,
.poster-character-notes h2,
.poster-rhythm h2 {
  margin: 0;
  font-size: clamp(1.75rem, 4vw, 3.4rem);
  line-height: 1.08;
}

.training-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.training-grid article {
  min-height: 310px;
  padding: 20px;
  border: 1px solid rgba(4, 120, 87, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(223, 248, 237, 0.78)),
    linear-gradient(90deg, rgba(4, 120, 87, 0.08) 1px, transparent 1px);
  background-size: auto, 28px auto;
}

.training-grid article span {
  display: inline-block;
  color: var(--green-2);
  font-size: 2.1rem;
  font-weight: 950;
  line-height: 1;
}

.training-grid h3,
.poster-character-notes h3 {
  margin: 18px 0 10px;
  font-size: 1.35rem;
}

.training-grid p,
.poster-character-notes p,
.rhythm-list span {
  margin: 0;
  color: #52605b;
  line-height: 1.78;
}

.poster-character-notes {
  display: grid;
  grid-template-columns: 0.95fr 1fr 1fr;
  gap: 16px;
  align-items: stretch;
  padding: 22px;
  border-radius: 8px;
  color: white;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    #071711;
  background-size: 38px 38px;
}

.poster-character-notes .eyebrow {
  color: var(--cyan);
}

.poster-character-notes article {
  padding: 20px;
  border: 1px solid rgba(134, 247, 208, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.poster-character-notes p {
  color: #d5eee4;
}

.poster-rhythm {
  display: grid;
  grid-template-columns: 0.45fr 1fr;
  gap: 20px;
  align-items: stretch;
  margin-bottom: 16px;
}

.rhythm-title {
  padding: 24px;
  border-radius: 8px;
  background: var(--green-2);
  color: white;
}

.rhythm-title .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.rhythm-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(4, 120, 87, 0.16);
  border-radius: 8px;
  background: rgba(4, 120, 87, 0.16);
}

.rhythm-list div {
  padding: 22px;
  background: rgba(255, 255, 255, 0.88);
}

.rhythm-list strong {
  display: block;
  margin-bottom: 8px;
  color: #073d2d;
  font-size: 1.1rem;
}

.poster-page .deep-copy {
  display: none;
}

.dossier-page {
  background: #f5fff8;
}

.dossier-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 20px;
  min-height: calc(100vh - 124px);
  align-items: stretch;
}

.dossier-left,
.dossier-right {
  border-radius: 8px;
  overflow: hidden;
}

.dossier-left {
  padding: 28px;
  display: grid;
  align-content: space-between;
  background:
    linear-gradient(90deg, rgba(4, 120, 87, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(4, 120, 87, 0.08) 1px, transparent 1px),
    white;
  background-size: 34px 34px;
  border: 1px solid rgba(4, 120, 87, 0.18);
}

.dossier-left .big-name {
  font-size: clamp(3.2rem, 8vw, 7.4rem);
}

.dossier-table {
  display: grid;
  gap: 1px;
  margin-top: 28px;
  background: rgba(4, 120, 87, 0.15);
}

.dossier-table div {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 12px;
  padding: 13px 0;
  background: white;
}

.dossier-table dt {
  color: #5c6a65;
  font-weight: 900;
}

.dossier-table dd {
  margin: 0;
  font-weight: 900;
}

.dossier-right {
  display: grid;
  grid-template-rows: 1fr auto;
  background: var(--night);
  color: white;
}

.dossier-photo-strip {
  position: relative;
  min-height: 500px;
  overflow: hidden;
}

.dossier-photo-strip::before {
  content: "11";
  position: absolute;
  right: 4%;
  top: -7%;
  color: rgba(255, 255, 255, 0.08);
  font-size: clamp(12rem, 25vw, 21rem);
  font-weight: 950;
}

.dossier-photo-strip img {
  position: absolute;
  bottom: -4px;
  object-fit: contain;
  filter: drop-shadow(0 24px 26px rgba(0, 0, 0, 0.34));
}

.dossier-photo-strip .tsuki-img {
  left: 0;
  width: 60%;
}

.dossier-photo-strip .oikawa-img {
  right: 4%;
  width: 42%;
}

.dossier-notes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(134, 247, 208, 0.22);
}

.dossier-notes article {
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
}

.dossier-notes h2 {
  margin: 0 0 8px;
  color: var(--cyan);
}

.dossier-notes p {
  margin: 0;
  color: #d5eee4;
  line-height: 1.72;
}

.terminal-page {
  color: #dff8ed;
  background:
    linear-gradient(90deg, rgba(134, 247, 208, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(134, 247, 208, 0.08) 1px, transparent 1px),
    #06110d;
  background-size: 30px 30px;
}

.terminal-layout {
  min-height: calc(100vh - 126px);
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 20px;
  align-items: stretch;
}

.terminal-main {
  border: 1px solid rgba(134, 247, 208, 0.24);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(1, 10, 8, 0.72);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.36);
}

.terminal-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(134, 247, 208, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

.terminal-bar i {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--cyan);
}

.terminal-bar i:nth-child(2) {
  background: var(--green);
}

.terminal-bar i:nth-child(3) {
  background: var(--orange);
}

.terminal-content {
  position: relative;
  padding: 34px;
}

.terminal-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 42%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  animation: scan-line 3s linear infinite;
}

.terminal-content .big-name {
  font-size: clamp(3rem, 8vw, 7.2rem);
}

.terminal-code {
  margin: 28px 0 0;
  padding: 18px;
  border-radius: 8px;
  color: #dff8ed;
  background: rgba(134, 247, 208, 0.07);
  font: 0.92rem/1.75 Consolas, "Courier New", monospace;
  overflow: auto;
}

.terminal-side {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(155deg, rgba(18, 183, 106, 0.3), rgba(249, 115, 22, 0.18), rgba(255, 255, 255, 0.04));
}

.terminal-side img {
  position: absolute;
  bottom: 0;
  object-fit: contain;
  filter: drop-shadow(0 22px 24px rgba(0, 0, 0, 0.42));
}

.terminal-side .tsuki-img {
  left: -18%;
  width: 88%;
}

.terminal-side .oikawa-img {
  right: -12%;
  width: 68%;
}

.wall-page {
  background: var(--paper);
}

.wall-intro {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 28px;
  align-items: end;
  margin-bottom: 24px;
}

.wall-intro .big-name {
  font-size: clamp(3rem, 8vw, 7.6rem);
}

.wall-intro p:last-child {
  color: #4f5d58;
  line-height: 1.75;
}

.wall-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 570px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 30px 88px rgba(2, 35, 25, 0.2);
}

.wall-panel {
  position: relative;
  overflow: hidden;
  padding: 24px;
  display: grid;
  align-content: end;
}

.wall-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.22) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 42px 42px;
}

.wall-panel:first-child {
  background: linear-gradient(150deg, #dff8ed, #0b6b4a);
}

.wall-panel:last-child {
  background: linear-gradient(150deg, #14201c, #10b981);
}

.wall-panel img {
  position: absolute;
  right: -4%;
  bottom: -5px;
  z-index: 1;
  width: min(78%, 520px);
  max-height: 540px;
  object-fit: contain;
  filter: drop-shadow(0 22px 24px rgba(0, 0, 0, 0.34));
  transition: transform 0.2s ease;
}

.wall-panel:first-child img {
  left: -14%;
  width: min(96%, 650px);
}

.wall-panel:hover img {
  transform: translateY(-7px);
}

.wall-panel div {
  position: relative;
  z-index: 2;
  max-width: 330px;
  color: white;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.26);
}

.wall-panel h2 {
  margin: 0 0 10px;
  font-size: clamp(2.4rem, 6vw, 5.4rem);
  line-height: 0.95;
}

.wall-panel p {
  margin: 0;
  line-height: 1.72;
}

.magazine-page {
  background:
    linear-gradient(90deg, rgba(4, 120, 87, 0.08) 1px, transparent 1px),
    #fbfffc;
  background-size: 62px auto;
}

.magazine-cover {
  min-height: calc(100vh - 124px);
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 24px;
  align-items: center;
}

.magazine-title {
  align-self: stretch;
  display: grid;
  align-content: center;
  border-top: 5px solid var(--green);
  border-bottom: 1px solid var(--line);
}

.magazine-title .big-name {
  font-size: clamp(3.2rem, 9vw, 8.2rem);
}

.magazine-photo {
  position: relative;
  min-height: 620px;
  border-radius: 8px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 30%, rgba(249, 115, 22, 0.35), transparent 28%),
    linear-gradient(145deg, #0b1b15, #0d7a52 62%, #e8fff2);
  box-shadow: 0 30px 88px rgba(2, 35, 25, 0.2);
}

.magazine-photo::after {
  content: "HAIKYUU";
  position: absolute;
  left: 20px;
  bottom: 12px;
  color: rgba(255, 255, 255, 0.16);
  font-size: clamp(3.2rem, 9vw, 8rem);
  font-weight: 950;
}

.magazine-photo img {
  position: absolute;
  bottom: 0;
  z-index: 2;
  object-fit: contain;
  filter: drop-shadow(0 26px 24px rgba(0, 0, 0, 0.32));
}

.magazine-photo .tsuki-img {
  left: -8%;
  width: 62%;
  max-height: 590px;
}

.magazine-photo .oikawa-img {
  right: 1%;
  width: 48%;
  max-height: 570px;
}

.magazine-lines {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.magazine-lines article {
  padding-top: 16px;
  border-top: 2px solid var(--green);
}

.magazine-lines h2 {
  margin: 0 0 8px;
  font-size: 1.12rem;
}

.magazine-lines p {
  margin: 0;
  color: #52605b;
  line-height: 1.68;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scan-line {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(240%);
  }
}

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

@media (max-width: 1000px) {
  .version-grid,
  .hero-grid,
  .dossier-layout,
  .terminal-layout,
  .wall-intro,
  .magazine-cover {
    grid-template-columns: 1fr;
  }

  .version-grid,
  .deep-copy,
  .magazine-lines {
    grid-template-columns: repeat(2, 1fr);
  }

  .character-stage,
  .magazine-photo,
  .terminal-side {
    min-height: 540px;
  }

  .poster-hero-grid,
  .section-heading,
  .poster-character-notes,
  .poster-rhythm {
    grid-template-columns: 1fr;
  }

  .training-grid,
  .rhythm-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .poster-page .character-stage .tsuki-img {
    left: -7%;
    width: min(66%, 520px);
    max-height: 430px;
  }

  .poster-page .character-stage .oikawa-img {
    right: 2%;
    width: min(40%, 330px);
    max-height: 400px;
  }

  .poster-page .character-stage {
    min-height: 620px;
  }

  .poster-page .court-map {
    top: 22px;
    right: 22px;
    bottom: auto;
  }
}

@media (max-width: 680px) {
  .site-nav {
    top: 10px;
    width: calc(100% - 18px);
    font-size: 0.76rem;
  }

  .site-nav span {
    max-width: 130px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .shell,
  .index-shell {
    width: min(100% - 22px, 1180px);
    padding-top: 90px;
  }

  .version-grid,
  .deep-copy,
  .poster-page .deep-copy,
  .dossier-notes,
  .wall-grid,
  .magazine-lines,
  .scoreboard,
  .training-grid,
  .rhythm-list {
    grid-template-columns: 1fr;
  }

  .version-link {
    min-height: 170px;
  }

  .version-number {
    margin-bottom: 36px;
  }

  .hero-grid,
  .terminal-layout {
    min-height: auto;
  }

  .character-stage,
  .magazine-photo,
  .terminal-side,
  .dossier-photo-strip {
    min-height: 430px;
  }

  .poster-page .character-stage {
    min-height: 560px;
  }

  .poster-page .character-stage .tsuki-img {
    left: -23%;
    width: 92%;
    max-height: 360px;
  }

  .poster-page .character-stage .oikawa-img {
    right: -8%;
    width: 56%;
    max-height: 335px;
  }

  .poster-page .stage-label {
    left: 18px;
    top: 18px;
  }

  .poster-page .stage-label strong {
    font-size: clamp(1.9rem, 11vw, 3.1rem);
  }

  .court-map {
    top: 18px;
    right: 14px;
    bottom: auto;
    grid-template-columns: repeat(3, 27px);
    grid-template-rows: repeat(2, 22px);
    padding: 9px;
  }

  .training-grid article {
    min-height: auto;
  }

  .poster-character-notes,
  .poster-rhythm {
    margin-top: 28px;
  }

  .character-stage .tsuki-img,
  .magazine-photo .tsuki-img,
  .dossier-photo-strip .tsuki-img {
    left: -26%;
    width: 86%;
    max-height: 410px;
  }

  .character-stage .oikawa-img,
  .magazine-photo .oikawa-img,
  .dossier-photo-strip .oikawa-img {
    right: -10%;
    width: 64%;
    max-height: 390px;
  }

  .terminal-side .tsuki-img {
    left: -34%;
    width: 110%;
  }

  .terminal-side .oikawa-img {
    right: -18%;
    width: 76%;
  }

  .wall-panel {
    min-height: 430px;
  }

  .wall-panel:first-child img {
    left: -35%;
    width: 120%;
  }

  .wall-panel img {
    width: 78%;
  }
}
