/* ── CSS Variables ─────────────────────────── */
:root {
  --bg: #090910;
  --surface: #131326;
  --surface2: #1c1c3a;
  --border: #32325d;
  --border-bright: #FACC15;
  --text: #ffffff;
  --muted: #8282a8;
  --accent: #FACC15;
  --accent2: #FFF;
  --green: #4ade80;
  --shadow: #000000;
}

/* ── Global Reset ──────────────────────────── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  image-rendering: pixelated;
}

html {
  scroll-behavior: smooth;
}

/* ── Body ──────────────────────────────────── */
body {
  font-family: 'Share Tech Mono', monospace;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  font-size: 18px;
  letter-spacing: 0.5px;
  background-image:
    linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.3) 50%),
    radial-gradient(circle at 50% 50%, #0d0d1a 0%, var(--bg) 100%);
  background-size: 100% 6px, auto;
}

/* ── Navigation ───────────────────────────── */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  background: var(--surface);
  border-bottom: 4px solid var(--border);
  box-shadow: 0 6px 0 var(--shadow);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
}

.nav-brand:hover {
  opacity: 0.8;
}

.nav-brand img {
  width: 32px;
  height: 32px;
  border: 2px solid #fff;
  background: #000;
}

.nav-brand span {
  font-family: 'Press Start 2P', monospace;
  font-size: 16px;
  color: var(--accent);
  text-shadow: 2px 2px 0 var(--shadow);
}

.nav-back {
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  padding: 8px 14px;
  border: 2px solid var(--border);
  text-transform: uppercase;
  transition: all 0.1s;
}

.nav-back:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: var(--surface2);
}

/* ── Footer ────────────────────────────────── */
footer {
  text-align: center;
  padding: 48px 24px;
  border-top: 4px solid var(--border);
  font-size: 14px;
  color: var(--muted);
  background: #06060b;
  text-transform: uppercase;
}

footer a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

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

/* ── Cookie Notice ─────────────────────────── */
#cookie-notice[hidden] {
  display: none !important;
}

#cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--surface);
  border-top: 4px solid var(--accent);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 12px var(--shadow);
  font-size: 14px;
  color: var(--muted);
  text-transform: uppercase;
}

#cookie-notice a {
  color: var(--accent);
  font-weight: bold;
  text-decoration: underline;
}

#cookie-notice strong {
  color: #fff;
}

#cookie-notice button {
  font-family: 'Press Start 2P', monospace;
  font-size: 10px;
  padding: 10px 18px;
  border: 3px solid #000;
  background: var(--accent);
  color: #000;
  cursor: pointer;
  text-transform: uppercase;
  box-shadow: 3px 3px 0 var(--shadow);
  transition: all 0.1s;
}

#cookie-notice button:hover {
  background: #ffe066;
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0 var(--shadow);
}
