/* ==========================================================================
   Yoko Shimomura Fan Page — css/style.css
   Deep violet-purple darkness. SF2 fire-orange. Josefin Slab precision.
   "From fighter to fable — the voice that became the soul of Japanese RPGs."
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Josefin+Slab:wght@400;700&family=Inter:wght@400;500;600&display=swap');

[hidden] { display: none !important; }

/* --------------------------------------------------------------------------
   Custom Properties
   -------------------------------------------------------------------------- */
:root {
  --bg:            #1a0033;
  --bg-card:       #250045;
  --bg-alt:        #1e003d;
  --text:          #f0ecf8;
  --text-muted:    #8a7a9a;
  --accent:        #ff6600;
  --accent-dim:    #cc5200;
  --accent-pink:   #ff3399;
  --border:        #3d0066;
  --border-accent: #ff6600;
  --font-heading:  'Josefin Slab', 'Georgia', serif;
  --font-body:     'Inter', 'Arial', sans-serif;

  --nav-height:    60px;
  --container-max: 1200px;

  --gradient-fire: linear-gradient(90deg, #ff6600 0%, #ff3399 100%);
}

/* --------------------------------------------------------------------------
   Reset & Base
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  padding-top: var(--nav-height);
}

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover,
a:focus {
  color: var(--accent-dim);
  outline: none;
}

ul, ol { list-style: none; }

hr {
  border: none;
  border-top: 2px solid var(--accent);
  opacity: 0.35;
  margin: 3rem 0;
}

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.1;
}

h1 { font-size: clamp(2rem, 6vw, 4rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.8rem); }
h4 { font-size: 1.1rem; }

p + p { margin-top: 0.9em; }

strong { color: var(--text); }

/* --------------------------------------------------------------------------
   Gradient heading text (background-clip: text)
   -------------------------------------------------------------------------- */
.heading-gradient {
  background: var(--gradient-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: var(--accent); /* fallback */
}

h1.heading-gradient,
h2.heading-gradient {
  background: var(--gradient-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --------------------------------------------------------------------------
   Skip Link
   -------------------------------------------------------------------------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--accent);
  color: #fff;
  padding: 0.5rem 1rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  z-index: 9999;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 1rem;
  color: #fff;
}

/* --------------------------------------------------------------------------
   Navigation
   -------------------------------------------------------------------------- */
#site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #130028;
  border-bottom: 2px solid var(--accent);
  height: var(--nav-height);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  height: 100%;
}

.nav-brand {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent);
  letter-spacing: 0.02em;
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
}

.nav-brand:hover,
.nav-brand:focus {
  color: var(--accent-dim);
}

.nav-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 0.1rem;
  margin-left: auto;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.3rem 0.45rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.2s, border-bottom-color 0.2s;
  border-bottom: 2px solid transparent;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--text);
  border-bottom-color: var(--accent);
}

.nav-link--active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  background: none;
  border: 1px solid var(--border);
  cursor: pointer;
  margin-left: auto;
}

.burger {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-muted);
  transition: background 0.2s;
}

.nav-toggle:hover .burger,
.nav-toggle:focus .burger {
  background: var(--accent);
}

/* --------------------------------------------------------------------------
   Container
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.2s;
  cursor: pointer;
  border-radius: 0;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border: 2px solid var(--accent);
}

.btn-primary:hover,
.btn-primary:focus {
  background: transparent;
  color: var(--accent);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}

.btn-secondary:hover,
.btn-secondary:focus {
  border-color: var(--accent);
  color: var(--accent);
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
#hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.25rem;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 50% 50%, rgba(255,102,0,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 80% 60% at 50% 80%, rgba(255,51,153,0.05) 0%, transparent 60%);
  pointer-events: none;
}

#hero .hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.15;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--accent);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.5rem, 8vw, 6rem);
  color: var(--text);
  letter-spacing: 0.01em;
  margin-bottom: 1.2rem;
  line-height: 1.05;
}

.hero-title .gradient-span {
  background: var(--gradient-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.hero-stat .num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2.8rem;
  color: var(--accent);
  letter-spacing: 0.01em;
  line-height: 1;
}

.hero-stat .label {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   Screenshot strip
   -------------------------------------------------------------------------- */
.screenshot-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: 2rem;
}

.screenshot-wrap {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
}

.screenshot-wrap img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.screenshot-wrap:hover img {
  transform: scale(1.04);
}

.screenshot-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,102,0,0.2) 0%, rgba(26,0,51,0.1) 50%, transparent 80%);
  mix-blend-mode: screen;
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   Page Hero (inner pages)
   -------------------------------------------------------------------------- */
.page-hero {
  padding: 6rem 0 4rem;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.page-hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.page-hero__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.5rem, 8vw, 5rem);
  color: var(--text);
  margin-bottom: 1rem;
}

.page-hero__title.heading-gradient {
  background: var(--gradient-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero__subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */
.site-section {
  padding: 6rem 0;
  background: var(--bg);
  position: relative;
}

.site-section:nth-child(even) {
  background: var(--bg-alt);
}

.section-header {
  margin-bottom: 3rem;
  text-align: center;
}

.section-label {
  display: inline-block;
  font-size: 0.65rem;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-title {
  color: var(--text);
  margin-bottom: 0.75rem;
}

.section-title.heading-gradient {
  background: var(--gradient-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   Scroll Reveal
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* --------------------------------------------------------------------------
   Multi-column layout (music.html, flagship.html)
   -------------------------------------------------------------------------- */
.two-column-prose {
  column-count: 2;
  column-gap: 2rem;
  column-rule: 1px solid var(--border);
}

.two-column-prose p {
  break-inside: avoid;
}

.two-column-prose .trivia,
.two-column-prose .dev-quote {
  break-inside: avoid;
  column-span: none;
}

@media (max-width: 768px) {
  .two-column-prose {
    column-count: 1;
    column-gap: 0;
    column-rule: none;
  }
}

/* --------------------------------------------------------------------------
   Glow callout panels
   -------------------------------------------------------------------------- */
.callout-panel {
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  box-shadow: 0 0 16px rgba(255, 102, 0, 0.15), inset 0 0 32px rgba(255, 102, 0, 0.03);
}

.callout-panel h3,
.callout-panel h4 {
  color: var(--accent);
  text-shadow: 0 0 8px rgba(255, 102, 0, 0.4);
  margin-bottom: 0.75rem;
}

/* --------------------------------------------------------------------------
   Cards / Grid
   -------------------------------------------------------------------------- */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  overflow: hidden;
}

.game-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(255, 102, 0, 0.15);
}

.game-card__img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}

.game-card__body {
  padding: 1.25rem;
}

.game-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.game-card__year {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.game-card__platform {
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

/* --------------------------------------------------------------------------
   Tags / Badges
   -------------------------------------------------------------------------- */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.75rem;
}

.tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border: 1px solid var(--border);
  color: var(--text-muted);
}

.tag--platform  { border-color: var(--accent); color: var(--accent); }
.tag--confirmed { border-color: #44ff88; color: #44ff88; }
.tag--flagship  { border-color: var(--accent); color: var(--accent); }
.tag--rpg       { border-color: #aa88ff; color: #aa88ff; }
.tag--capcom    { border-color: #ff6600; color: #ff6600; }
.tag--square    { border-color: #88aaff; color: #88aaff; }
.tag--nintendo  { border-color: #ff4488; color: #ff4488; }

/* --------------------------------------------------------------------------
   Catalogue Table
   -------------------------------------------------------------------------- */
.catalogue-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.catalogue-table th {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  text-align: left;
  padding: 0.75rem 1rem;
  border-bottom: 2px solid var(--border-accent);
  background: var(--bg-card);
}

.catalogue-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
  color: var(--text-muted);
}

.catalogue-table tr:hover td {
  background: rgba(255, 102, 0, 0.04);
}

.catalogue-table td:first-child {
  width: 70px;
}

.catalogue-table .game-title {
  font-weight: 600;
  color: var(--text);
  font-size: 0.95rem;
}

.catalogue-table .game-year {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.catalogue-thumb {
  width: 60px;
  height: 80px;
  object-fit: cover;
  border: 1px solid var(--border);
  display: block;
}

.catalogue-thumb-placeholder {
  width: 60px;
  height: 80px;
  background: var(--bg-card);
  border: 1px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
}

/* --------------------------------------------------------------------------
   Filter bar (catalogue)
   -------------------------------------------------------------------------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  align-items: center;
}

.filter-btn {
  padding: 0.35rem 0.85rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--accent);
  color: var(--accent);
}

/* --------------------------------------------------------------------------
   History / Long-form content
   -------------------------------------------------------------------------- */
.history-body {
  max-width: 780px;
  margin: 0 auto;
}

.history-chapter {
  margin-bottom: 3rem;
}

.history-chapter h3 {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
  text-shadow: 0 0 12px rgba(255, 102, 0, 0.25);
}

.history-chapter p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.history-figure {
  margin: 1.5rem 0;
  padding: 0.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  text-align: center;
}

.history-figure img {
  max-width: 100%;
  max-height: 280px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.history-figure figcaption {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
}

/* --------------------------------------------------------------------------
   Trivia & Dev Quotes
   -------------------------------------------------------------------------- */
.trivia {
  display: block;
  margin: 1.5rem 0;
  padding: 1rem 1.25rem;
  background: var(--bg-card);
  border-left: 4px solid var(--accent);
  box-shadow: 0 0 12px rgba(255, 102, 0, 0.1);
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.trivia strong {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  display: block;
  margin-bottom: 0.4rem;
}

.dev-quote {
  margin: 1.5rem 0;
  padding: 1rem 1.5rem;
  border-left: 4px solid var(--accent-dim);
  background: rgba(255, 102, 0, 0.05);
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  box-shadow: 0 0 16px rgba(255, 102, 0, 0.08);
}

.dev-quote cite {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  font-style: normal;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.dev-quote cite::before {
  content: "— ";
  color: var(--accent);
}

/* --------------------------------------------------------------------------
   People Grid
   -------------------------------------------------------------------------- */
.people-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.person-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 1.75rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.person-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(255, 102, 0, 0.12);
}

.person-card__portrait {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border: 2px solid var(--border);
  margin-bottom: 1.25rem;
}

.person-card__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.person-card__role {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.person-card__bio {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.person-card__placeholder {
  width: 120px;
  height: 120px;
  background: var(--bg);
  border: 2px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
  text-align: center;
  padding: 0.5rem;
}

/* --------------------------------------------------------------------------
   Video Grid
   -------------------------------------------------------------------------- */
.video-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.video-entry {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

.video-entry:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.video-entry h3 {
  font-size: 1.6rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.video-entry p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: #000;
}

.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   Resources Grid
   -------------------------------------------------------------------------- */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.resource-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 1.5rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.resource-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(255, 102, 0, 0.12);
}

.resource-card__img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 1px solid var(--border);
}

.resource-card__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.resource-card__url {
  font-size: 0.75rem;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  word-break: break-all;
}

.resource-card__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   Interviews page
   -------------------------------------------------------------------------- */
.interview-block {
  max-width: 780px;
  margin: 0 auto 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

.interview-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.interview-block__context {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.interview-block__source {
  font-size: 0.75rem;
  color: var(--accent);
  margin-top: 0.75rem;
  font-style: normal;
  letter-spacing: 0.05em;
}

/* --------------------------------------------------------------------------
   HADOUKEN Easter Egg
   -------------------------------------------------------------------------- */
.hadouken-overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  overflow: hidden;
}

.hadouken-overlay.active {
  pointer-events: none;
}

.fireball {
  position: absolute;
  width: 80px;
  height: 28px;
  border-radius: 50%;
  background: radial-gradient(ellipse at 30% 50%, #fff 0%, #ff6600 35%, #ff3399 70%, transparent 100%);
  box-shadow: 0 0 20px 6px rgba(255, 102, 0, 0.8), 0 0 40px 12px rgba(255, 51, 153, 0.4);
  pointer-events: none;
}

.fireball::after {
  content: '';
  position: absolute;
  right: 100%;
  top: 20%;
  width: 60px;
  height: 60%;
  background: linear-gradient(to left, rgba(255,102,0,0.7) 0%, transparent 100%);
  border-radius: 50%;
}

@keyframes fireball-fly {
  from {
    transform: translateX(-120px) translateY(var(--fb-y));
    opacity: 1;
  }
  to {
    transform: translateX(calc(100vw + 140px)) translateY(var(--fb-y));
    opacity: 0.6;
  }
}

@keyframes hadouken-flash {
  0%   { opacity: 0; }
  15%  { opacity: 1; }
  85%  { opacity: 1; }
  100% { opacity: 0; }
}

.hadouken-text {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(4rem, 12vw, 9rem);
  color: var(--accent);
  text-shadow:
    0 0 20px rgba(255, 102, 0, 0.9),
    0 0 40px rgba(255, 51, 153, 0.6),
    0 0 80px rgba(255, 102, 0, 0.4);
  z-index: 9999;
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: 0.05em;
  animation: hadouken-flash 2s ease both;
}

@media (prefers-reduced-motion: reduce) {
  .fireball {
    animation: none !important;
  }
  .hadouken-text {
    animation: none !important;
  }
}

/* --------------------------------------------------------------------------
   Placeholder
   -------------------------------------------------------------------------- */
.placeholder {
  background: var(--bg-card);
  border: 1px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  aspect-ratio: 3/4;
}

.placeholder--landscape {
  aspect-ratio: 16/9;
}

.placeholder--square {
  aspect-ratio: 1;
}

/* --------------------------------------------------------------------------
   Site Footer
   -------------------------------------------------------------------------- */
.site-footer {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

.site-footer__brand {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--accent);
  letter-spacing: 0.02em;
}

.site-footer__text {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.site-footer__text a {
  color: var(--text-muted);
}

.site-footer__text a:hover {
  color: var(--accent);
}

/* --------------------------------------------------------------------------
   Utility
   -------------------------------------------------------------------------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.text-center  { text-align: center; }
.text-accent  { color: var(--accent); }
.text-muted   { color: var(--text-muted); }
.mt-sm        { margin-top: 1rem; }
.mt-md        { margin-top: 2rem; }
.mt-lg        { margin-top: 3rem; }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  #site-nav {
    height: auto;
    min-height: var(--nav-height);
  }

  .nav-inner {
    flex-wrap: wrap;
    padding: 0.75rem 1.25rem;
    height: auto;
    align-items: center;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 0;
    margin-top: 0.5rem;
    padding-bottom: 0.75rem;
    border-top: 1px solid var(--border);
    margin-left: 0;
  }

  .nav-menu--open {
    display: flex;
  }

  .nav-link {
    padding: 0.6rem 0.25rem;
    font-size: 0.7rem;
  }

  .site-section {
    padding: 4rem 0;
  }

  .games-grid,
  .people-grid,
  .resources-grid {
    grid-template-columns: 1fr;
  }

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

  .catalogue-table {
    font-size: 0.8rem;
  }

  .catalogue-table td,
  .catalogue-table th {
    padding: 0.5rem 0.5rem;
  }
}

@media (max-width: 480px) {
  .hero-title  { font-size: clamp(2rem, 14vw, 4rem); }
  .hero-cta    { flex-direction: column; align-items: center; }
  .hero-stats  { gap: 1.5rem; }
}

/* --------------------------------------------------------------------------
   Lite YouTube facade — clickable poster that defers iframe load until play.
   Sits inside .video-embed so it inherits the 16:9 padding wrapper.
   -------------------------------------------------------------------------- */
.lite-youtube {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  overflow: hidden;
}
.lite-youtube__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lite-youtube__play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 68px;
  height: 48px;
  border: none;
  border-radius: 12px;
  background: rgba(20, 20, 20, 0.78);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.18s, transform 0.18s;
  z-index: 2;
}
.lite-youtube__play:hover,
.lite-youtube__play:focus-visible {
  background: var(--accent);
  transform: scale(1.06);
  outline: none;
}
.lite-youtube__play-icon {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 4px;
}
.lite-youtube--activated {
  cursor: default;
  background-image: none !important;
}
.lite-youtube--activated iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* --------------------------------------------------------------------------
   Kanji name on People page — must not wrap one character per line on mobile.
   -------------------------------------------------------------------------- */
.kanji-name {
  font-size: 2.2rem;
  color: var(--text);
  margin-bottom: 0.5rem;
  word-break: keep-all;
  overflow-wrap: normal;
  white-space: nowrap;
  line-height: 1.2;
}

@media (max-width: 600px) {
  .kanji-name {
    font-size: clamp(1.6rem, 8vw, 2.2rem);
  }
}

