* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Courier New', monospace;
    background: #0a0a12;
    color: #e0e0e0;
    overflow: hidden;
    height: 100vh;
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(90deg, rgba(255, 0, 255, 0.05) 1px, transparent 1px),
        linear-gradient(rgba(255, 0, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    transform: perspective(1000px) rotateX(60deg);
    animation: grid-move 20s linear infinite;
}

.scanlines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        repeating-linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.1) 0px,
            rgba(0, 0, 0, 0.1) 2px,
            transparent 2px,
            transparent 4px
        );
    z-index: -1;
}

@keyframes grid-move {
    0% { transform: perspective(1000px) rotateX(60deg) translateY(0); }
    100% { transform: perspective(1000px) rotateX(60deg) translateY(50px); }
}

.container {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.header {
    margin-bottom: 3rem;
}

.neon-text {
    font-size: 3.5rem;
    font-weight: bold;
    text-shadow:
        0 0 10px #0ff,
        0 0 20px #0ff,
        0 0 30px #0ff;
    letter-spacing: 3px;
}

.accent {
    color: #ff00ff;
    text-shadow:
        0 0 5px #ff00ff,
        0 0 15px #ff00ff;
}

.subtitle {
    font-size: 1.2rem;
    color: #aaa;
    margin-top: 0.5rem;
}

.content {
    max-width: 600px;
}

.status {
    margin-bottom: 2rem;
}

.glitch {
    font-size: 2.5rem;
    font-weight: bold;
    color: #0ff;
    text-shadow:
        0 0 5px #0ff,
        2px 0 10px #0ff,
        -2px 0 10px #0ff;
    animation: glitch 1s infinite;
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    animation: glitch-shift 1s infinite;
    clip-path: inset(0 0 80% 0);
    opacity: 0.8;
}

.glitch::after {
    animation: glitch-shift 1.5s infinite;
    clip-path: inset(80% 0 0 0);
    opacity: 0.8;
}

@keyframes glitch {
    from, to { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
}

@keyframes glitch-shift {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-5px, 5px); }
    40% { transform: translate(5px, -5px); }
    60% { transform: translate(-5px, -5px); }
    80% { transform: translate(5px, 5px); }
}

.error-code {
    color: #ff0000;
    font-size: 1.1rem;
    margin-top: 0.5rem;
    text-shadow: 0 0 5px #ff0000;
}

.info p {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.countdown {
    margin: 2rem 0;
    font-size: 1.3rem;
    color: #0ff;
    text-shadow: 0 0 10px #0ff;
}

.contact {
    margin-top: 2rem;
}

.social {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.social-link {
    color: #0ff;
    text-decoration: none;
    border: 1px solid #0ff;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-link:hover {
    background-color: #0ff;
    color: #000;
    text-shadow: none;
}
