/* Fixed Header */
header {
    border-top: 1px solid #39ff14;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    background: #000;
    padding-bottom: 10px;
    border-bottom: 1px solid #39ff14;
}

body {
    padding-top: 70px; /* Adjust if your header is taller/shorter */
}

/* Glitch Text Animation */
.glitch-text {
    position: relative;
    color: #39ff14;
    display: inline-block;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
    pointer-events: none;
}

.glitch-text::before {
    animation: glitch-subtle-1 3s infinite;
    color: #ff3cac;
    z-index: -1;
}

.glitch-text::after {
    animation: glitch-subtle-2 4s infinite;
    color: #00ffff;
    z-index: -2;
}

@keyframes glitch-subtle-1 {
    0%, 90%, 100% { transform: translate(0); opacity: 0; }
    91%, 94% { transform: translate(-1px, 1px); opacity: 0.7; }
}

@keyframes glitch-subtle-2 {
    0%, 85%, 100% { transform: translate(0); opacity: 0; }
    86%, 89% { transform: translate(1px, -1px); opacity: 0.6; }
} 