
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;700;900&family=Space+Grotesk:wght@300;700&family=Playfair+Display:ital@0;1&display=swap');

:root {
  --lime-accent: #a3e635;
  --bg-dark: #09090b;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-dark);
  color: #e4e4e7;
  overflow-x: hidden;
}

.font-mono { font-family: 'Space Grotesk', monospace; }
.font-serif { font-family: 'Playfair Display', serif; }

/* Custom Utilities */
.stroke-text-lime {
  -webkit-text-stroke: 1px var(--lime-accent);
  color: transparent;
}

.stroke-text-white {
  -webkit-text-stroke: 1px rgba(255,255,255,0.3);
  color: transparent;
}

/* Noise Overlay */
.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 50;
  opacity: 0.03;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='1'/%3E%3C/svg%3E");
}

/* Animations */
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.animate-marquee {
  animation: marquee 20s linear infinite;
}

.animate-spin-slow {
  animation: spin 10s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Navigation Active State */
.nav-link.active {
  color: var(--lime-accent);
}

/* Mobile Menu Transition */
#mobile-menu {
  transition: opacity 0.3s ease-in-out;
}
