/**
 * THE NEON VOID (v3046) GLOBAL STYLES
 * Base atmosphere and utility enhancements
 */

@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Share+Tech+Mono&family=Roboto+Mono:wght@300;400;700&display=swap");

/* Neon Void Layout - Hide Conflicting Old Interface Elements */
.neon-void-active #persistent-header,
.neon-void-active .gameplay-loop-container,
.neon-void-active #players-club-membership-widget,
.neon-void-active #players-club-dashboard,
.neon-void-active #title-screen,
.neon-void-active #char-select-screen,
.neon-void-active #game-container,
.neon-void-active #screen-mission-board,
.neon-void-active #screen-store,
.neon-void-active #screen-cockpit,
.neon-void-active .beta-mobile-quick-menu,
.neon-void-active .beta-desktop-hud,
.neon-void-active .pip-boy-theme,
.neon-void-active .nv-atmosphere-scanlines,
.neon-void-active .nv-atmosphere-vignette,
.neon-void-active .cockpit-container,
.neon-void-active .cockpit-top-nav,
.neon-void-active .cockpit-sidebar-left,
.neon-void-active .cockpit-sidebar-right,
.neon-void-active .cockpit-main-feed,
.neon-void-active .mode-tabs,
.neon-void-active .tab-btn,
.neon-void-active .tab-content,
.neon-void-active .command-input-wrapper,
.neon-void-active .terminal-feed-container {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
}

/* Neon Void Layout - Core Styles */
.neon-void-layout {
  position: relative;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  background: linear-gradient(135deg, #050505 0%, #0a0a0a 50%, #050505 100%);
  background-attachment: fixed;
  color: #FFB300;
  font-family: "JetBrains Mono", "VT323", monospace;
  animation: backgroundShift 20s ease-in-out infinite;
}

@keyframes backgroundShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.neon-void-layout::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: 1;
  animation: gridMove 30s linear infinite;
}

@keyframes gridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

.neon-void-layout::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(57, 255, 20, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(255, 179, 0, 0.03) 0%, transparent 50%),
    radial-gradient(ellipse at 40% 60%, rgba(0, 240, 255, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 2;
  animation: ambientGlow 15s ease-in-out infinite alternate;
}

@keyframes ambientGlow {
  0% { opacity: 0.3; }
  100% { opacity: 0.6; }
}

.neon-void-layout ::selection {
  background-color: #39FF14;
  color: #0a0a0a;
  text-shadow: 0 0 5px #39FF14;
}

/* Neon Glow Effects */
.neon-glow-amber {
  text-shadow: 0 0 5px rgba(255, 179, 0, 0.8), 0 0 10px rgba(255, 179, 0, 0.6), 0 0 15px rgba(255, 179, 0, 0.4);
}

.neon-glow-green {
  text-shadow: 0 0 5px rgba(57, 255, 20, 0.8), 0 0 10px rgba(57, 255, 20, 0.6), 0 0 15px rgba(57, 255, 20, 0.4);
}

.neon-glow-cyan {
  text-shadow: 0 0 5px rgba(0, 240, 255, 0.8), 0 0 10px rgba(0, 240, 255, 0.6), 0 0 15px rgba(0, 240, 255, 0.4);
}

/* Neon Void Dashboard */
.neon-void-dashboard {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  z-index: 40;
  display: flex;
  justify-content: center;
}

.neon-void-dashboard-panel {
  border: 1px solid rgba(57, 255, 20, 0.3);
  background-color: rgba(17, 17, 17, 0.8);
  backdrop-filter: blur(8px);
  border-radius: 8px;
  padding: 16px;
  max-width: 896px;
  width: 100%;
  margin: 0 16px;
  box-shadow: 0 0 20px rgba(57, 255, 20, 0.3);
}

/* Hub System */
.neon-void-hub {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  padding: 120px 40px 40px 40px;
  background-color: rgba(5, 5, 5, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(57, 255, 20, 0.2);
}

/* Tablet Layout - Improved modal */
@media (min-width: 768px) and (max-width: 1199px) {
  .neon-void-hub {
    padding: 80px 20px 20px 20px;
  }

  .hub-nav-container {
    margin-bottom: 24px;
  }

  .hub-tab-btn {
    padding: 14px 24px;
    font-size: 15px;
  }

  .neon-void-hub-panel {
    padding: 28px;
    min-height: 500px;
  }
}

/* Desktop Hub Layout - Persistent Sidebar */
@media (min-width: 1200px) {
  .neon-void-hub {
    position: static;
    display: flex;
    padding: 0;
    background-color: transparent;
    backdrop-filter: none;
    border: none;
    min-height: calc(100vh - 120px);
  }

  .neon-void-hub.hidden {
    display: none;
  }

  /* Desktop Sidebar Navigation */
  .hub-nav-container {
    width: 280px;
    min-width: 280px;
    background-color: rgba(17, 17, 17, 0.95);
    border: 1px solid rgba(57, 255, 20, 0.3);
    border-radius: 0;
    margin: 0;
    padding: 24px 0;
    backdrop-filter: blur(15px);
    box-shadow: 0 0 40px rgba(57, 255, 20, 0.1);
    position: sticky;
    top: 120px;
    height: fit-content;
    display: flex;
    flex-direction: column;
  }

  .hub-tab-group {
    flex-direction: column;
    gap: 8px;
    background-color: transparent;
    border: none;
    padding: 0;
    margin: 0 16px;
  }

  .hub-tab-btn {
    width: 100%;
    padding: 16px 20px;
    text-align: left;
    font-size: 16px;
    border-radius: 8px;
    transition: all 0.2s ease;
    position: relative;
  }

  .hub-tab-btn:hover {
    background-color: rgba(57, 255, 20, 0.1);
    border-color: rgba(57, 255, 20, 0.3);
    transform: translateX(4px);
  }

  .hub-tab-btn.active {
    background-color: rgba(57, 255, 20, 0.15);
    border-color: #39FF14;
    color: #39FF14;
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.3);
  }

  .hub-close-btn {
    display: none;
  }

  /* Desktop Content Area */
  .neon-void-hub-content {
    flex: 1;
    padding: 24px;
    max-width: none;
    margin: 0;
  }

  .neon-void-hub-panel {
    min-height: 600px;
    padding: 32px;
    margin: 0;
    border-radius: 16px;
    box-shadow: 0 0 60px rgba(57, 255, 20, 0.15);
  }

  .neon-void-hub-panel h3 {
    font-size: 28px;
    margin-bottom: 32px;
  }
}

/* Large Desktop - Ultra-wide layouts */
@media (min-width: 1600px) {
  .hub-nav-container {
    width: 320px;
    min-width: 320px;
  }

  .neon-void-hub-content {
    padding: 32px;
  }

  .neon-void-hub-panel {
    padding: 48px;
    max-width: 1400px;
    margin: 0 auto;
  }
}

.neon-void-hub-content {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.neon-void-hub-panel {
  border: 1px solid rgba(57, 255, 20, 0.3);
  background-color: rgba(17, 17, 17, 0.95);
  backdrop-filter: blur(15px);
  border-radius: 12px;
  padding: 32px;
  color: #FFB300;
  font-family: "JetBrains Mono", "VT323", monospace;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  box-shadow: 0 0 40px rgba(57, 255, 20, 0.1);
  flex: 1;
  overflow-y: auto;
}

.neon-void-hub-panel h3 {
  color: #FFB300;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 24px;
  text-align: center;
  text-shadow: 0 0 10px rgba(255, 179, 0, 0.5);
}

/* Comms Drawer */
.neon-void-comms {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 35vh;
  background-color: rgba(17, 17, 17, 0.95);
  border-top: 2px solid #39FF14;
  backdrop-filter: blur(15px);
  transition: all 0.3s ease-out;
  box-shadow: 0 0 50px rgba(57, 255, 20, 0.3);
  z-index: 45;
}

/* Utility Classes */
.text-neon-amber { color: #FFB300; }
.text-neon-green { color: #39FF14; }
.text-neon-cyan { color: #00F0FF; }
.text-neon-red { color: #FF003C; }
.bg-void { background-color: #050505; }
.bg-void-panel { background-color: #111111; }
.border-neon-green { border-color: #39FF14; }
.border-neon-cyan { border-color: #00F0FF; }
.border-neon-amber { border-color: #FFB300; }

/* Neon Void Buttons */
.neon-void-button {
  padding: 0.25rem 0.75rem;
  background-color: rgba(17, 17, 17, 0.8);
  border: 1px solid;
  color: #FFB300;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  font-family: "JetBrains Mono", "VT323", monospace;
  cursor: pointer;
  transition: all 0.3s ease;
}

.neon-void-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 10px currentColor;
}

.neon-void-button-cyan {
  border-color: #00F0FF;
  color: #00F0FF;
}

.neon-void-button-cyan:hover {
  background-color: rgba(0, 240, 255, 0.1);
}

.neon-void-button-amber {
  border-color: #FFB300;
  color: #FFB300;
}

.neon-void-button-amber:hover {
  background-color: rgba(255, 179, 0, 0.1);
}

.neon-void-button-green {
  border-color: #39FF14;
  color: #39FF14;
}

.neon-void-button-green:hover {
  background-color: rgba(57, 255, 20, 0.1);
}

/* Hub Navigation */
.hub-nav-container {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}

.hub-tab-group {
  display: flex;
  gap: 12px;
  background-color: rgba(17, 17, 17, 0.9);
  border: 1px solid rgba(57, 255, 20, 0.3);
  border-radius: 12px;
  padding: 8px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 20px rgba(57, 255, 20, 0.1);
}

.hub-tab-btn {
  padding: 12px 20px;
  background-color: transparent;
  border: 1px solid transparent;
  color: #FFB300;
  border-radius: 8px;
  cursor: pointer;
  font-family: "JetBrains Mono", monospace;
  font-size: 14px;
  font-weight: bold;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hub-tab-btn:hover {
  background-color: rgba(57, 255, 20, 0.1);
  border-color: rgba(57, 255, 20, 0.5);
  transform: translateY(-1px);
}

.hub-tab-btn.active {
  background-color: rgba(57, 255, 20, 0.2);
  border-color: #39FF14;
  color: #39FF14;
  box-shadow: 0 0 15px rgba(57, 255, 20, 0.4);
  text-shadow: 0 0 5px rgba(57, 255, 20, 0.8);
}

.hub-close-btn {
  margin-left: 16px;
  padding: 12px 20px;
  background-color: rgba(255, 0, 60, 0.8);
  border: 1px solid rgba(255, 0, 60, 0.6);
  color: #0a0a0a;
  border-radius: 8px;
  cursor: pointer;
  font-family: "JetBrains Mono", monospace;
  font-size: 14px;
  font-weight: bold;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hub-close-btn:hover {
  background-color: rgba(255, 0, 60, 0.9);
  border-color: #FF003C;
  transform: translateY(-1px);
  box-shadow: 0 0 15px rgba(255, 0, 60, 0.4);
}

/* Terminal Messages */
.terminal-message {
  margin-bottom: 8px;
  padding: 6px 12px;
  border-left: 3px solid;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 4px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
}

.terminal-message.system-message {
  border-left-color: #00F0FF;
  background-color: rgba(0, 240, 255, 0.05);
}

.terminal-message.narrative-message {
  border-left-color: #FFB300;
  background-color: rgba(255, 179, 0, 0.05);
}

.message-timestamp {
  color: #888;
  margin-right: 8px;
  font-size: 10px;
}

.message-text {
  color: #FFB300;
}

/* Info Grids (for cargo/crew stats) */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.info-item {
  background-color: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(57, 255, 20, 0.2);
  border-radius: 6px;
  padding: 12px;
  text-align: center;
}

.info-item-label {
  color: #00F0FF;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.info-item-value {
  color: #FFB300;
  font-size: 16px;
  font-weight: bold;
}

/* Stats Display Styling */
.stat-label {
  color: #00F0FF;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.stat-value {
  color: #FFB300;
  font-size: 18px;
  font-weight: bold;
  text-shadow: 0 0 5px rgba(255, 179, 0, 0.5);
}

.stat-value.large {
  font-size: 24px;
  animation: pulse-glow 2s ease-in-out infinite alternate;
}

@keyframes pulse-glow {
  0% { text-shadow: 0 0 5px rgba(255, 179, 0, 0.5), 0 0 10px rgba(255, 179, 0, 0.3); }
  100% { text-shadow: 0 0 10px rgba(255, 179, 0, 0.8), 0 0 20px rgba(255, 179, 0, 0.5), 0 0 30px rgba(255, 179, 0, 0.3); }
}

/* Progress Bars */
.progress-bar {
  width: 100%;
  height: 8px;
  background-color: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(57, 255, 20, 0.3);
  border-radius: 4px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #39FF14, #00F0FF);
  border-radius: 3px;
  transition: width 0.5s ease;
  box-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
}

/* Status Indicators */
.status-indicator {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 8px;
  animation: status-pulse 1.5s ease-in-out infinite;
}

.status-indicator.online {
  background-color: #39FF14;
  box-shadow: 0 0 5px rgba(57, 255, 20, 0.8);
}

.status-indicator.warning {
  background-color: #FFB300;
  box-shadow: 0 0 5px rgba(255, 179, 0, 0.8);
}

.status-indicator.error {
  background-color: #FF003C;
  box-shadow: 0 0 5px rgba(255, 0, 60, 0.8);
}

@keyframes status-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.1); }
}

/* Dashboard Layout */
.neon-void-dashboard {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  z-index: 40;
  display: flex;
  justify-content: center;
  background: rgba(5, 5, 5, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(57, 255, 20, 0.3);
  padding: 10px 0;
}

.neon-void-dashboard-panel {
  border: 1px solid rgba(57, 255, 20, 0.3);
  background-color: rgba(17, 17, 17, 0.9);
  backdrop-filter: blur(8px);
  border-radius: 8px;
  padding: 16px;
  max-width: 896px;
  width: 100%;
  margin: 0 16px;
  box-shadow: 0 0 20px rgba(57, 255, 20, 0.3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.neon-void-dashboard-panel .flex {
  display: flex;
}

.neon-void-dashboard-panel .items-center {
  align-items: center;
}

.neon-void-dashboard-panel .justify-between {
  justify-content: space-between;
}

.neon-void-dashboard-panel .gap-6 {
  gap: 1.5rem;
}

.neon-void-dashboard-panel .gap-4 {
  gap: 1rem;
}

.neon-void-dashboard-panel .gap-8 {
  gap: 2rem;
}

.neon-void-dashboard-panel .text-center {
  text-align: center;
}

.neon-void-dashboard-panel .text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.neon-void-dashboard-panel .text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.neon-void-dashboard-panel .font-bold {
  font-weight: 700;
}

.neon-void-dashboard-panel .ml-2 {
  margin-left: 0.5rem;
}

.neon-void-dashboard-panel .w-24 {
  width: 6rem;
}

.neon-void-dashboard-panel .h-2 {
  height: 0.5rem;
}

.neon-void-dashboard-panel .bg-void {
  background-color: #050505;
}

.neon-void-dashboard-panel .border {
  border-width: 1px;
  border-style: solid;
}

.neon-void-dashboard-panel .border-neon-green\/50 {
  border-color: rgba(57, 255, 20, 0.5);
}

.neon-void-dashboard-panel .rounded {
  border-radius: 0.25rem;
}

.neon-void-dashboard-panel .progress-fill {
  background: linear-gradient(90deg, #FFD700, #FFA500);
  transition: width 0.3s ease;
}

.neon-void-dashboard-panel .gold-fill {
  background: linear-gradient(90deg, #FFD700, #FFA500);
}

.neon-void-dashboard-panel .transition-all {
  transition: all 0.3s ease;
}

.neon-void-dashboard-panel .duration-300 {
  transition-duration: 0.3s;
}
.fixed{position:fixed}.top-20{top:5rem}.left-0{left:0}.right-0{right:0}.z-40{z-index:40}.flex{display:flex}.justify-center{justify-content:center}.border{border-style:solid;border-width:1px}.border-neon-green\/30{border-color:#39FF144d}.bg-void-panel\/80{background-color:#111111cc}.backdrop-blur-md{backdrop-filter:blur(12px)}.rounded-lg{border-radius:0.5rem}.p-4{padding:1rem}.max-w-4xl{max-width:56rem}.w-full{width:100%}.mx-4{margin-inline:1rem}.shadow-\[0_0_20px_rgba\(57\,255\,20\,0\.3\)\]{--tw-shadow:0 0 20px var(--tw-shadow-color,#39ff144d);box-shadow:0 0 20px #39ff144d}
.items-center{align-items:center}.justify-between{justify-content:space-between}.gap-6{gap:1.5rem}.gap-4{gap:1rem}.text-lg{font-size:1.125rem;line-height:1.75rem}.text-sm{font-size:0.875rem;line-height:1.25rem}.text-neon-cyan{color:#00F0FF}.font-bold{font-weight:700}.w-24{width:6rem}.h-2{height:0.5rem}.bg-void{border-color:#050505}.border-neon-green\/50{border-color:#39FF1480}.rounded{border-radius:0.25rem}
.absolute{position:absolute}.inset-0{inset:0}.z-20{z-index:20}.p-10{padding:2.5rem}.bg-void\/95{background-color:#050505f2}.mb-8{margin-bottom:2rem}.bg-void-panel{background-color:#111111}.rounded-lg{border-radius:0.5rem}.p-6{padding:1.5rem}.text-xl{font-size:1.25rem;line-height:1.75rem}.mb-4{margin-bottom:1rem}
.bottom-0{bottom:0}.h-\[40vh\]{height:40vh}.border-t-2{border-top-style:solid;border-top-width:2px}.border-neon-green{border-color:#39FF14}.transition-all{transition-property:all;transition-timing-function:ease;transition-duration:0s}.duration-300{transition-duration:0.3s}.ease-out{transition-timing-function:ease-out}.shadow-\[0_0_30px_rgba\(57\,255\,20\,0\.2\)\]{--tw-shadow:0 0 30px var(--tw-shadow-color,#39ff1433);box-shadow:0 0 30px #39ff1433}
.flex-1{flex:1}.overflow-y-auto{overflow-y:auto}.p-2{padding:0.5rem}.p-3{padding:0.75rem}.border-t{border-top-style:solid;border-top-width:1px}.border-neon-green\/30{border-color:#39FF144d}.bg-void-panel{background-color:#111111}
.px-3{padding-inline:0.75rem}.py-2{padding-block:0.5rem}.bg-void{background-color:#050505}.border-neon-green\/50{border-color:#39FF1480}.text-neon-amber{color:#FFB300}.font-mono{font-family:"JetBrains Mono","VT323",monospace}.text-sm{font-size:0.875rem;line-height:1.25rem}.rounded{border-radius:0.25rem}.focus\:border-neon-cyan:focus{border-color:#00F0FF}.focus\:outline-none:focus{outline-style:none}

:root {
  /* --- COLOR PALETTE (v3046 PREMIUM) --- */
  --nv-amber: #ffb300;
  --nv-amber-dim: rgba(255, 179, 0, 0.1);
  --nv-cyan: #00f0ff;
  --nv-cyan-dim: rgba(0, 240, 255, 0.1);
  --nv-acid: #39ff14;
  --nv-acid-dim: rgba(57, 255, 20, 0.1);
  --nv-danger: #ff1744;
  --nv-danger-dim: rgba(255, 23, 68, 0.1);
  --nv-void: #050505;
  --nv-surface: rgba(10, 10, 15, 0.85);
  --nv-border: rgba(255, 255, 255, 0.1);

  /* --- TYPOGRAPHY --- */
  --font-display: "Orbitron", sans-serif;
  --font-mono: "Roboto Mono", monospace;
  --font-body: "Share Tech Mono", monospace;

  /* --- SHADOWS & GLOWS --- */
  --nv-glow-amber:
    0 0 10px rgba(255, 179, 0, 0.4), 0 0 20px rgba(255, 179, 0, 0.2);
  --nv-glow-cyan:
    0 0 10px rgba(0, 240, 255, 0.4), 0 0 20px rgba(0, 240, 255, 0.2);
  --nv-glow-acid:
    0 0 10px rgba(57, 255, 20, 0.4), 0 0 20px rgba(57, 255, 20, 0.2);
  --nv-glow-danger:
    0 0 10px rgba(255, 23, 68, 0.4), 0 0 20px rgba(255, 23, 68, 0.2);
}

/* --- BASE STYLES --- */
body.neon-void-theme {
  background-color: var(--nv-void);
  color: var(--nv-amber);
  font-family: var(--font-body);
  line-height: 1.6;
  margin: 0;
  overflow-x: hidden;
}

/* --- ATMOSPHERICS --- */
.neon-void-theme::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.15) 50%),
    linear-gradient(
      90deg,
      rgba(255, 0, 0, 0.03),
      rgba(0, 255, 0, 0.01),
      rgba(0, 0, 255, 0.03)
    );
  background-size:
    100% 4px,
    3px 100%;
  pointer-events: none;
  z-index: 9999;
}

.neon-void-theme::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: inset 0 0 200px rgba(0, 0, 0, 0.95);
  pointer-events: none;
  z-index: 9998;
}

/* --- GRID BACKGROUND --- */
.nv-grid-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(var(--nv-amber-dim) 1px, transparent 1px),
    linear-gradient(90deg, var(--nv-amber-dim) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: -1;
  opacity: 0.3;
}

/* --- UTILITIES: GEOMETRY --- */
.nv-corner-cut {
  clip-path: polygon(
    12px 0,
    100% 0,
    100% calc(100% - 12px),
    calc(100% - 12px) 100%,
    0 100%,
    0 12px
  );
}

.nv-corner-cut-sm {
  clip-path: polygon(
    8px 0,
    100% 0,
    100% calc(100% - 8px),
    calc(100% - 8px) 100%,
    0 100%,
    0 8px
  );
}

/* --- UTILITIES: BORDERS --- */
.nv-border-amber {
  border: 1px solid var(--nv-amber);
  box-shadow: var(--nv-glow-amber);
}
.nv-border-cyan {
  border: 1px solid var(--nv-cyan);
  box-shadow: var(--nv-glow-cyan);
}
.nv-border-acid {
  border: 1px solid var(--nv-acid);
  box-shadow: var(--nv-glow-acid);
}

/* --- UTILITIES: TYPOGRAPHY --- */
.nv-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 4px;
}
.nv-text-amber {
  color: var(--nv-amber);
  text-shadow: var(--nv-glow-amber);
}
.nv-text-cyan {
  color: var(--nv-cyan);
  text-shadow: var(--nv-glow-cyan);
}
.nv-text-acid {
  color: var(--nv-acid);
  text-shadow: var(--nv-glow-acid);
}

/* --- COMPONENTS: CARDS --- */
.nv-card {
  background: var(--nv-surface);
  border: 1px solid var(--nv-border);
  padding: 1.5rem;
  position: relative;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.nv-card:hover {
  border-color: var(--nv-cyan);
  box-shadow: var(--nv-glow-cyan);
}

/* --- COMPONENTS: BUTTONS --- */
.nv-btn {
  font-family: var(--font-display);
  padding: 0.75rem 1.5rem;
  background: transparent;
  border: 1px solid var(--nv-amber);
  color: var(--nv-amber);
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  clip-path: polygon(
    8px 0,
    100% 0,
    100% calc(100% - 8px),
    calc(100% - 8px) 100%,
    0 100%,
    0 8px
  );
}

.nv-btn:hover {
  background: var(--nv-amber);
  color: var(--nv-void);
  box-shadow: var(--nv-glow-amber);
  animation: nv-glitch-anim 0.3s infinite;
}

.nv-btn-primary {
  border-color: var(--nv-acid);
  color: var(--nv-acid);
}
.nv-btn-primary:hover {
  background: var(--nv-acid);
  box-shadow: var(--nv-glow-acid);
}

/* --- ANIMATIONS --- */
@keyframes nv-glitch-anim {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translate(-2px, 2px);
  }
  40% {
    transform: translate(-2px, -2px);
  }
  60% {
    transform: translate(2px, 2px);
  }
  80% {
    transform: translate(2px, -2px);
  }
  100% {
    transform: translate(0);
  }
}

.nv-scan-move {
  position: relative;
  overflow: hidden;
}

.nv-scan-move::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(transparent, rgba(0, 240, 255, 0.1), transparent);
  animation: nv-scan-slide 4s linear infinite;
  pointer-events: none;
}

@keyframes nv-scan-slide {
  from {
    top: -100%;
  }
  to {
    top: 100%;
  }
}

/* --- FORMS --- */
.nv-input {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--nv-border);
  padding: 0.75rem 1rem;
  color: var(--nv-cyan);
  font-family: var(--font-mono);
  width: 100%;
  outline: none;
  transition: all 0.3s ease;
}

.nv-input:focus {
  border-color: var(--nv-cyan);
  box-shadow: var(--nv-glow-cyan);
  background: rgba(0, 240, 255, 0.05);
}

/* --- SCROLLBARS --- */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: var(--nv-void);
}
::-webkit-scrollbar-thumb {
  background: var(--nv-amber);
  border-radius: 0;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--nv-cyan);
}
