/* ============================================================
   Pixel & Pista — Stylesheet · Catálogo categorizado
   Atmospheric mystery aesthetic + cleaner structure
   ============================================================ */

:root {
  --bg-1: #0a0815;
  --bg-2: #160c24;
  --bg-3: #1f1230;
  --bg-soft: rgba(30, 18, 48, 0.5);
  --ink: #ede4d3;
  --ink-soft: #b8a98e;
  --ink-mute: #6e6478;
  --gold: #ffd27a;
  --gold-bright: #ffe8a8;
  --gold-deep: #c8964a;
  --amber: #ffb347;
  --accent: #b06ad8;
  --line: rgba(255, 210, 122, 0.18);
  --line-strong: rgba(255, 210, 122, 0.4);
  --card-bg: rgba(30, 18, 48, 0.6);
  --card-bg-hover: rgba(50, 30, 78, 0.8);
  --shadow-deep: 0 18px 40px rgba(0, 0, 0, 0.55);
  --shadow-card: 0 8px 24px rgba(0, 0, 0, 0.4);

  /* Category accent colors */
  --cat-adv: #ffd27a;     /* gold (adventures) */
  --cat-arc: #ff8a4a;     /* orange (arcade) */
  --cat-rac: #5ae8c4;     /* cyan (racing) */
  --cat-fly: #e84a4a;     /* red (flight/rescue) */
  --cat-zen: #ecd4a8;     /* paper (sumi-e contemplative) */
  --cat-d3:  #5aef7a;     /* lime (3D low-poly) */
  --cat-up:  #6e6478;     /* mute (upcoming) */

  --font-display: "Cinzel", "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --font-typewriter: "Special Elite", "Courier New", monospace;

  --max-width: 1320px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0; padding: 0;
  background: var(--bg-1);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  background:
    radial-gradient(ellipse 1200px 600px at 80% -10%, rgba(176, 106, 216, 0.16), transparent 60%),
    radial-gradient(ellipse 1000px 500px at 10% 20%, rgba(255, 179, 71, 0.06), transparent 60%),
    linear-gradient(180deg, var(--bg-1) 0%, var(--bg-2) 50%, var(--bg-1) 100%);
}

/* Film grain */
.bg-noise {
  position: fixed; inset: 0;
  pointer-events: none;
  opacity: 0.045;
  z-index: 1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.6'/></svg>");
  mix-blend-mode: overlay;
}
.bg-glow {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(ellipse 600px 300px at 50% 100%, rgba(255, 210, 122, 0.06), transparent 70%);
}

main, header, footer { position: relative; z-index: 2; }

/* ============================================================
   HEADER (sticky)
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 36px;
  background: rgba(10, 8, 21, 0.7);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(10px);
  transition: background 0.3s, border-color 0.3s, padding 0.3s;
}
.site-header.scrolled {
  background: rgba(10, 8, 21, 0.95);
  border-bottom-color: var(--line);
  padding: 12px 36px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}
.logo svg {
  flex: 0 0 auto;
  filter: drop-shadow(0 0 8px rgba(255, 210, 122, 0.3));
  transition: transform 0.3s;
}
.logo:hover svg { transform: rotate(-12deg) scale(1.06); }

.logo-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--ink);
}
.logo-tag {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.site-nav {
  display: flex;
  gap: 28px;
}
.site-nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
  padding: 4px 0;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -4px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.site-nav a:hover { color: var(--gold); }
.site-nav a:hover::after { transform: scaleX(1); }

/* ============================================================
   HERO
   ============================================================ */

.hero {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 36px 40px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 700;
  display: inline-block;
  padding: 4px 14px;
  border: 1px solid var(--gold-deep);
  border-radius: 1px;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  line-height: 1.05;
  margin: 22px 0 22px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
  font-family: var(--font-typewriter);
  font-size: 0.85em;
  font-weight: 500;
}

.hero-lede {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 480px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 480px;
}
.hero-stat {
  text-align: center;
  padding: 12px 8px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 1px;
  transition: border-color 0.2s, transform 0.2s;
}
.hero-stat:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
}
.hero-stat .stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold);
  line-height: 1;
}
.hero-stat .stat-lbl {
  display: block;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-mute);
  margin-top: 4px;
}

.hero-art {
  position: relative;
}
.hero-svg {
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: var(--shadow-deep), 0 0 60px rgba(255, 210, 122, 0.18);
  border: 1px solid var(--line);
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.25s;
  cursor: pointer;
  border: 1px solid transparent;
  font-family: var(--font-body);
}
.btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: #1a0f0a;
  box-shadow: 0 8px 24px rgba(255, 210, 122, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 210, 122, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.btn-primary span:first-child {
  font-size: 0.7em;
  color: #1a0f0a;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
}
.btn-ghost:hover {
  background: rgba(255, 210, 122, 0.08);
  border-color: var(--gold);
  color: var(--gold);
}

/* ============================================================
   SPOTLIGHT (featured big card)
   ============================================================ */

.spotlight {
  position: relative;
  margin: 50px auto 60px;
  max-width: var(--max-width);
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  min-height: 420px;
  background: var(--bg-2);
  box-shadow: var(--shadow-deep), 0 0 60px rgba(255, 210, 122, 0.15);
}
.spotlight-art {
  position: relative;
  overflow: hidden;
}
.spotlight-art svg {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 1.2s ease;
}
.spotlight:hover .spotlight-art svg { transform: scale(1.04); }
.spotlight-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 50%, rgba(22, 12, 36, 0.95) 100%);
  pointer-events: none;
}
.spotlight-content {
  padding: 50px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.spot-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 14px;
  display: block;
}
.spot-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  margin: 0 0 16px;
  color: var(--ink);
  letter-spacing: 0.02em;
  line-height: 1.05;
}
.spot-flavor {
  color: var(--ink-soft);
  font-size: 1.02rem;
  margin: 0 0 22px;
  line-height: 1.6;
}
.spot-flavor strong { color: var(--gold-bright); font-weight: 700; }

.spot-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
.spot-tags span {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  padding: 4px 10px;
  border-radius: 2px;
  background: rgba(0, 0, 0, 0.2);
}

.spot-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.spot-meta {
  font-family: var(--font-typewriter);
  font-size: 0.82rem;
  color: var(--ink-mute);
  letter-spacing: 0.05em;
}

/* ============================================================
   CATEGORY SECTIONS
   ============================================================ */

.cat-section {
  max-width: var(--max-width);
  margin: 70px auto 0;
  padding: 0 36px;
  scroll-margin-top: 100px;
}

.cat-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.cat-head::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 80px;
  height: 2px;
  background: var(--gold);
}
#aventuras .cat-head::after { background: var(--cat-adv); }
#arcade .cat-head::after    { background: var(--cat-arc); }
#carreras .cat-head::after  { background: var(--cat-rac); }
#vuelo .cat-head::after     { background: var(--cat-fly); }
#contemplativos .cat-head::after { background: var(--cat-zen); }
#tres-d .cat-head::after { background: var(--cat-d3); }
#proximamente .cat-head::after { background: var(--cat-up); }

.cat-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 1px;
  flex-shrink: 0;
}
.cat-icon[data-cat="adv"] { box-shadow: inset 0 0 0 2px rgba(255, 210, 122, 0.25); }
.cat-icon[data-cat="arc"] { box-shadow: inset 0 0 0 2px rgba(255, 138, 74, 0.25); }
.cat-icon[data-cat="rac"] { box-shadow: inset 0 0 0 2px rgba(90, 232, 196, 0.25); }
.cat-icon[data-cat="fly"] { box-shadow: inset 0 0 0 2px rgba(232, 74, 74, 0.25); }
.cat-icon[data-cat="zen"] {
  box-shadow: inset 0 0 0 2px rgba(236, 212, 168, 0.32);
  background: linear-gradient(180deg, #f8ead1 0%, #ecd4a8 100%);
  color: #14100c;
  font-family: "Noto Serif JP", "Cinzel", serif;
  font-weight: 900;
  font-size: 1.7rem;
}
.cat-icon[data-cat="d3"] { box-shadow: inset 0 0 0 2px rgba(90, 239, 122, 0.30); }
.cat-icon[data-cat="up"]  { opacity: 0.6; }

.cat-titles {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.cat-eyebrow {
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-family: var(--font-typewriter);
}
.cat-titles h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin: 2px 0 4px;
  color: var(--ink);
  letter-spacing: 0.03em;
  font-weight: 700;
}
.cat-titles p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.cat-count {
  font-family: var(--font-typewriter);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
  border: 1px dashed var(--line-strong);
  padding: 6px 14px;
  white-space: nowrap;
  align-self: center;
  border-radius: 2px;
}

/* ============================================================
   GAME GRID + CARDS
   ============================================================ */

.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 22px;
}
.grid-small {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
}

.game-card {
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: 3px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  outline: none;
}
.game-card:hover,
.game-card:focus-visible {
  background: var(--card-bg-hover);
  border-color: var(--line-strong);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

/* Category accent border on hover */
.game-card.adv:hover { border-color: var(--cat-adv); box-shadow: var(--shadow-card), 0 0 24px rgba(255, 210, 122, 0.15); }
.game-card.arc:hover { border-color: var(--cat-arc); box-shadow: var(--shadow-card), 0 0 24px rgba(255, 138, 74, 0.15); }
.game-card.rac:hover { border-color: var(--cat-rac); box-shadow: var(--shadow-card), 0 0 24px rgba(90, 232, 196, 0.15); }
.game-card.fly:hover { border-color: var(--cat-fly); box-shadow: var(--shadow-card), 0 0 24px rgba(232, 74, 74, 0.15); }
.game-card.zen:hover { border-color: var(--cat-zen); box-shadow: var(--shadow-card), 0 0 28px rgba(236, 212, 168, 0.18); }
.game-card.d3:hover  { border-color: var(--cat-d3);  box-shadow: var(--shadow-card), 0 0 28px rgba(90, 239, 122, 0.20); }

.game-card.featured-card {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  border-color: var(--gold-deep);
  background: linear-gradient(135deg, rgba(50, 30, 78, 0.7), rgba(30, 18, 48, 0.7));
}
.game-card.featured-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-card), 0 0 30px rgba(255, 210, 122, 0.22);
}

.card-art {
  position: relative;
  overflow: hidden;
  aspect-ratio: 5 / 3;
}
.game-card.featured-card .card-art {
  aspect-ratio: auto;
  height: 100%;
  min-height: 240px;
}
.card-art svg {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 0.5s ease;
}
.game-card:hover .card-art svg { transform: scale(1.06); }

.card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: #1a0f0a;
  padding: 4px 10px;
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  font-weight: 700;
  border-radius: 1px;
  text-transform: uppercase;
  font-family: var(--font-body);
}
.card-badge.cyan {
  background: var(--cat-rac);
  color: #0a1822;
}
.card-badge.magenta {
  background: #d54a8a;
  color: #fff;
}
.card-badge.red {
  background: var(--cat-fly);
  color: #fff;
}
.card-badge.gold { background: var(--gold); }
.upcoming-badge {
  background: rgba(20, 12, 30, 0.85);
  color: var(--ink-soft);
  border: 1px solid var(--line);
  backdrop-filter: blur(4px);
}

.card-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.card-tags span {
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  border: 1px solid var(--ink-mute);
  padding: 2px 8px;
  border-radius: 1px;
}

.card-body h3 {
  font-family: var(--font-display);
  margin: 0 0 10px;
  font-size: 1.32rem;
  color: var(--ink);
  letter-spacing: 0.02em;
  font-weight: 700;
}
.game-card.featured-card .card-body h3 { font-size: 1.7rem; }

.card-body p {
  color: var(--ink-soft);
  margin: 0 0 18px;
  font-size: 0.93rem;
  flex: 1;
  line-height: 1.55;
}

.card-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 12px;
  font-size: 0.84rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.card-cta > span:first-child {
  color: var(--gold);
  font-weight: 700;
}
.game-card.adv .card-cta > span:first-child { color: var(--cat-adv); }
.game-card.arc .card-cta > span:first-child { color: var(--cat-arc); }
.game-card.rac .card-cta > span:first-child { color: var(--cat-rac); }
.game-card.fly .card-cta > span:first-child { color: var(--cat-fly); }
.game-card.zen .card-cta > span:first-child { color: var(--cat-zen); }
.game-card.d3 .card-cta > span:first-child  { color: var(--cat-d3); }
.card-badge.zen-badge {
  background: linear-gradient(180deg, #f8ead1 0%, #ecd4a8 100%);
  color: #14100c;
  border-color: rgba(20,16,12,0.18);
  font-family: "Cinzel", serif;
}
.card-badge.new-badge {
  background: linear-gradient(180deg, #5aef7a 0%, #2a8a3a 100%);
  color: #04140a;
  border-color: rgba(4, 20, 10, 0.4);
  font-family: "Special Elite", monospace;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.card-cta .muted { color: var(--ink-mute); font-style: italic; text-transform: none; letter-spacing: 0; }

.card-meta {
  font-family: var(--font-typewriter);
  color: var(--ink-mute);
  font-size: 0.78rem;
}

/* Upcoming cards smaller styling */
.game-card.upcoming {
  opacity: 0.85;
}
.game-card.upcoming .card-body h3 {
  font-size: 1.15rem;
}
.game-card.upcoming .card-body p {
  font-size: 0.86rem;
}
.upcoming-section { opacity: 0.95; }

/* ============================================================
   NEWS STRIP
   ============================================================ */

.news-strip {
  padding: 0 36px;
  max-width: var(--max-width);
  margin: 100px auto 0;
}
.news-strip .section-head {
  margin-bottom: 24px;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin: 0;
  color: var(--ink);
  letter-spacing: 0.02em;
  font-weight: 700;
}
.section-head h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 12px 0 0;
}
.section-head p {
  color: var(--ink-soft);
  margin: 12px 0 0;
}

.news-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: news;
}
.news-list li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px dashed var(--line);
}
.news-list li:hover { background: rgba(255, 210, 122, 0.03); }

.news-date {
  font-family: var(--font-typewriter);
  font-size: 0.84rem;
  color: var(--gold-deep);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.news-title {
  color: var(--ink-soft);
  line-height: 1.5;
}
.news-title em {
  color: var(--ink);
  font-style: italic;
  font-family: var(--font-display);
}

/* ============================================================
   ABOUT
   ============================================================ */

.about {
  padding: 0 36px;
  max-width: var(--max-width);
  margin: 90px auto 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 700;
  display: block;
  margin-bottom: 12px;
}

.about h2 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  margin: 0 0 18px;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.15;
}

.about p {
  color: var(--ink-soft);
  font-size: 1rem;
  margin: 0 0 14px;
  line-height: 1.65;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.stat {
  text-align: center;
  padding: 22px 10px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--bg-soft);
  transition: border-color 0.2s, transform 0.2s;
}
.stat:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: var(--gold);
  line-height: 1;
  font-weight: 700;
}
.stat-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-mute);
  margin-top: 6px;
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  margin-top: 100px;
  padding: 60px 36px 30px;
  background: rgba(10, 8, 21, 0.75);
  border-top: 1px solid var(--line);
}

.foot-cols {
  max-width: var(--max-width);
  margin: 0 auto 30px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
}

.foot-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.foot-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--ink);
  font-weight: 700;
}
.foot-tag {
  font-family: var(--font-typewriter);
  color: var(--ink-mute);
  font-size: 0.88rem;
}
.foot-head {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 700;
  margin-bottom: 6px;
}
.foot-col a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.foot-col a:hover { color: var(--gold); }

.foot-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--ink-mute);
  font-family: var(--font-typewriter);
  letter-spacing: 0.04em;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 50px 24px 30px;
    gap: 40px;
  }
  .site-header { padding: 12px 18px; }
  .site-nav { gap: 14px; }
  .site-nav a { font-size: 0.74rem; }
  .spotlight {
    grid-template-columns: 1fr;
    margin: 30px 18px 40px;
  }
  .spotlight-art { aspect-ratio: 16 / 9; }
  .spotlight-art::after {
    background: linear-gradient(180deg, transparent 50%, rgba(22, 12, 36, 0.95) 100%);
  }
  .spotlight-content { padding: 30px 28px; }
  .cat-section { padding: 0 18px; margin-top: 50px; }
  .cat-head { grid-template-columns: auto 1fr; }
  .cat-count { grid-column: 1 / -1; justify-self: start; }
  .news-strip, .about { padding: 0 18px; }
  .about-grid { grid-template-columns: 1fr; gap: 30px; }
  .game-card.featured-card {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }
  .game-card.featured-card .card-art { aspect-ratio: 5 / 3; min-height: auto; }
  .foot-cols { grid-template-columns: 1fr; gap: 30px; padding: 0 18px; }
  .foot-bottom { flex-direction: column; gap: 8px; padding: 20px 18px 0; text-align: center; }
}

@media (max-width: 560px) {
  .hero h1 { font-size: 1.9rem; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .game-grid { grid-template-columns: 1fr; }
  .grid-small { grid-template-columns: 1fr; }
  .cat-titles h2 { font-size: 1.3rem; }
  .cat-icon { width: 40px; height: 40px; font-size: 1.3rem; }
  .spot-title { font-size: 1.5rem; }
  .news-list li { grid-template-columns: 1fr; gap: 4px; }
  .news-date { font-size: 0.78rem; }
  .about-stats { grid-template-columns: 1fr 1fr; }
}
