/* Geoff Crammond Fan Site - style.css */
/* Identity: #05080d bg, Audiowide heading, Inter body, #b8ff00 accent, conic-gradient speedometer */

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

/* ============================================================
   CSS Custom Properties
   ============================================================ */
:root {
  --bg:           #05080d;
  --bg-card:      #0a0f19;
  --bg-elevated:  #0f1620;
  --accent:       #b8ff00;
  --accent-dim:   #7aaa00;
  --secondary:    #e0e0e0;
  --text:         #c8d0dc;
  --text-muted:   #5a6478;
  --border:       #1a2233;
  --border-accent:#b8ff0033;
  --heading-font: 'Audiowide', sans-serif;
  --body-font:    'Inter', sans-serif;
  --red:          #ff3c3c;
  --gold:         #ffb700;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--body-font);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

ul, ol { list-style: none; }

/* ============================================================
   Skip Link
   ============================================================ */
.skip-link {
  position: absolute;
  top: -4rem;
  left: 1rem;
  padding: 0.5rem 1rem;
  background: var(--accent);
  color: var(--bg);
  font-weight: 700;
  z-index: 9999;
  border-radius: 0 0 4px 4px;
  font-family: var(--heading-font);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}
.skip-link:focus { top: 0; }

/* ============================================================
   Header & Navigation
   ============================================================ */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 8, 13, 0.95);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.site-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 3.5rem;
}

.site-logo {
  font-family: var(--heading-font);
  font-size: 0.9rem;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}
.site-logo:hover { text-decoration: none; opacity: 0.85; }

#site-nav { flex: 1; }

.nav-links {
  display: flex;
  gap: 0.1rem;
  flex-wrap: wrap;
}

.nav-links a {
  font-family: var(--heading-font);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.35rem 0.55rem;
  border-radius: 3px;
  transition: color 0.15s, background 0.15s;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--accent);
  background: rgba(184, 255, 0, 0.08);
  text-decoration: none;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.4rem 0.6rem;
  cursor: pointer;
  border-radius: 3px;
  font-size: 1.1rem;
  line-height: 1;
  margin-left: auto;
}

/* ============================================================
   Speedometer Divider (Advanced CSS: conic-gradient)
   ============================================================ */
.speedometer-divider {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2.5rem 0;
  gap: 2rem;
}

.speedometer {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: conic-gradient(
    from 135deg,
    transparent 0deg,
    var(--accent) 0deg 180deg,
    var(--accent-dim) 180deg 225deg,
    transparent 225deg 270deg
  );
  position: relative;
  flex-shrink: 0;
}

.speedometer::before {
  content: '';
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: var(--bg);
}

.speedometer::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(
    from 135deg,
    transparent 0deg,
    rgba(184, 255, 0, 0.12) 0deg 270deg,
    transparent 270deg
  );
}

.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-accent), transparent);
  max-width: 300px;
}

/* ============================================================
   Main Container
   ============================================================ */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============================================================
   Hero Section
   ============================================================ */
.hero {
  min-height: 90vh;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 5rem 1.5rem 4rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 120% 80% at 50% 0%, rgba(184, 255, 0, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 50%, rgba(184, 255, 0, 0.025) 0%, transparent 50%),
    linear-gradient(180deg, #05080d 0%, #07101a 100%);
  z-index: 0;
}

/* Subtle grid overlay for technical feel */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(184, 255, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 255, 0, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

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

.hero-eyebrow {
  font-family: var(--heading-font);
  font-size: clamp(0.65rem, 1.2vw, 0.8rem);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
}

.hero h1 {
  font-family: var(--heading-font);
  font-size: clamp(2.4rem, 7vw, 5.5rem);
  line-height: 1.05;
  color: var(--secondary);
  letter-spacing: 0.04em;
  margin-bottom: 0.4rem;
}

.hero-name-accent { color: var(--accent); }

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-muted);
  max-width: 640px;
  margin: 1.2rem auto 2.5rem;
  line-height: 1.6;
}

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

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

.stat-value {
  font-family: var(--heading-font);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

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

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-block;
  font-family: var(--heading-font);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.75rem 1.75rem;
  border-radius: 3px;
  transition: all 0.2s;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg);
  border: 2px solid var(--accent);
}
.btn-primary:hover {
  background: transparent;
  color: var(--accent);
  text-decoration: none;
}

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

/* ============================================================
   Screenshot Strip
   ============================================================ */
.screenshot-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.75rem;
  margin: 3rem 0;
}

.strip-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.strip-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   Sections
   ============================================================ */
section { padding: 4rem 0; }

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

h2 {
  font-family: var(--heading-font);
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  color: var(--secondary);
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}

h2::after {
  content: '';
  display: block;
  width: 2.5rem;
  height: 2px;
  background: var(--accent);
  margin-top: 0.5rem;
}

h3 {
  font-family: var(--heading-font);
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--secondary);
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}

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

/* ============================================================
   Game Cards
   ============================================================ */
.filter-controls {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.filter-btn {
  font-family: var(--heading-font);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.15s;
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(184, 255, 0, 0.07);
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.card-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #0d1420;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--heading-font);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
  border: 1px dashed var(--border);
  border-radius: 2px;
  gap: 0.5rem;
}
.card-placeholder .year-label {
  font-size: 1.8rem;
  color: var(--border);
}

.card-body { padding: 1.1rem; }
.card-title {
  font-family: var(--heading-font);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}
.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.6rem;
  align-items: center;
}
.badge {
  font-family: var(--heading-font);
  font-size: 0.55rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--text-muted);
}
.badge.accent { border-color: var(--accent); color: var(--accent); }
.year {
  font-family: var(--heading-font);
  font-size: 0.65rem;
  color: var(--text-muted);
  margin-left: auto;
}
.card-desc { font-size: 0.85rem; color: var(--text-muted); margin: 0; line-height: 1.5; }

/* ============================================================
   Gallery
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.gallery-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.gallery-item.landscape { aspect-ratio: 4/3; }
.gallery-item.portrait { aspect-ratio: 3/4; grid-row: span 2; }
.gallery-item.square { aspect-ratio: 1; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-caption {
  padding: 0.5rem 0.75rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
}

/* ============================================================
   Trivia Callouts
   ============================================================ */
aside.trivia {
  background: rgba(184, 255, 0, 0.04);
  border-left: 3px solid var(--accent);
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  border-radius: 0 4px 4px 0;
}
aside.trivia p { font-size: 0.9rem; color: var(--text); margin: 0; }
aside.trivia p:first-child { font-style: italic; }

/* ============================================================
   Developer Quotes
   ============================================================ */
blockquote.dev-quote {
  border-left: 3px solid var(--border);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--secondary);
  position: relative;
}
blockquote.dev-quote::before {
  content: '"';
  position: absolute;
  top: -0.3rem;
  left: -0.05rem;
  font-size: 3rem;
  color: var(--accent);
  font-family: Georgia, serif;
  line-height: 1;
}
blockquote.dev-quote cite {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.8rem;
  font-style: normal;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ============================================================
   History Page
   ============================================================ */
.history-section {
  margin-bottom: 3.5rem;
}

.history-section h2 { margin-bottom: 1rem; }

.history-image {
  float: right;
  margin: 0 0 1.5rem 2rem;
  max-width: 340px;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  background: var(--bg-card);
}
.history-image img { width: 100%; }
.history-image figcaption {
  padding: 0.5rem 0.75rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
}

/* ============================================================
   Flagship / Long-form Articles
   ============================================================ */
.flagship-game {
  margin-bottom: 5rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--border);
}
.flagship-game:last-child { border-bottom: none; }

.flagship-hero {
  margin-bottom: 2rem;
}

.flagship-screenshot {
  margin: 2rem 0;
  max-width: 680px;
}
.flagship-screenshot img {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--bg-card);
  padding: 4px;
}
.flagship-screenshot figcaption {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.article-text p { margin-bottom: 1.2rem; }
.article-text h3 {
  margin: 2rem 0 0.75rem;
  font-size: 1.05rem;
}

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

.resource-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.25rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.resource-name {
  font-family: var(--heading-font);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: var(--secondary);
  min-width: 140px;
  flex-shrink: 0;
}

.resource-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}
.resource-desc a { font-size: inherit; }

/* ============================================================
   Videos Page
   ============================================================ */
.video-category { margin-bottom: 3.5rem; }
.video-category h2 { margin-bottom: 1.5rem; }

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.video-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.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%;
  border: 0;
}

.video-info {
  padding: 1rem;
}
.video-title {
  font-family: var(--heading-font);
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  color: var(--secondary);
  margin-bottom: 0.4rem;
}
.video-channel {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.video-desc { font-size: 0.82rem; color: var(--text-muted); margin: 0; }

.inline-video { max-width: 760px; margin: 2rem 0; }
.inline-video .video-embed { border-radius: 4px; overflow: hidden; border: 1px solid var(--border); }

/* ============================================================
   Play & Modern Pages
   ============================================================ */
.play-method {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.method-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.method-badge {
  font-family: var(--heading-font);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
  background: rgba(184, 255, 0, 0.1);
  border: 1px solid var(--accent);
  color: var(--accent);
}
.method-badge.emulation { background: rgba(0, 140, 255, 0.1); border-color: #008cff; color: #008cff; }
.method-badge.legal { background: rgba(0, 200, 100, 0.1); border-color: #00c864; color: #00c864; }

.play-method h2 { margin-bottom: 0; }
.play-method h2::after { display: none; }
.play-method h3 { font-size: 1rem; margin-top: 1.25rem; margin-bottom: 0.5rem; }

.steps-list {
  list-style: none;
  counter-reset: step;
  margin: 1rem 0;
}
.steps-list li {
  counter-increment: step;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: var(--text);
}
.steps-list li::before {
  content: counter(step);
  font-family: var(--heading-font);
  font-size: 0.7rem;
  color: var(--accent);
  background: rgba(184, 255, 0, 0.1);
  border: 1px solid var(--border-accent);
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.project-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.project-card.featured { border-color: var(--accent); }
.project-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.project-title {
  font-family: var(--heading-font);
  font-size: 1rem;
  color: var(--secondary);
  letter-spacing: 0.04em;
}
.status-badge {
  font-family: var(--heading-font);
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.55rem;
  border-radius: 2px;
}
.status-badge.active { background: rgba(0, 200, 100, 0.15); border: 1px solid #00c864; color: #00c864; }
.status-badge.complete { background: rgba(184, 255, 0, 0.15); border: 1px solid var(--accent); color: var(--accent); }
.status-badge.wip { background: rgba(255, 183, 0, 0.15); border: 1px solid var(--gold); color: var(--gold); }
.status-badge.abandoned { background: rgba(100, 100, 100, 0.15); border: 1px solid #666; color: #888; }

.project-meta { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0.75rem; }
.project-desc { font-size: 0.9rem; color: var(--text); margin-bottom: 1rem; }
.project-links { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.project-links a { font-size: 0.8rem; color: var(--accent); }

/* ============================================================
   Interviews
   ============================================================ */
.interview-section { margin-bottom: 3rem; }
.interview-section h2 { margin-bottom: 1.25rem; }
.interview-source {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

/* ============================================================
   Easter Egg Modal
   ============================================================ */
.sentinel-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  animation: fadeIn 0.2s ease;
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.sentinel-modal-overlay.hidden { display: none; }

.sentinel-modal {
  background: var(--bg-elevated);
  border: 1px solid var(--accent);
  border-radius: 6px;
  padding: 2.5rem;
  max-width: 540px;
  width: 100%;
  position: relative;
  box-shadow: 0 0 40px rgba(184, 255, 0, 0.15);
  animation: slideUp 0.25s ease;
}

@keyframes slideUp { from { transform: translateY(16px); opacity: 0; } to { transform: none; opacity: 1; } }

.sentinel-modal h2 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--accent);
}
.sentinel-modal h2::after { display: none; }

.sentinel-modal p {
  font-size: 0.95rem;
  color: var(--text);
  font-style: italic;
  margin-bottom: 1rem;
}
.sentinel-modal cite {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: normal;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: 1px solid var(--border);
  color: var(--text-muted);
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
}
.modal-close:hover { border-color: var(--accent); color: var(--accent); }

/* ============================================================
   Footer
   ============================================================ */
footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 2.5rem 1.5rem;
  margin-top: 4rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-brand {
  font-family: var(--heading-font);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

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

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-links a { font-size: 0.8rem; color: var(--text-muted); }
.footer-links a:hover { color: var(--accent); }

/* ============================================================
   Misc Utilities
   ============================================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--text);
  max-width: 700px;
  margin-bottom: 2.5rem;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 680px) {
  .two-col { grid-template-columns: 1fr; }
  .history-image { float: none; margin: 0 0 1.5rem 0; max-width: 100%; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 768px) {
  .nav-toggle { display: flex; align-items: center; }

  #site-nav {
    display: none;
    position: absolute;
    top: 3.5rem;
    left: 0;
    right: 0;
    background: rgba(5, 8, 13, 0.98);
    border-bottom: 1px solid var(--border);
    padding: 1rem 1.5rem;
    backdrop-filter: blur(8px);
  }
  #site-nav.open { display: block; }

  .nav-links {
    flex-direction: column;
    gap: 0.25rem;
  }
  .nav-links a {
    display: block;
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
  }

  .hero-stats { gap: 1.2rem; }
  .speedometer-divider { gap: 1rem; }
  .speedometer { width: 60px; height: 60px; }
  .two-col { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .game-grid { grid-template-columns: 1fr 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .resources-grid { grid-template-columns: 1fr; }
}
