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

body {
  background: #080808;
  color: #f0f0f0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  overflow-x: hidden;
  cursor: none;
}

a, button, input, textarea, select {
  cursor: none;
}

::selection {
  background: #c1f542;
  color: #080808;
}

/* ─── Scrollbar ─────────────────────────────────────────────────── */
::-webkit-scrollbar       { width: 3px; }
::-webkit-scrollbar-track { background: #080808; }
::-webkit-scrollbar-thumb { background: #c1f542; border-radius: 2px; }

/* ─── Noise texture overlay ─────────────────────────────────────── */
.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ─── Subtle grid background ────────────────────────────────────── */
.grid-bg {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
}

/* ─── Marquee ────────────────────────────────────────────────────── */
@keyframes marquee-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  will-change: transform;
  animation: marquee-left 28s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

/* ─── Utility: hide default cursor on all children ──────────────── */
* {
  cursor: none !important;
}
