
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: 'Orbitron', monospace;
    background: #0a0a0a;
    overflow: hidden;
}

.container {
    position: relative;
    height: 100vh;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.static-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.05) 1px, transparent 1px),
        radial-gradient(circle at 80% 30%, rgba(0,255,65,0.03) 1px, transparent 1px),
        radial-gradient(circle at 40% 80%, rgba(255,0,100,0.02) 1px, transparent 1px),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255,255,255,0.02) 2px,
            rgba(255,255,255,0.02) 4px
        );
    background-size: 8px 8px, 12px 12px, 16px 16px, 100% 100%;
    pointer-events: none;
    animation: tv-static 0.1s infinite steps(10), static-flicker 0.15s infinite linear alternate;
}

.content {
    text-align: center;
    z-index: 10;
    max-width: 800px;
    padding: 2rem;
}

.glitch-text {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    color: #00ff80;
    text-shadow: 
        0 0 5px #000,
        0 0 10px #000,
        0 0 15px #00ff80,
        0 0 25px #00ff80,
        0 0 35px #00ff80;
    position: relative;
    margin-bottom: 2rem;
    animation: glitch 2s infinite;
}

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

.glitch-text::before {
    animation: glitch-1 0.3s infinite;
    color: #ff0080;
    z-index: -1;
    text-shadow: 0 0 10px #ff0080;
}

.glitch-text::after {
    animation: glitch-2 0.3s infinite;
    color: #00d4ff;
    z-index: -2;
    text-shadow: 0 0 10px #00d4ff;
}

.quote {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: #c0c0c0;
    margin-bottom: 1rem;
    line-height: 1.4;
    text-shadow: 0 0 10px rgba(192, 192, 192, 0.5);
}

.author {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: #00ff41;
    margin-bottom: 3rem;
    opacity: 0.8;
}



@keyframes static-flicker {
    0% { opacity: 1; }
    100% { opacity: 0.95; }
}

@keyframes tv-static {
    0% { 
        transform: translate(0, 0) scale(1);
        filter: contrast(1);
    }
    10% { 
        transform: translate(-1px, 1px) scale(1.001);
        filter: contrast(1.1);
    }
    20% { 
        transform: translate(1px, -1px) scale(0.999);
        filter: contrast(0.9);
    }
    30% { 
        transform: translate(-1px, -1px) scale(1.001);
        filter: contrast(1.05);
    }
    40% { 
        transform: translate(1px, 1px) scale(0.998);
        filter: contrast(1.1);
    }
    50% { 
        transform: translate(0, -1px) scale(1.002);
        filter: contrast(0.95);
    }
    60% { 
        transform: translate(-1px, 0) scale(0.999);
        filter: contrast(1.08);
    }
    70% { 
        transform: translate(1px, 0) scale(1.001);
        filter: contrast(0.92);
    }
    80% { 
        transform: translate(0, 1px) scale(0.998);
        filter: contrast(1.12);
    }
    90% { 
        transform: translate(-1px, -1px) scale(1.002);
        filter: contrast(0.88);
    }
    100% { 
        transform: translate(0, 0) scale(1);
        filter: contrast(1);
    }
}

@keyframes glitch {
    0%, 100% { 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-1 {
    0%, 100% { transform: translate(0); }
    10% { transform: translate(-2px, -1px); }
    20% { transform: translate(-1px, 1px); }
    30% { transform: translate(1px, -1px); }
    40% { transform: translate(-1px, 1px); }
    50% { transform: translate(-2px, -1px); }
    60% { transform: translate(1px, 1px); }
    70% { transform: translate(-2px, 1px); }
    80% { transform: translate(2px, -1px); }
    90% { transform: translate(1px, 2px); }
}

@keyframes glitch-2 {
    0%, 100% { transform: translate(0); }
    10% { transform: translate(2px, 1px); }
    20% { transform: translate(1px, -1px); }
    30% { transform: translate(-1px, 1px); }
    40% { transform: translate(1px, -1px); }
    50% { transform: translate(2px, 1px); }
    60% { transform: translate(-1px, -1px); }
    70% { transform: translate(2px, -1px); }
    80% { transform: translate(-2px, 1px); }
    90% { transform: translate(-1px, -2px); }
}



@media (max-width: 768px) {
    .content {
        padding: 1rem;
    }
}
