@import url('https://fonts.googleapis.com/css2?family=Martian+Mono:wght@300;400;500;600;700&family=Lora:ital,wght@0,400;0,600;1,400;1,600&display=swap');

:root {
  --bg: #080b0f;
  --surface: #0e1318;
  --surface2: #141a22;
  --border: #1e2a36;
  --accent: #00ff9d;
  --accent2: #ff4d6d;
  --accent3: #ffd60a;
  --text: #d4e0ec;
  --muted: #5a7a94;
  --dim: #2a3f52;
  --font-mono: 'Martian Mono', monospace;
  --font-body: 'Lora', Georgia, serif;
  --scanline-alpha: 0.05;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  cursor: none;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 3px,
    rgba(0,0,0,var(--scanline-alpha)) 3px,
    rgba(0,0,0,var(--scanline-alpha)) 4px
  );
  pointer-events: none;
  z-index: 997;
}

.cursor {
  position: fixed;
  width: 12px;
  height: 20px;
  background: var(--accent);
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-2px, 0);
  animation: swfCursorBlink 1.1s step-end infinite;
  mix-blend-mode: screen;
}

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