html {
  scroll-behavior: smooth;
  cursor: crosshair;
}
body {
  background-color: #021a32;
  color: #F1F2F1;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Film Grain Overlay */
.bg-noise::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  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");
  opacity: 0.04;
  z-index: 9999;
  mix-blend-mode: overlay;
}

.glass-panel {
  background: rgba(0, 51, 102, 0.25);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.glass-panel-heavy {
  background: rgba(2, 26, 50, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: #021a32;
}
::-webkit-scrollbar-thumb {
  background: #003366;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #CE2B37;
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

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

/* Custom Selection Color */
::selection {
  background: #CE2B37;
  color: #fff;
}

/* Interactive Elements Cursor */
a, button, input, select, textarea {
  cursor: pointer;
}

/* DRY Utility for repeated button styles */
.btn-primary {
  @apply px-6 py-2 border border-white/20 text-xs font-mono uppercase tracking-widest text-white hover:bg-white hover:text-vft-midnight transition-colors;
}

.btn-secondary {
  @apply px-3 py-2 bg-white/10 hover:bg-vft-red transition-colors text-white border-l border-white/10;
}