@keyframes flicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
        opacity: 1;
    }
    20%, 24%, 55% {
        opacity: 0.85;
    }
}

@keyframes glitch {
    0% { text-shadow: 0 0 5px #00ffcc, 2px 0 red, -2px 0 cyan; }
    20% { text-shadow: 0 0 8px #00ffcc, -2px 0 red, 2px 0 cyan; }
    40% { text-shadow: 0 0 12px #00ffcc, 2px 0 red, -2px 0 cyan; }
    60% { text-shadow: 0 0 8px #00ffcc, -2px 0 red, 2px 0 cyan; }
    80% { text-shadow: 0 0 5px #00ffcc, 2px 0 red, -2px 0 cyan; }
    100% { text-shadow: 0 0 5px #00ffcc; }
}

body {
    background: #000;
    color: #00ffcc;
    font-family: 'Courier New', monospace;
    margin: 0;
    padding: 0;
    animation: flicker 3s infinite;
    position: relative;
    text-shadow: 0 0 5px #00ffcc, 0 0 10px #00ffcc, 0 0 20px #00ffcc;
}

/* Scanlines overlay */
body::after {
    content: "";
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: repeating-linear-gradient(
        to bottom,
        rgba(0,0,0,0.15) 0px,
        rgba(0,0,0,0.15) 2px,
        transparent 2px,
        transparent 4px
    );
    pointer-events: none;
}

header {
    font-size: 2em;
    font-weight: bold;
    text-align: center;
    background: linear-gradient(90deg, #bf0fe7, #d52caa, #ea486c, #d0eac6, #80d0aa, #2fb58e, #994ad2);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    animation: gradientMove 3s ease infinite, glitch 1.5s infinite;
}

/* Gradient animation */
@keyframes gradientMove {
    0% { background-position: 0% center; }
    50% { background-position: 100% center; }
    100% { background-position: 0% center; }
}

/* Glitch effect */
@keyframes glitch {
    0% { text-shadow: 0 0 5px #00ffcc, 2px 0 red, -2px 0 cyan; }
    20% { text-shadow: 0 0 8px #00ffcc, -2px 0 red, 2px 0 cyan; }
    40% { text-shadow: 0 0 12px #00ffcc, 2px 0 red, -2px 0 cyan; }
    60% { text-shadow: 0 0 8px #00ffcc, -2px 0 red, 2px 0 cyan; }
    80% { text-shadow: 0 0 5px #00ffcc, 2px 0 red, -2px 0 cyan; }
    100% { text-shadow: 0 0 5px #00ffcc; }
}

}

header h1 {
    margin: 0;
    font-size: 2.5em;
    animation: glitch 1s infinite;
}

main {
    max-width: 800px;
    margin: auto;
    padding: 20px;
}

img {
    width: 100%;
    border: 2px solid #ff0066;
    margin: 20px 0;
    box-shadow: 0 0 15px #ff0066, 0 0 30px #ff0066;
}

.section-title {
    color: #ff0066;
    font-size: 1.5em;
    margin-top: 30px;
    border-bottom: 1px solid #ff0066;
    padding-bottom: 5px;
    text-shadow: 0 0 5px #ff0066, 0 0 10px #ff0066, 0 0 20px #ff0066;
}

a {
    color: #ff0066;
    text-decoration: none;
    text-shadow: 0 0 5px #ff0066, 0 0 10px #ff0066;
}

a:hover {
    color: #00ffcc;
    text-shadow: 0 0 5px #00ffcc, 0 0 10px #00ffcc;
}

