@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&family=VT323&display=swap');

:root {
  --black:      #080808;
  --near-black: #0f0f0f;
  --dark-gray:  #1a1a1a;
  --mid-gray:   #2d2d2d;
  --light-gray: #666;
  --near-white: #e0e0e0;
  --white:      #f0f0f0;
  --orange:     #cc5500;
  --orange-l:   #e07020;
  --yellow:     #c9a227;
  --yellow-l:   #d4b040;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: auto; }

body {
  background-color: var(--black);
  background-image: url('../assets/cheetah.svg');
  background-size: 600px 600px;
  color: var(--near-white);
  font-family: 'VT323', monospace;
  font-size: 20px;
  overflow-x: hidden;
}

/* Scanline overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.07) 2px,
    rgba(0,0,0,0.07) 4px
  );
  pointer-events: none;
  z-index: 9997;
}

/* ─── ENTER SCREEN ─────────────────────────────────────────────── */

#enter-screen {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  cursor: pointer;
}

#enter-screen.fading {
  animation: es-out 0.3s steps(3) forwards;
}

@keyframes es-out {
  0%   { opacity: 1; }
  66%  { opacity: 0.3; }
  100% { opacity: 0; pointer-events: none; }
}

.es-logo {
  font-family: 'Press Start 2P', monospace;
  font-size: clamp(1.6rem, 6vw, 4rem);
  color: var(--near-white);
  letter-spacing: 0.2em;
  animation: flicker 0.2s steps(1) infinite;
}

.es-prompt {
  font-family: 'Press Start 2P', monospace;
  font-size: clamp(0.4rem, 1.2vw, 0.6rem);
  color: var(--light-gray);
  letter-spacing: 0.5em;
  animation: blink 0.9s steps(1) infinite;
}

.es-line {
  width: min(200px, 60vw);
  height: 2px;
  background: var(--dark-gray);
}

/* ─── LOADING SCREEN ───────────────────────────────────────────── */

#loading-screen {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 9999;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

#loading-screen.active {
  display: flex;
}

.ls-title {
  font-family: 'Press Start 2P', monospace;
  font-size: clamp(1.4rem, 5vw, 3.2rem);
  color: var(--near-white);
  letter-spacing: 0.25em;
  animation: flicker 0.18s steps(1) infinite;
}

.ls-bar-wrap {
  width: min(260px, 70vw);
  height: 18px;
  border: 4px solid var(--near-white);
  padding: 2px;
}

.ls-bar {
  height: 100%;
  width: 0%;
  background: var(--orange);
  transition: width 0s steps(1);
}

.ls-skip {
  position: fixed;
  bottom: 24px;
  right: 28px;
  background: var(--dark-gray);
  border: 2px solid var(--mid-gray);
  color: var(--light-gray);
  font-family: 'Press Start 2P', monospace;
  font-size: 0.36rem;
  padding: 10px 16px;
  cursor: pointer;
  letter-spacing: 0.18em;
  transition: color 0.05s steps(1), border-color 0.05s steps(1);
  z-index: 10000;
}

.ls-skip:hover {
  color: var(--near-white);
  border-color: var(--light-gray);
}

.ls-pct {
  font-family: 'Press Start 2P', monospace;
  font-size: 0.55rem;
  color: var(--orange);
  letter-spacing: 0.3em;
}

@keyframes flicker {
  0%,100% { opacity: 1; }
  50% { opacity: 0.82; }
}

/* ─── NAVIGATION ───────────────────────────────────────────────── */

.nav {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(8,8,8,0.94);
  border-bottom: 3px solid var(--dark-gray);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  backdrop-filter: blur(3px);
}

.nav-logo a {
  font-family: 'Press Start 2P', monospace;
  font-size: 0.85rem;
  color: var(--near-white);
  text-decoration: none;
  letter-spacing: 0.12em;
  transition: color 0.05s steps(1);
}
.nav-logo a:hover { color: var(--orange); }

.nav-links {
  list-style: none;
  display: flex;
  gap: 28px;
}

.nav-links a {
  font-family: 'Press Start 2P', monospace;
  font-size: 0.48rem;
  color: var(--light-gray);
  text-decoration: none;
  letter-spacing: 0.18em;
  transition: color 0.05s steps(1);
  position: relative;
}
.nav-links a:hover,
.nav-links a.active { color: var(--near-white); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -5px; left: 0;
  width: 100%; height: 2px;
  background: var(--orange);
}

main { padding-top: 78px; }

/* ─── HERO ─────────────────────────────────────────────────────── */

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.par-layer {
  position: absolute;
  inset: 0;
  will-change: transform;
}

.par-cheetah {
  background: url('../assets/cheetah.svg') center / 600px 600px repeat;
  opacity: 0.35;
}

.par-vignette {
  background: radial-gradient(ellipse at center, transparent 30%, var(--black) 80%);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 32px;
}

.glitch {
  font-family: 'Press Start 2P', monospace;
  font-size: clamp(2.5rem, 10vw, 7.5rem);
  color: var(--near-white);
  letter-spacing: 0.06em;
  line-height: 1.2;
  position: relative;
  display: inline-block;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}

.glitch::before {
  color: var(--orange);
  animation: g1 5s steps(1) infinite;
  clip-path: polygon(0 25%, 100% 25%, 100% 45%, 0 45%);
}

.glitch::after {
  color: var(--yellow);
  animation: g2 5s steps(1) infinite;
  clip-path: polygon(0 60%, 100% 60%, 100% 78%, 0 78%);
}

@keyframes g1 {
  0%,82%,100% { transform: none; opacity: 0; }
  83% { transform: translateX(-7px); opacity: 1; }
  84% { transform: translateX(5px); opacity: 1; }
  85% { transform: translateX(-3px); opacity: 1; }
  87% { opacity: 0; }
}
@keyframes g2 {
  0%,78%,100% { transform: none; opacity: 0; }
  79% { transform: translateX(7px); opacity: 1; }
  80% { transform: translateX(-5px); opacity: 1; }
  82% { opacity: 0; }
}

.hero-sub {
  font-family: 'Press Start 2P', monospace;
  font-size: clamp(0.35rem, 1.2vw, 0.62rem);
  color: var(--light-gray);
  letter-spacing: 0.45em;
  margin-top: 28px;
}

.scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Press Start 2P', monospace;
  font-size: 0.38rem;
  color: var(--light-gray);
  letter-spacing: 0.35em;
  animation: blink 1s steps(1) infinite;
}

@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }

/* ─── MARQUEE ───────────────────────────────────────────────────── */

.marquee-wrap {
  overflow: hidden;
  border-top: 2px solid var(--dark-gray);
  border-bottom: 2px solid var(--dark-gray);
  padding: 14px 0;
  background: var(--near-black);
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
}

.marquee-track span {
  font-family: 'Press Start 2P', monospace;
  font-size: 0.52rem;
  color: var(--mid-gray);
  letter-spacing: 0.5em;
  padding-right: 4em;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── STATS ─────────────────────────────────────────────────────── */

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 2px solid var(--dark-gray);
}

.stat {
  padding: 60px 40px;
  border-right: 2px solid var(--dark-gray);
  text-align: center;
}
.stat:last-child { border-right: none; }

.stat-num {
  display: block;
  font-family: 'Press Start 2P', monospace;
  font-size: clamp(1.4rem, 4vw, 3.2rem);
  color: var(--near-white);
  margin-bottom: 14px;
}
.stat:nth-child(2) .stat-num { color: var(--orange); }

.stat-lbl {
  display: block;
  font-family: 'Press Start 2P', monospace;
  font-size: 0.42rem;
  color: var(--light-gray);
  letter-spacing: 0.3em;
}

/* ─── HOME SECTION GRID ─────────────────────────────────────────── */

.home-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  background: var(--dark-gray);
}

.home-grid-item {
  position: relative;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--near-black);
  text-decoration: none;
  overflow: hidden;
}

.home-grid-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--orange);
  opacity: 0;
  transition: opacity 0.05s steps(1);
}

.home-grid-item:hover::before { opacity: 0.08; }
.home-grid-item:hover .hgi-title { color: var(--orange); }

.hgi-title {
  font-family: 'Press Start 2P', monospace;
  font-size: clamp(0.7rem, 2vw, 1.1rem);
  color: var(--near-white);
  letter-spacing: 0.2em;
  position: relative;
  z-index: 1;
  transition: color 0.05s steps(1);
}

/* ─── PARALLAX SECTION ──────────────────────────────────────────── */

.par-section {
  position: relative;
  overflow: hidden;
  padding: 110px 48px;
}

.par-section-bg {
  position: absolute;
  top: -25%;
  left: 0;
  width: 100%;
  height: 150%;
  will-change: transform;
}

.quote-block {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.quote-block blockquote {
  font-family: 'Press Start 2P', monospace;
  font-size: clamp(0.6rem, 1.8vw, 1rem);
  color: var(--near-white);
  line-height: 2.2;
  letter-spacing: 0.06em;
}

.quote-block cite {
  font-family: 'Press Start 2P', monospace;
  font-size: 0.4rem;
  color: var(--orange);
  letter-spacing: 0.45em;
  display: block;
  margin-top: 28px;
  font-style: normal;
}

/* ─── PAGE HERO ─────────────────────────────────────────────────── */

.page-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 0 48px 52px;
}

.page-hero-bg {
  position: absolute;
  top: -25%; left: 0;
  width: 100%; height: 150%;
  background: url('../assets/cheetah.svg') center / 600px 600px repeat;
  opacity: 0.1;
  will-change: transform;
}

.page-title {
  font-family: 'Press Start 2P', monospace;
  font-size: clamp(1.5rem, 6vw, 5rem);
  color: var(--near-white);
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

.page-title span {
  display: block;
  font-size: 0.38em;
  color: var(--orange);
  letter-spacing: 0.5em;
  margin-bottom: 14px;
}

/* ─── ABOUT ─────────────────────────────────────────────────────── */

.about-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text h2 {
  font-family: 'Press Start 2P', monospace;
  font-size: clamp(0.6rem, 1.6vw, 0.9rem);
  color: var(--orange);
  letter-spacing: 0.3em;
  margin-bottom: 28px;
}

.about-text p {
  font-family: 'VT323', monospace;
  font-size: 1.45rem;
  color: var(--near-white);
  line-height: 1.9;
  margin-bottom: 18px;
  opacity: 0.88;
}

.about-img-frame {
  position: relative;
  aspect-ratio: 1;
  border: 4px solid var(--dark-gray);
  overflow: hidden;
  background: var(--dark-gray);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-img-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  image-rendering: pixelated;
  filter: grayscale(100%) contrast(1.1);
  transition: filter 0.08s steps(1);
  display: block;
}
.about-img-frame:hover img { filter: grayscale(70%) contrast(1.1) sepia(25%); }

.about-img-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0,0,0,0.18) 3px,
    rgba(0,0,0,0.18) 4px
  );
  pointer-events: none;
}

.about-img-placeholder {
  font-family: 'Press Start 2P', monospace;
  font-size: 0.42rem;
  color: var(--mid-gray);
  letter-spacing: 0.2em;
  text-align: center;
  padding: 20px;
  line-height: 2.2;
}

/* Pixel corner accent */
.px-corners { position: relative; }
.px-corners::before {
  content: '';
  position: absolute;
  top: -6px; left: -6px;
  width: 20px; height: 20px;
  border-top: 4px solid var(--orange);
  border-left: 4px solid var(--orange);
}
.px-corners::after {
  content: '';
  position: absolute;
  bottom: -6px; right: -6px;
  width: 20px; height: 20px;
  border-bottom: 4px solid var(--orange);
  border-right: 4px solid var(--orange);
}

/* ─── MUSIC ─────────────────────────────────────────────────────── */

.music-header {
  padding: 32px 48px 48px;
  border-bottom: 2px solid var(--dark-gray);
}

.music-header h1 {
  font-family: 'Press Start 2P', monospace;
  font-size: clamp(1.2rem, 4vw, 3.5rem);
  color: var(--near-white);
  margin-bottom: 14px;
}

.music-header p {
  font-family: 'VT323', monospace;
  font-size: 1.45rem;
  color: var(--light-gray);
  letter-spacing: 0.2em;
}

.music-players {
  max-width: 900px;
  margin: 0 auto;
  padding: 72px 48px;
  display: flex;
  flex-direction: column;
  gap: 52px;
}

.player-block {
  position: relative;
  border: 4px solid var(--dark-gray);
  padding: 4px;
}

.player-label {
  font-family: 'Press Start 2P', monospace;
  font-size: 0.42rem;
  color: var(--orange);
  letter-spacing: 0.3em;
  margin-bottom: 10px;
}

.player-block iframe {
  width: 100%;
  border: none;
  display: block;
  border-radius: 0 !important;
}

.sc-link {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 20px;
  background: var(--near-black);
  text-decoration: none;
  transition: background 0.05s steps(1);
}

.sc-link:hover { background: var(--dark-gray); }

.sc-icon {
  font-size: 2rem;
  color: var(--orange);
  line-height: 1;
}

.sc-text {
  font-family: 'Press Start 2P', monospace;
  font-size: 0.6rem;
  color: var(--near-white);
  letter-spacing: 0.15em;
  flex: 1;
}

.sc-sub {
  font-family: 'Press Start 2P', monospace;
  font-size: 0.38rem;
  color: var(--light-gray);
  letter-spacing: 0.2em;
}

.sc-link:hover .sc-text { color: var(--orange); }

.player-placeholder {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--near-black);
  color: var(--mid-gray);
  font-family: 'Press Start 2P', monospace;
  font-size: 0.4rem;
  letter-spacing: 0.2em;
  text-align: center;
  padding: 20px;
  line-height: 2.4;
}

.tracklist {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 48px 80px;
}

.tracklist h2 {
  font-family: 'Press Start 2P', monospace;
  font-size: 0.58rem;
  color: var(--light-gray);
  letter-spacing: 0.4em;
  margin-bottom: 28px;
  border-bottom: 2px solid var(--dark-gray);
  padding-bottom: 16px;
}

.track {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--dark-gray);
  cursor: pointer;
  transition: padding-left 0.08s steps(1), background 0.08s steps(1);
}

.track:hover { background: var(--near-black); padding-left: 14px; }
.track:hover .t-num { color: var(--orange); }

.t-num {
  font-family: 'Press Start 2P', monospace;
  font-size: 0.42rem;
  color: var(--light-gray);
  width: 22px;
  transition: color 0.08s steps(1);
}

.t-name {
  font-family: 'Press Start 2P', monospace;
  font-size: 0.52rem;
  color: var(--near-white);
  flex: 1;
  letter-spacing: 0.1em;
}

.t-dur {
  font-family: 'VT323', monospace;
  font-size: 1.3rem;
  color: var(--light-gray);
}

.t-streams {
  font-family: 'VT323', monospace;
  font-size: 1.3rem;
  color: var(--orange);
  white-space: nowrap;
}

.t-feat {
  font-size: 0.38rem;
  color: var(--light-gray);
  letter-spacing: 0.15em;
  margin-left: 8px;
  font-family: 'Press Start 2P', monospace;
}

/* ─── GALLERY ───────────────────────────────────────────────────── */

.gallery-header {
  padding: 32px 48px 48px;
}

.gallery-header h1 {
  font-family: 'Press Start 2P', monospace;
  font-size: clamp(1.2rem, 4vw, 3.5rem);
  color: var(--near-white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 4px;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--dark-gray);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: pixelated;
  filter: grayscale(100%);
  transition: filter 0.08s steps(1), transform 0.2s steps(3);
  display: block;
}
.gallery-item:hover img {
  filter: grayscale(55%) sepia(35%);
  transform: scale(1.06);
}

.gi-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gi-label {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  padding: 8px 12px;
  background: rgba(8,8,8,0.88);
  font-family: 'Press Start 2P', monospace;
  font-size: 0.38rem;
  color: var(--near-white);
  letter-spacing: 0.12em;
  transform: translateY(100%);
  transition: transform 0.08s steps(1);
}
.gallery-item:hover .gi-label { transform: translateY(0); }

.gi-placeholder {
  font-family: 'Press Start 2P', monospace;
  font-size: 0.38rem;
  color: var(--mid-gray);
  letter-spacing: 0.15em;
  text-align: center;
  padding: 16px;
  line-height: 2.2;
}

/* ─── MERCH ─────────────────────────────────────────────────────── */

.merch-header {
  padding: 32px 48px 48px;
}
.merch-header h1 {
  font-family: 'Press Start 2P', monospace;
  font-size: clamp(1.2rem, 4vw, 3.5rem);
  color: var(--near-white);
  margin-bottom: 12px;
}
.merch-header p {
  font-family: 'VT323', monospace;
  font-size: 1.45rem;
  color: var(--light-gray);
  letter-spacing: 0.2em;
}

.merch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 3px;
  background: var(--mid-gray);
  max-width: 1400px;
  margin: 0 auto;
}

.merch-item {
  background: var(--near-black);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.merch-img {
  width: 100%;
  aspect-ratio: 1;
  background: var(--dark-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.merch-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: pixelated;
  filter: grayscale(100%);
  transition: filter 0.08s steps(1);
}
.merch-item:hover .merch-img img { filter: grayscale(65%) sepia(25%); }

.merch-ph {
  font-family: 'Press Start 2P', monospace;
  font-size: 0.4rem;
  color: var(--mid-gray);
  letter-spacing: 0.15em;
  text-align: center;
  padding: 20px;
  line-height: 2.4;
}

.merch-info {
  padding: 18px 20px;
  border-top: 2px solid var(--dark-gray);
}

.merch-name {
  font-family: 'Press Start 2P', monospace;
  font-size: 0.48rem;
  color: var(--near-white);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.merch-price {
  font-family: 'VT323', monospace;
  font-size: 1.5rem;
  color: var(--orange);
}

.merch-tag {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--orange);
  color: var(--black);
  font-family: 'Press Start 2P', monospace;
  font-size: 0.32rem;
  padding: 4px 8px;
  letter-spacing: 0.1em;
}

/* ─── CONTACT ───────────────────────────────────────────────────── */

.contact-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 32px 48px 80px;
}

.contact-wrap h1 {
  font-family: 'Press Start 2P', monospace;
  font-size: clamp(1rem, 3.5vw, 2.8rem);
  color: var(--near-white);
  margin-bottom: 14px;
}

.contact-wrap > p {
  font-family: 'VT323', monospace;
  font-size: 1.45rem;
  color: var(--light-gray);
  letter-spacing: 0.2em;
  margin-bottom: 56px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: 'Press Start 2P', monospace;
  font-size: 0.42rem;
  color: var(--light-gray);
  letter-spacing: 0.3em;
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--near-black);
  border: 4px solid var(--dark-gray);
  color: var(--near-white);
  font-family: 'VT323', monospace;
  font-size: 1.4rem;
  padding: 12px 16px;
  outline: none;
  width: 100%;
  transition: border-color 0.08s steps(1);
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--orange); }

.form-group textarea { resize: none; height: 155px; }

.form-group select option { background: var(--near-black); }

.submit-btn {
  align-self: flex-start;
  background: transparent;
  border: 4px solid var(--near-white);
  color: var(--near-white);
  font-family: 'Press Start 2P', monospace;
  font-size: 0.52rem;
  padding: 16px 30px;
  cursor: pointer;
  letter-spacing: 0.3em;
  transition: background 0.05s steps(1), color 0.05s steps(1), border-color 0.05s steps(1);
}

.submit-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--black);
}

.socials-section {
  margin-top: 72px;
  padding-top: 44px;
  border-top: 2px solid var(--dark-gray);
}

.socials-section h2 {
  font-family: 'Press Start 2P', monospace;
  font-size: 0.55rem;
  color: var(--light-gray);
  letter-spacing: 0.4em;
  margin-bottom: 28px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.social-link {
  font-family: 'Press Start 2P', monospace;
  font-size: 0.45rem;
  color: var(--near-white);
  text-decoration: none;
  border: 2px solid var(--dark-gray);
  padding: 12px 18px;
  letter-spacing: 0.18em;
  transition: border-color 0.05s steps(1), color 0.05s steps(1);
}
.social-link:hover { border-color: var(--orange); color: var(--orange); }

/* ─── FOOTER ─────────────────────────────────────────────────────── */

footer {
  padding: 38px 48px;
  border-top: 4px solid var(--dark-gray);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--near-black);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-logo {
  font-family: 'Press Start 2P', monospace;
  font-size: 0.6rem;
  color: var(--near-white);
  letter-spacing: 0.18em;
}

footer p {
  font-family: 'Press Start 2P', monospace;
  font-size: 0.35rem;
  color: var(--light-gray);
  letter-spacing: 0.18em;
}

/* ─── LIGHTBOX ──────────────────────────────────────────────────── */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8,8,8,0.96);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  animation: lb-in 0.12s steps(2) forwards;
}

@keyframes lb-in { from { opacity: 0; } to { opacity: 1; } }

.lb-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  max-width: 85vw;
  max-height: 85vh;
}

.lb-inner img {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  image-rendering: pixelated;
  filter: grayscale(100%);
  border: 4px solid var(--dark-gray);
}

.lb-label {
  font-family: 'Press Start 2P', monospace;
  font-size: 0.4rem;
  color: var(--light-gray);
  letter-spacing: 0.28em;
}

.lb-close {
  background: transparent;
  border: 2px solid var(--near-white);
  color: var(--near-white);
  font-family: 'Press Start 2P', monospace;
  font-size: 0.42rem;
  padding: 10px 20px;
  cursor: pointer;
  letter-spacing: 0.2em;
  transition: all 0.05s steps(1);
}
.lb-close:hover { background: var(--orange); border-color: var(--orange); color: var(--black); }

/* ─── FADE IN ────────────────────────────────────────────────────── */

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.35s steps(4), transform 0.35s steps(4);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
