/* === SEO Accessibility Enhancements === */
.nav-menu a:focus,
.neon-link:focus {
  outline: 2px solid #00ffc6;
  outline-offset: 3px;
}

/* Subtle moving glow background */
.dinachik-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0,255,198,0.05) 0%, rgba(255,0,255,0.05) 50%, rgba(0,255,198,0.05) 100%);
  animation: cyberFlow 12s linear infinite;
  z-index: 0;
}

@keyframes cyberFlow {
  0% { background-position: 0% 0%; }
  100% { background-position: 200% 200%; }
}
