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

@keyframes glitchBackground {
    0% {
        background-color: black;
    }
    25% {
        background-color: #1a0000;
    }
    50% {
        background-color: black;
    }
    75% {
        background-color: #00001a;
    }
    100% {
        background-color: black;
    }
}

body {
    margin: 0;
    padding: 0;
    background-color: #000;
    color: #fff;
    font-family: 'Courier New', monospace;
    overflow: hidden;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/thumb/a/a6/Anonymous_emblem.svg/1200px-Anonymous_emblem.svg.png');
    background-size: 60%;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15;
    filter: invert(1) brightness(1.2);
    z-index: 0;
    pointer-events: none;
    animation: pulseBackground 4s infinite;
}

@keyframes pulseBackground {
    0% {
        opacity: 0.15;
        transform: scale(1);
    }
    50% {
        opacity: 0.25;
        transform: scale(1.05);
    }
    100% {
        opacity: 0.15;
        transform: scale(1);
    }
}

.container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.text-container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.text-line {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    font-size: 2em;
    margin: 10px 0;
    text-shadow: 0 0 10px #0f0;
}

.text-line.visible {
    opacity: 1;
    transform: translateY(0);
}

.text-line.error {
    color: #ff4444;
    font-size: 2rem;
    text-shadow: 0 0 10px rgba(255, 68, 68, 0.7);
    animation: errorPulse 1s infinite;
}

@keyframes errorPulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

.text-line.debug {
    color: #ffaa00;
    font-size: 1.5rem;
    text-shadow: 0 0 10px rgba(255, 170, 0, 0.7);
    font-family: monospace;
    word-break: break-all;
}

.anonymous-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('anonymous-mask.png') no-repeat center center;
    background-size: contain;
    opacity: 0.1;
    z-index: 1;
    pointer-events: none;
}

#ip-address {
    color: #0f0;
    font-weight: bold;
    text-shadow: 0 0 10px #0f0;
}

/* Glow effect for text */
.text-line {
    text-shadow: 0 0 5px #0f0,
                 0 0 10px #0f0,
                 0 0 15px #0f0,
                 0 0 20px #0f0;
}

/* Responsive design */
@media (max-width: 768px) {
    .text-line {
        font-size: 1.5em;
    }
}

@media (max-width: 480px) {
    .text-line {
        font-size: 1.2em;
    }
} 