body {
    background-color: #0a0a0a;
    color: #ff3333;
    font-family: 'Courier New', monospace;
    text-align: center;
    margin: 0;
    padding: 0;
}
.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
h1 {
    font-size: 3em;
    text-shadow: 0 0 20px #ff3333;
    position: relative;
    display: inline-block;
}
.glitch {
    position: relative;
    display: inline-block;
}
.glitch.glitch-active {
    animation: glitch 0.2s steps(2, end) 5;
}
@keyframes glitch {
    0% { transform: translate(0, 0); }
    25% { transform: translate(-3px, 3px); }
    50% { transform: translate(3px, -3px); }
    75% { transform: translate(-3px, 3px); }
    100% { transform: translate(0, 0); }
}
.footer {
    position: absolute;
    bottom: 10px;
    width: 100%;
    font-size: 0.8em;
    opacity: 0.6;
}