/* Novagen Software Fan Site - Design System */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@700&family=Exo+2:wght@400;500;600&display=swap');

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --bg: #06101e;
  --accent: #00e5a0;
  --gold: #c8a200;
  --text: #c8d8e4;
  --text-muted: #7a8ea0;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-hover: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.08);
  --border-accent: rgba(0, 229, 160, 0.3);
  --grid-line: rgba(0, 229, 160, 0.06);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Exo 2', 'Exo 2 Fallback', system-ui, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3 {
  font-family: 'Orbitron', 'Orbitron Fallback', monospace;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}

h1 {
  font-size: clamp(1.8rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
}

h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
}

h4, h5, h6 {
  font-family: 'Exo 2', system-ui, sans-serif;
  font-weight: 600;
  color: var(--text);
}

p {
  margin-bottom: 1rem;
  color: var(--text);
}

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

a:hover {
  color: var(--gold);
}

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

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--accent);
  color: var(--bg);
  padding: 0.5rem 1rem;
  border-radius: 0 0 4px 4px;
  font-family: 'Exo 2', system-ui, sans-serif;
  font-weight: 600;
  z-index: 9999;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

main {
  min-height: 70vh;
  padding: 2rem 0;
}

/* ============================================================
   HEADER & NAV
   ============================================================ */
header {
  background: rgba(6, 16, 30, 0.95);
  border-bottom: 1px solid var(--border-accent);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.site-logo {
  font-family: 'Orbitron', monospace;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent);
  letter-spacing: 0.05em;
  text-decoration: none;
}

.site-logo span {
  color: var(--gold);
}

nav#site-nav {
  display: none;
  flex-direction: column;
  gap: 0;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(6, 16, 30, 0.98);
  border-bottom: 1px solid var(--border-accent);
  padding: 1rem;
}

nav#site-nav.open {
  display: flex;
}

nav#site-nav a {
  font-family: 'Exo 2', system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

nav#site-nav a:last-child {
  border-bottom: none;
}

nav#site-nav a:hover,
nav#site-nav a[aria-current="page"] {
  color: var(--accent);
}

nav#site-nav a[aria-current="page"] {
  font-weight: 600;
}

.nav-toggle {
  background: none;
  border: 1px solid var(--border-accent);
  border-radius: 4px;
  padding: 0.4rem 0.6rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--accent);
  transition: transform 0.2s, opacity 0.2s;
}

@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }

  nav#site-nav {
    display: flex;
    flex-direction: row;
    gap: 0.25rem;
    position: static;
    background: none;
    border: none;
    padding: 0;
  }

  nav#site-nav a {
    padding: 0.4rem 0.6rem;
    border-radius: 4px;
    border-bottom: none;
  }

  nav#site-nav a:hover,
  nav#site-nav a[aria-current="page"] {
    background: rgba(0, 229, 160, 0.08);
  }
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  border-top: 1px solid var(--border);
  padding: 2rem 1.5rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 4rem;
}

footer a {
  color: var(--text-muted);
}

footer a:hover {
  color: var(--accent);
}

/* ============================================================
   PAGE HERO
   ============================================================ */
.page-hero {
  padding: 3rem 1.5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.page-hero-label {
  font-family: 'Exo 2', system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.page-hero h1 {
  margin-bottom: 1rem;
}

.page-hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
}

/* ============================================================
   ARTICLE SECTIONS
   ============================================================ */
.article-section {
  max-width: 800px;
  margin: 0 auto 3rem;
  padding: 0 1.5rem;
}

.article-section h2 {
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-accent);
  color: var(--accent);
}

.article-section h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--gold);
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin: 2rem 0;
}

.stat-item {
  background: var(--surface);
  padding: 1.25rem 1.5rem;
  text-align: center;
}

.stat-value {
  font-family: 'Orbitron', monospace;
  font-size: 2rem;
  color: var(--accent);
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.4rem;
}

@media (min-width: 600px) {
  .stats-bar {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ============================================================
   VIDEO EMBEDS
   ============================================================ */
.video-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 4px;
  overflow: hidden;
  background: #000;
  margin: 1.5rem 0;
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================================
   SCREENSHOT STRIP
   ============================================================ */
.screenshot-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin: 2rem 0;
}

.screenshot-strip img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 2px;
  border: 1px solid var(--border);
}

@media (min-width: 600px) {
  .screenshot-strip {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================================
   DEV QUOTES
   ============================================================ */
.dev-quote {
  border-left: 3px solid var(--accent);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: rgba(0, 229, 160, 0.04);
  border-radius: 0 4px 4px 0;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text);
}

.dev-quote cite {
  display: block;
  margin-top: 0.75rem;
  font-style: normal;
  font-size: 0.85rem;
  color: var(--accent);
  font-family: 'Exo 2', system-ui, sans-serif;
  font-weight: 600;
}

/* ============================================================
   TRIVIA ASIDES
   ============================================================ */
.trivia {
  background: rgba(200, 162, 0, 0.06);
  border: 1px solid rgba(200, 162, 0, 0.25);
  border-radius: 4px;
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
  font-size: 0.95rem;
  color: var(--text);
}

/* ============================================================
   IMAGE SECTION
   ============================================================ */
.section-image {
  margin: 1.5rem 0;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.section-image img {
  width: 100%;
  height: auto;
}

.section-image figcaption {
  padding: 0.5rem 0.75rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  background: var(--surface);
}

/* ============================================================
   PLATFORM BADGES
   ============================================================ */
.platform-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.5rem 0;
}

.platform-badge {
  font-family: 'Exo 2', system-ui, sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
  background: rgba(0, 229, 160, 0.1);
  color: var(--accent);
  border: 1px solid var(--border-accent);
}

.platform-badge.amiga { background: rgba(200, 162, 0, 0.1); color: var(--gold); border-color: rgba(200, 162, 0, 0.3); }
.platform-badge.dos { background: rgba(200, 200, 200, 0.08); color: var(--text-muted); border-color: var(--border); }

/* ============================================================
   FILTER BAR
   ============================================================ */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  padding: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
}

.filter-bar label {
  font-family: 'Exo 2', system-ui, sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  align-self: center;
  margin-right: 0.5rem;
}

.filter-btn {
  font-family: 'Exo 2', system-ui, sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 3px;
  background: none;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover,
.filter-btn[aria-pressed="true"],
.filter-btn.active {
  background: rgba(0, 229, 160, 0.12);
  border-color: var(--border-accent);
  color: var(--accent);
}

/* ============================================================
   GAME CARDS (CATALOGUE - 3D FLIP)
   ============================================================ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}

.game-card {
  perspective: 900px;
  height: 380px;
  cursor: pointer;
}

.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.game-card:hover .card-inner,
.game-card:focus-within .card-inner {
  transform: rotateY(180deg);
}

.card-front,
.card-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.card-front {
  background: var(--surface);
  display: flex;
  flex-direction: column;
}

.card-front-art {
  flex: 1;
  overflow: hidden;
  background: rgba(0, 229, 160, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-front-art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.5rem;
}

.placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-family: 'Exo 2', system-ui, sans-serif;
  font-size: 0.85rem;
  text-align: center;
  padding: 1rem;
  border: 2px dashed var(--border);
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 8px,
    rgba(0, 229, 160, 0.02) 8px,
    rgba(0, 229, 160, 0.02) 16px
  );
}

.placeholder::before {
  content: attr(data-label);
  font-family: 'Orbitron', monospace;
  font-size: 0.75rem;
  color: var(--accent);
  opacity: 0.7;
  text-align: center;
}

.card-front-info {
  padding: 0.75rem 1rem;
  background: rgba(6, 16, 30, 0.8);
}

.card-front-title {
  font-family: 'Orbitron', monospace;
  font-size: 0.85rem;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.card-front-year {
  font-size: 0.8rem;
  color: var(--accent);
}

.card-back {
  transform: rotateY(180deg);
  background: linear-gradient(145deg, rgba(0, 229, 160, 0.06), var(--bg));
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  overflow-y: auto;
}

.card-back h3 {
  font-size: 0.9rem;
  color: var(--accent);
}

.card-back-desc {
  font-size: 0.85rem;
  color: var(--text);
  line-height: 1.5;
  flex: 1;
}

/* ============================================================
   IMAGE GRID (GALLERY)
   ============================================================ */
.image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 600px) {
  .image-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 900px) {
  .image-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--bg);
}

/* ============================================================
   CROSS-LINKS (INDEX PAGE)
   ============================================================ */
.page-links-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin: 2rem 0;
}

@media (min-width: 600px) {
  .page-links-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 900px) {
  .page-links-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.page-link-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  transition: background 0.2s, border-color 0.2s;
  color: var(--text);
}

.page-link-card:hover {
  background: var(--surface-hover);
  border-color: var(--border-accent);
  color: var(--text);
}

.page-link-card-label {
  font-family: 'Orbitron', monospace;
  font-size: 0.75rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.page-link-card-title {
  font-weight: 600;
  font-size: 0.9rem;
}

.page-link-card-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============================================================
   FLAGSHIP PAGE
   ============================================================ */
.flagship-game-section {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
}

.flagship-game-section:first-child {
  border-top: none;
}

.flagship-hero {
  position: relative;
  width: 100%;
  max-height: 420px;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid var(--border-accent);
  margin-bottom: 2rem;
}

.flagship-hero img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.flagship-hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(6, 16, 30, 0.95));
}

.flagship-hero-overlay h2 {
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.flagship-hero-overlay p {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.9rem;
}

.flagship-sub-section {
  margin: 2.5rem 0;
}

.flagship-sub-section h3 {
  font-family: 'Orbitron', monospace;
  font-size: 1rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(200, 162, 0, 0.2);
}

.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin: 1.5rem 0;
}

@media (min-width: 600px) {
  .screenshots-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.screenshots-grid img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 2px;
  border: 1px solid var(--border);
}

/* ============================================================
   REVIEWS PAGE CLASSES
   ============================================================ */
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.review-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.score-badge {
  font-family: 'Orbitron', monospace;
  font-size: 1.5rem;
  color: var(--gold);
  white-space: nowrap;
  line-height: 1;
}

.review-excerpt {
  font-style: italic;
  color: var(--text);
  font-size: 0.95rem;
  flex: 1;
}

.review-source {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.platform-tag {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  background: rgba(0, 229, 160, 0.1);
  border: 1px solid var(--border-accent);
  padding: 0.15rem 0.4rem;
  border-radius: 2px;
}

/* ============================================================
   RESOURCES PAGE CLASSES
   ============================================================ */
.resource-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 600px) {
  .resource-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.resource-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: border-color 0.2s;
}

.resource-item:hover {
  border-color: var(--border-accent);
}

.resource-title {
  font-family: 'Orbitron', monospace;
  font-size: 0.9rem;
  color: var(--accent);
}

.resource-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  flex: 1;
}

.resource-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  display: inline-block;
  margin-top: 0.25rem;
}

/* ============================================================
   MUSIC PAGE CLASSES
   ============================================================ */
.music-section {
  margin: 2rem 0;
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
}

.sid-player-wrap {
  margin: 1.5rem 0;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-accent);
  border-radius: 4px;
  overflow: hidden;
}

.track-list {
  list-style: none;
  margin: 1rem 0;
}

.track-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

.track-item:last-child {
  border-bottom: none;
}

.composer-credit {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* ============================================================
   VIDEOS PAGE CLASSES
   ============================================================ */
.video-category {
  margin: 3rem 0;
}

.video-category-title {
  font-family: 'Orbitron', monospace;
  font-size: 1rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-accent);
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 700px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   INTERVIEWS PAGE CLASSES
   ============================================================ */
.interview-section {
  margin: 3rem 0;
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
}

.interview-meta {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ============================================================
   PLAY PAGE CLASSES
   ============================================================ */
.platform-guide {
  margin: 2rem 0;
}

.emulator-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.5rem;
  margin-bottom: 1.25rem;
}

.emulator-title {
  font-family: 'Orbitron', monospace;
  font-size: 0.95rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.emulator-steps {
  list-style: decimal;
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: var(--text);
}

.legal-note {
  background: rgba(200, 162, 0, 0.06);
  border: 1px solid rgba(200, 162, 0, 0.2);
  border-radius: 4px;
  padding: 1rem 1.25rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 2rem 0;
}

/* ============================================================
   INDEX PAGE - EDITORIAL COVER
   ============================================================ */
.cover-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  padding: 2rem 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(0, 229, 160, 0.08) 0%,
    var(--bg) 50%,
    rgba(200, 162, 0, 0.05) 100%
  );
  border-bottom: 1px solid var(--border-accent);
  overflow: hidden;
}

.cover-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 40px,
      rgba(0, 229, 160, 0.03) 40px,
      rgba(0, 229, 160, 0.03) 41px
    ),
    repeating-linear-gradient(
      0deg,
      transparent 0,
      transparent 40px,
      rgba(0, 229, 160, 0.03) 40px,
      rgba(0, 229, 160, 0.03) 41px
    );
  pointer-events: none;
}

.cover-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.cover-kicker {
  font-family: 'Exo 2', system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.cover-title {
  font-family: 'Orbitron', monospace;
  font-size: clamp(2rem, 7vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 1rem;
  color: var(--text);
}

.cover-title .highlight {
  color: var(--accent);
}

.cover-intro {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.6;
}

/* ============================================================
   PEOPLE PAGE
   ============================================================ */
.person-bio {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.bio-credits {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.75rem;
  margin: 2rem 0;
}

.bio-credit-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.75rem 1rem;
}

.bio-credit-role {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.bio-credit-title {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
}

/* ============================================================
   TARG EASTER EGG MODAL
   ============================================================ */
.targ-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 16, 30, 0.85);
  backdrop-filter: blur(4px);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.targ-dialog {
  background: var(--bg);
  border: 1px solid var(--accent);
  border-radius: 8px;
  padding: 2rem;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 0 40px rgba(0, 229, 160, 0.2);
  position: relative;
}

.targ-dialog::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(0, 229, 160, 0.04), transparent);
  pointer-events: none;
}

.targ-title {
  font-family: 'Orbitron', monospace;
  font-size: 1.1rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.targ-body {
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.targ-dismiss {
  font-family: 'Exo 2', system-ui, sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  border: 1px solid var(--border);
  background: none;
  border-radius: 3px;
  padding: 0.4rem 1rem;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.targ-dismiss:hover {
  border-color: var(--accent);
  color: var(--accent);
}

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

.text-accent { color: var(--accent); }
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }

.section-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.section-header {
  margin-bottom: 2rem;
}

.section-header h2 {
  margin-bottom: 0.5rem;
}

.section-header p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0;
}
