:root {
  --bg: #050505;
  --bg-soft: #0b0c0c;
  --panel: rgba(10, 10, 10, 0.84);
  --panel-solid: #111315;
  --panel-alt: #151312;
  --text: #e8e2d4;
  --text-soft: #cfc7b8;
  --muted: #9f9788;
  --accent: #c78a2a;
  --accent-strong: #d69a2d;
  --accent-dim: #b9791f;
  --teal: #4f6a67;
  --rust: #7c3630;
  --line: rgba(214, 154, 45, 0.35);
  --line-soft: rgba(232, 226, 212, 0.12);
  --max: 1180px;
  --radius: 8px;
  --shadow: 0 24px 90px rgba(0, 0, 0, 0.55);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 5px),
    linear-gradient(180deg, #050505 0%, #0b0c0c 42%, #050505 100%);
  color: var(--text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.85;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    repeating-linear-gradient(90deg, rgba(199, 138, 42, 0.035) 0 1px, transparent 1px 9px),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 7px);
  opacity: 0.55;
  mix-blend-mode: screen;
}

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

a {
  color: var(--text);
  text-decoration-color: rgba(214, 154, 45, 0.52);
  text-underline-offset: 0.18em;
}

a:hover {
  color: #fff7df;
}

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

button {
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--accent-strong);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 50;
  transform: translateY(-160%);
  padding: 10px 14px;
  border: 1px solid var(--accent);
  background: #050505;
  color: var(--text);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.88);
  backdrop-filter: blur(10px);
}

.site-header__inner,
.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 32px, var(--max));
  min-height: 64px;
  margin-inline: auto;
  gap: 18px;
}

.brand-mark {
  display: inline-grid;
  gap: 0;
  min-width: 118px;
  color: var(--text);
  text-decoration: none;
}

.brand-mark__title {
  font-family: Impact, "Arial Black", system-ui, sans-serif;
  font-size: 1.45rem;
  line-height: 1;
  text-transform: uppercase;
}

.brand-mark__tag {
  color: var(--accent-strong);
  font-size: 0.68rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.global-nav,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.global-nav a,
.site-footer nav a {
  min-height: 34px;
  padding: 8px 10px;
  border: 1px solid transparent;
  color: var(--text-soft);
  font-size: 0.82rem;
  line-height: 1.1;
  text-decoration: none;
  text-transform: uppercase;
}

.global-nav a:hover,
.global-nav a[aria-current="page"],
.site-footer nav a:hover {
  border-color: var(--line);
  color: var(--text);
  background: rgba(199, 138, 42, 0.08);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #0b0c0c;
  color: var(--text);
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 1px;
  background: currentColor;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(620px, 78vh, 860px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #050505;
}

.hero__picture {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 44%;
  filter: brightness(0.9) contrast(1.08) saturate(0.95);
}

.hero-sign-neon {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 44%;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.68;
  filter:
    drop-shadow(0 0 4px rgba(255, 202, 92, 0.72))
    drop-shadow(0 0 10px rgba(255, 147, 41, 0.45))
    drop-shadow(0 0 18px rgba(255, 104, 24, 0.28));
  animation: signNeonFlicker 5.8s infinite;
}

@keyframes signNeonFlicker {
  0%,
  100% {
    opacity: 0.62;
    filter:
      drop-shadow(0 0 4px rgba(255, 202, 92, 0.68))
      drop-shadow(0 0 10px rgba(255, 147, 41, 0.42))
      drop-shadow(0 0 18px rgba(255, 104, 24, 0.24));
  }

  6% {
    opacity: 0.44;
  }

  7.5% {
    opacity: 0.88;
  }

  9% {
    opacity: 0.52;
  }

  11% {
    opacity: 0.76;
  }

  47% {
    opacity: 0.64;
  }

  50% {
    opacity: 0.95;
    filter:
      drop-shadow(0 0 6px rgba(255, 215, 112, 0.9))
      drop-shadow(0 0 14px rgba(255, 161, 44, 0.62))
      drop-shadow(0 0 26px rgba(255, 105, 22, 0.38));
  }

  52% {
    opacity: 0.55;
  }

  55% {
    opacity: 0.82;
  }
}

.hero::before,
.hero::after,
.hero__grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
}

.hero::before {
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.82) 0%,
      rgba(0, 0, 0, 0.68) 24%,
      rgba(0, 0, 0, 0.36) 48%,
      rgba(0, 0, 0, 0.12) 72%,
      rgba(0, 0, 0, 0.18) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.38) 0%,
      rgba(0, 0, 0, 0.08) 38%,
      rgba(0, 0, 0, 0.52) 100%
    );
}

.hero::after {
  z-index: 2;
  opacity: 0.14;
  background-image:
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.04) 0,
      rgba(255, 255, 255, 0.04) 1px,
      transparent 1px,
      transparent 3px
    );
  mix-blend-mode: overlay;
}

.hero__grain {
  z-index: 4;
  background:
    linear-gradient(135deg, transparent 0 26%, rgba(199, 138, 42, 0.08) 26% 26.4%, transparent 26.4% 100%),
    repeating-linear-gradient(115deg, transparent 0 14px, rgba(255, 255, 255, 0.02) 14px 15px, transparent 15px 26px);
  opacity: 0.34;
  mix-blend-mode: screen;
}

.hero__inner {
  position: relative;
  z-index: 5;
  width: min(100% - 36px, var(--max));
  min-height: clamp(620px, 78vh, 860px);
  margin-inline: auto;
  padding: clamp(145px, 19vh, 210px) 0 64px;
  transform: translateY(90px);
}

.hero__logo {
  margin: 0 0 4px;
  color: var(--text);
  font-family: Impact, "Arial Black", system-ui, sans-serif;
  font-size: 5.8rem;
  line-height: 0.9;
  text-transform: uppercase;
  text-shadow: 0 0 20px rgba(214, 154, 45, 0.2), 0 2px 0 #000;
}

.hero__kicker,
.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-strong);
  font-size: 0.78rem;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 850px;
  margin: 0;
  color: #fff4dc;
  font-size: 3.25rem;
  line-height: 1.16;
  text-wrap: balance;
  text-shadow: 0 4px 26px rgba(0, 0, 0, 0.85);
}

.hero__copy {
  max-width: 720px;
  margin: 20px 0 0;
  color: var(--text-soft);
  font-size: 1.05rem;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 900px;
  margin: clamp(28px, 4vw, 42px) 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  list-style: none;
}

.hero-meta li {
  min-height: 82px;
  padding: 14px 16px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.5);
  color: var(--text);
  font-weight: 700;
  line-height: 1.45;
}

.hero-meta span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 400;
}

.section-shell {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
}

.intro-summary {
  margin-top: 44px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(17, 19, 21, 0.92), rgba(10, 10, 10, 0.84)),
    repeating-linear-gradient(135deg, transparent 0 12px, rgba(214, 154, 45, 0.05) 12px 13px);
  box-shadow: var(--shadow);
}

.intro-summary h2,
.learn-list h2 {
  margin: 0 0 12px;
  font-size: 1.55rem;
}

.intro-summary p:last-child {
  margin-bottom: 0;
}

.quick-links {
  display: flex;
  width: min(100% - 32px, var(--max));
  margin: 24px auto 0;
  gap: 10px;
  overflow-x: auto;
  padding: 2px 0 12px;
  scrollbar-color: var(--accent-dim) #111;
}

.quick-links a {
  flex: 0 0 auto;
  min-height: 42px;
  min-width: 112px;
  padding: 9px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(17, 19, 21, 0.86);
  color: var(--text);
  font-size: 0.92rem;
  text-align: center;
  text-decoration: none;
}

.quick-links a:hover {
  background: rgba(199, 138, 42, 0.14);
}

.learn-list {
  margin-top: 36px;
  padding: 0 0 10px;
}

.learn-list ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.learn-list li {
  min-height: 58px;
  padding: 13px 16px 13px 42px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(17, 19, 21, 0.66);
  color: var(--text-soft);
  position: relative;
}

.learn-list li::before {
  position: absolute;
  top: 19px;
  left: 17px;
  width: 10px;
  height: 10px;
  border: 1px solid var(--accent);
  background: rgba(214, 154, 45, 0.24);
  content: "";
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 36px;
  margin-top: 54px;
  align-items: start;
}

.article-body {
  min-width: 0;
}

.article-section {
  padding: 42px 0;
  border-top: 1px solid var(--line-soft);
}

.article-section:first-of-type {
  padding-top: 0;
  border-top: 0;
}

.article-section h2 {
  margin: 0 0 18px;
  color: #fff0cf;
  font-size: 1.8rem;
  line-height: 1.35;
  text-wrap: balance;
}

.article-section h3 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.45;
}

.article-section p {
  margin: 0 0 16px;
  color: var(--text-soft);
}

.article-section p:last-child {
  margin-bottom: 0;
}

.toc-desktop {
  position: sticky;
  top: 92px;
  max-height: calc(100vh - 116px);
  overflow: auto;
  padding: 16px 0 16px 16px;
  border-left: 1px solid var(--line);
}

.toc-desktop p {
  margin: 0 0 10px;
  color: var(--accent-strong);
  font-size: 0.8rem;
  text-transform: uppercase;
}

.toc-desktop nav,
.toc-mobile nav {
  display: grid;
  gap: 4px;
}

.toc-desktop a,
.toc-mobile a {
  display: block;
  padding: 7px 10px;
  border-left: 2px solid transparent;
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.35;
  text-decoration: none;
}

.toc-desktop a.is-active,
.toc-desktop a:hover,
.toc-mobile a.is-active,
.toc-mobile a:hover {
  border-left-color: var(--accent);
  background: rgba(199, 138, 42, 0.1);
  color: var(--text);
}

.toc-mobile {
  display: none;
  margin: 0 0 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(17, 19, 21, 0.8);
}

.toc-mobile summary {
  min-height: 48px;
  padding: 11px 14px;
  color: var(--text);
  cursor: pointer;
}

.toc-mobile nav {
  padding: 0 10px 12px;
}

.info-table {
  display: grid;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.38);
}

.info-table div {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.info-table span {
  padding: 13px 15px;
}

.info-table [role="rowheader"] {
  color: var(--accent-strong);
  background: rgba(199, 138, 42, 0.08);
  font-weight: 700;
}

.table-scroll {
  max-width: 100%;
  margin: 18px 0;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(5, 5, 5, 0.36);
}

.comparison-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 13px 15px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--text-soft);
  text-align: left;
  vertical-align: top;
}

.comparison-table thead th,
.comparison-table tbody th {
  color: var(--accent-strong);
  font-weight: 700;
}

.comparison-table thead th {
  background: rgba(199, 138, 42, 0.1);
}

.comparison-table tbody tr:last-child th,
.comparison-table tbody tr:last-child td {
  border-bottom: 0;
}

.cast-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.cast-card {
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--panel-solid);
}

.cast-card img,
.cast-card__placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-bottom: 1px solid var(--line-soft);
}

.cast-card__placeholder {
  display: grid;
  place-items: end start;
  padding: 18px;
  background:
    repeating-linear-gradient(120deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 9px),
    linear-gradient(135deg, #111315 0%, #1c1914 58%, rgba(79, 106, 103, 0.55) 100%);
  color: rgba(232, 226, 212, 0.72);
  font-family: Impact, "Arial Black", system-ui, sans-serif;
  font-size: 1.7rem;
}

.cast-card h3,
.cast-card p {
  padding-inline: 16px;
}

.cast-card h3 {
  margin-top: 16px;
}

.cast-card p {
  margin-bottom: 18px;
  font-size: 0.92rem;
}

.note-box {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(79, 106, 103, 0.5);
  border-radius: var(--radius);
  background: rgba(79, 106, 103, 0.1);
}

.battle-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 72px minmax(0, 1fr);
  align-items: stretch;
  min-height: 132px;
  margin: 0 0 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #0b0c0c;
}

.battle-strip > div:not(.versus) {
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 18px;
}

.battle-strip span {
  color: var(--accent-strong);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.battle-strip strong {
  color: var(--text);
  font-size: 1.15rem;
  line-height: 1.35;
}

.versus {
  display: grid;
  place-items: center;
  border-inline: 1px solid var(--line);
  background: rgba(199, 138, 42, 0.1);
  color: var(--accent-strong);
  font-family: Impact, "Arial Black", system-ui, sans-serif;
  font-size: 1.35rem;
}

.spoiler-label {
  display: inline-block;
  margin: 0 0 16px;
  padding: 4px 9px;
  border: 1px solid rgba(124, 54, 48, 0.65);
  border-radius: 3px;
  background: rgba(124, 54, 48, 0.18);
  color: #e8b0a5;
  font-size: 0.78rem;
}

.text-link {
  padding: 16px;
  border-left: 3px solid var(--accent);
  background: rgba(199, 138, 42, 0.08);
}

.music-cards,
.related-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.music-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--panel-solid);
}

.music-card img {
  width: 100%;
  aspect-ratio: 5 / 3;
  object-fit: cover;
}

.music-card div {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 18px;
}

.music-card p {
  margin: 0;
  font-size: 0.92rem;
}

.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 40px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(199, 138, 42, 0.14);
  color: var(--text);
  text-decoration: none;
}

.button-link:hover {
  background: rgba(199, 138, 42, 0.24);
}

.affiliate-section {
  position: relative;
}

.affiliate-note,
.box-office-note {
  padding: 12px 14px;
  border: 1px solid rgba(214, 154, 45, 0.22);
  border-radius: var(--radius);
  background: rgba(199, 138, 42, 0.07);
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.65;
}

.affiliate-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 28px);
  margin-top: 22px;
}

.affiliate-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(214, 154, 45, 0.32);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(18, 18, 18, 0.94), rgba(8, 8, 8, 0.96)),
    var(--panel-solid);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.affiliate-card:hover {
  border-color: rgba(214, 154, 45, 0.52);
  background:
    linear-gradient(180deg, rgba(199, 138, 42, 0.12), transparent 48%),
    var(--panel-solid);
  box-shadow: 0 0 24px rgba(199, 138, 42, 0.08);
}

.affiliate-card__media {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border-bottom: 1px solid rgba(214, 154, 45, 0.22);
  background:
    radial-gradient(ellipse at 50% 35%, rgba(199, 138, 42, 0.14), transparent 58%),
    linear-gradient(135deg, #111315 0%, #090909 55%, #151312 100%);
}

.affiliate-card__media picture,
.affiliate-card__media img {
  display: block;
  width: 100%;
  height: 100%;
}

.affiliate-card__media img {
  object-fit: cover;
  object-position: center;
  color: transparent;
  font-size: 0;
  filter: brightness(0.86) contrast(1.08) saturate(0.92);
  transition: transform 350ms ease, filter 350ms ease;
}

.affiliate-card:hover .affiliate-card__media img {
  transform: scale(1.035);
  filter: brightness(0.96) contrast(1.1) saturate(1);
}

.affiliate-card__body {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 14px;
  padding: clamp(18px, 2vw, 24px);
}

.affiliate-card__title {
  margin: 0;
  color: #fff0cf;
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
}

.affiliate-card__text {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.94rem;
  line-height: 1.8;
}

.affiliate-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.affiliate-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 124px;
  min-height: 42px;
  padding: 9px 16px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: #fff7df;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  background: rgba(5, 5, 5, 0.48);
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.affiliate-button:hover {
  border-color: rgba(214, 154, 45, 0.72);
  color: #fff;
  background: rgba(199, 138, 42, 0.16);
  transform: translateY(-1px);
}

.affiliate-button--amazon {
  border-color: rgba(214, 154, 45, 0.48);
}

.affiliate-button--rakuten {
  border-color: rgba(124, 54, 48, 0.72);
  background: rgba(124, 54, 48, 0.15);
}

.box-office-table-title {
  margin-top: 28px;
}

.box-office-table {
  min-width: 560px;
}

.box-office-table th:first-child {
  width: 34%;
}

.box-office-table-wrap {
  margin-bottom: 16px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
}

.faq-item {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(17, 19, 21, 0.72);
}

.faq-item button {
  position: relative;
  width: 100%;
  min-height: 58px;
  padding: 14px 42px 14px 16px;
  border: 0;
  background: transparent;
  color: var(--text);
  font-weight: 700;
  line-height: 1.45;
  text-align: left;
  cursor: pointer;
}

.faq-item button::after {
  position: absolute;
  top: 50%;
  right: 16px;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--accent-strong);
  content: "+";
  display: grid;
  place-items: center;
  font-size: 0.86rem;
  line-height: 1;
}

.faq-item button[aria-expanded="true"]::after {
  content: "-";
}

.faq-panel {
  padding: 0 16px 16px;
}

.faq-panel p {
  margin: 0;
  font-size: 0.92rem;
}

.reference-list {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.reference-list li {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(17, 19, 21, 0.66);
}

.reference-list a,
.reference-source {
  color: #fff0cf;
  font-weight: 700;
}

.reference-list span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.related-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.related-card {
  display: grid;
  min-height: 150px;
  align-content: end;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 8px),
    linear-gradient(180deg, rgba(17, 19, 21, 0.92), rgba(7, 7, 7, 0.94));
  text-decoration: none;
}

.related-card:hover {
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 8px),
    linear-gradient(180deg, rgba(35, 28, 16, 0.96), rgba(7, 7, 7, 0.94));
}

.related-card span {
  color: var(--accent-strong);
  font-family: Impact, "Arial Black", system-ui, sans-serif;
  font-size: 1.6rem;
}

.related-card strong {
  color: var(--text);
  line-height: 1.4;
}

.related-card small {
  color: var(--muted);
}

.related-card--planned {
  border-color: rgba(79, 106, 103, 0.6);
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 18;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(5, 5, 5, 0.86);
  color: var(--text);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  cursor: pointer;
  transition: opacity 160ms ease, transform 160ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.site-footer {
  margin-top: 50px;
  border-top: 1px solid var(--line);
  background: #050505;
}

.site-footer__inner {
  min-height: 96px;
}

@media (min-width: 1180px) {
  .hero h1 {
    font-size: 3.6rem;
  }
}

@media (max-width: 1040px) {
  .content-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .toc-desktop {
    display: none;
  }

  .toc-mobile {
    display: block;
  }

  .cast-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .site-header__inner,
  .site-footer__inner {
    width: min(100% - 24px, var(--max));
  }

  .nav-toggle {
    display: flex;
  }

  .global-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 12px;
    left: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid var(--line);
    background: rgba(5, 5, 5, 0.96);
    box-shadow: var(--shadow);
  }

  .global-nav.is-open {
    display: flex;
  }

  .global-nav a {
    min-height: 44px;
  }

  .hero {
    min-height: clamp(620px, 78vh, 820px);
    padding-bottom: 0;
  }

  .hero__inner {
    min-height: clamp(620px, 78vh, 820px);
    padding: 86px 0 20px;
    transform: translateY(52px);
  }

  .hero__logo {
    font-size: 4.2rem;
  }

  .hero h1 {
    font-size: 2.35rem;
  }

  .hero__image,
  .hero-sign-neon {
    object-position: 58% 44%;
  }

  .hero-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .learn-list ul,
  .music-cards,
  .affiliate-grid,
  .faq-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .affiliate-card__media {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 15.5px;
  }

  .section-shell {
    width: min(100% - 24px, var(--max));
  }

  .hero__inner {
    width: min(100% - 24px, var(--max));
    padding-top: 78px;
    transform: translateY(48px);
  }

  .hero__logo {
    font-size: 3.4rem;
  }

  .hero h1 {
    font-size: 2rem;
    overflow-wrap: anywhere;
  }

  .hero__image,
  .hero-sign-neon {
    object-position: 62% 44%;
  }

  .hero__copy {
    font-size: 1rem;
  }

  .hero-meta {
    grid-template-columns: 1fr;
  }

  .hero-meta li {
    min-height: 64px;
  }

  .intro-summary {
    margin-top: 28px;
    padding: 20px;
  }

  .content-layout {
    margin-top: 38px;
  }

  .article-section {
    padding: 34px 0;
  }

  .article-section h2 {
    font-size: 1.5rem;
    overflow-wrap: anywhere;
  }

  .info-table div {
    grid-template-columns: 1fr;
  }

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

  .battle-strip {
    grid-template-columns: 1fr;
  }

  .versus {
    min-height: 52px;
    border-block: 1px solid var(--line);
    border-inline: 0;
  }

  .site-footer__inner {
    display: grid;
    justify-items: start;
    padding: 22px 0;
  }

  .site-footer nav {
    flex-wrap: wrap;
  }
}

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

  .hero-sign-neon {
    animation: none;
    opacity: 0.72;
  }
}
.section-visual.boundary-map {
  margin: 48px auto;
  max-width: 1120px;
}

.section-visual.boundary-map img {
  width: 100%;
  display: block;
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
}

.section-visual.boundary-map figcaption {
  margin-top: 14px;
  color: #b8b8b8;
  font-size: 0.92rem;
  line-height: 1.8;
  text-align: center;
}
.section-visual.rap-battle-scene {
  margin: 48px auto;
  max-width: 1120px;
}

.section-visual.rap-battle-scene img {
  width: 100%;
  display: block;
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
}

.section-visual.rap-battle-scene figcaption {
  margin-top: 14px;
  color: #b8b8b8;
  font-size: 0.92rem;
  line-height: 1.8;
  text-align: center;
}

@media (max-width: 768px) {
  .section-visual.rap-battle-scene {
    margin: 32px auto;
  }

  .section-visual.rap-battle-scene img {
    border-radius: 12px;
  }

  .section-visual.rap-battle-scene figcaption {
    font-size: 0.82rem;
    text-align: left;
  }
}
.section-visual.rabbit-eminem-compare {
  margin: 48px auto;
  max-width: 1120px;
}

.section-visual.rabbit-eminem-compare img {
  width: 100%;
  display: block;
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
}

@media (max-width: 768px) {
  .section-visual.rabbit-eminem-compare {
    margin: 32px auto;
  }

  .section-visual.rabbit-eminem-compare img {
    border-radius: 12px;
  }
}
.section-visual {
  margin: 48px auto;
  max-width: 1120px;
}

.section-visual img {
  width: 100%;
  display: block;
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
}

.section-visual figcaption {
  margin-top: 14px;
  color: #b8b8b8;
  font-size: 0.92rem;
  line-height: 1.8;
  text-align: center;
}

@media (max-width: 768px) {
  .section-visual {
    margin: 32px auto;
  }

  .section-visual img {
    border-radius: 12px;
  }

  .section-visual figcaption {
    font-size: 0.82rem;
    text-align: left;
  }
}
.site-footer__bottom {
  width: min(1120px, calc(100% - 40px));
  margin: 28px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(214, 154, 45, 0.22);
  text-align: center;
}

.footer-home-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 22px;
  border: 1px solid rgba(214, 154, 45, 0.48);
  color: #f2e4c7;
  text-decoration: none;
  background: rgba(199, 138, 42, 0.12);
  letter-spacing: 0.04em;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.footer-home-button:hover {
  border-color: rgba(214, 154, 45, 0.9);
  background: rgba(199, 138, 42, 0.22);
  transform: translateY(-1px);
}

.site-copyright {
  margin: 18px 0 0;
  color: #b9b0a0;
  font-size: 0.86rem;
  letter-spacing: 0.03em;
}

.site-disclaimer {
  max-width: 760px;
  margin: 8px auto 0;
  color: #8f8678;
  font-size: 0.76rem;
  line-height: 1.7;
}

.share-section {
  border: 1px solid rgba(214, 154, 45, 0.28);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(18, 18, 18, 0.96), rgba(7, 7, 7, 0.98));
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
}

.share-section h2 {
  margin-bottom: 18px;
}

.share-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.share-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid rgba(214, 154, 45, 0.52);
  border-radius: 999px;
  color: #f2e4c7;
  font: inherit;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  background: rgba(199, 138, 42, 0.1);
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.share-button:hover,
.share-button:focus-visible {
  border-color: rgba(214, 154, 45, 0.9);
  background: rgba(199, 138, 42, 0.2);
  transform: translateY(-1px);
}

.share-button--x {
  color: #fff5dc;
}

.share-feedback {
  min-height: 1.5em;
  margin: 14px 0 0;
  color: #d6b36a;
  font-size: 0.86rem;
}

@media (max-width: 640px) {
  .share-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .share-button {
    width: 100%;
  }
}
