/*
 * Cyber Synth Theme - Neon Purple
 */

:root {
  --color-bg: #0d0b1e;
  --color-bg-alt: #111025;
  --color-primary: #9d4edd;
  --color-secondary: #6c2bd9;
  --color-accent: #ff00ff;
  --color-text: #e0e0ff;
  --color-text-dim: rgba(224, 224, 255, 0.7);
  --color-border: rgba(157, 78, 221, 0.3);
}

/* Add custom gradients and effects for this theme */
.cyber-header, .cyber-footer {
  position: relative;
}

.cyber-header::before, .cyber-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(157, 78, 221, 0.2) 0%, rgba(255, 0, 255, 0.1) 50%, rgba(157, 78, 221, 0.2) 100%);
  z-index: -1;
}

.cyber-logo__cursor {
  box-shadow: 0 0 10px #ff00ff, 0 0 20px #ff00ff;
}

.cyber-button {
  box-shadow: 0 0 5px rgba(157, 78, 221, 0.5);
}

.cyber-button:hover {
  box-shadow: 0 0 10px rgba(255, 0, 255, 0.7);
}