#fw-section-header {

/* Cyberpunk logo glow */
.site-header__logo,
.logo,
h1 {
  color: #00F5FF !important;
  text-shadow: 
    0 0 10px #00F5FF,
    0 0 20px #00F5FF,
    0 0 40px #00F5FF,
    0 0 80px rgba(0, 245, 255, 0.5);
  animation: cyberGlow 3s ease-in-out infinite;
  letter-spacing: 0.1em;
  font-weight: 900 !important;
}

@keyframes cyberGlow {
  0%, 90%, 100% {
    text-shadow: 
      0 0 10px #00F5FF,
      0 0 20px #00F5FF,
      0 0 40px #00F5FF;
  }
  92% {
    text-shadow: 
      -2px 0 10px #FF006E,
      2px 2px 20px #00F5FF,
      0 0 40px #FFFF00;
    transform: translate(-2px, 1px);
  }
  94% {
    text-shadow: 
      2px 0 10px #00F5FF,
      -2px -2px 20px #FF006E;
    transform: translate(2px, -1px);
  }
}

/* Neon buttons */
button,
.button,
a.btn {
  box-shadow: 0 0 20px rgba(255, 0, 110, 0.5) !important;
  transition: all 0.3s ease !important;
}

button:hover,
.button:hover,
a.btn:hover {
  box-shadow: 0 0 30px rgba(255, 0, 110, 0.8) !important;
  transform: translateY(-2px);
}
}