* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #000000;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 25%, #1a0000 50%, #0a0a0a 75%, #000000 100%);
    font-family: 'Arial', 'Courier New', monospace;
    overflow: hidden;
    height: 100vh;
    width: 100vw;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(139, 0, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 0, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
    animation: darkPulse 4s ease-in-out infinite;
}

@keyframes darkPulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

.container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.blinking-text {
    position: absolute;
    top: 30px;
    font-size: 52px;
    font-weight: 900;
    color: #8b0000;
    text-shadow: 
        0 0 5px #ff0000,
        0 0 10px #ff0000,
        0 0 15px #8b0000,
        0 0 20px #8b0000,
        0 0 30px #8b0000,
        0 0 40px #8b0000,
        0 0 50px #ff0000,
        0 0 60px #8b0000,
        0 0 70px #8b0000,
        2px 2px 0px #000000,
        4px 4px 0px #000000;
    animation: scaryBlink 2s infinite;
    text-transform: uppercase;
    letter-spacing: 8px;
    z-index: 100;
    filter: drop-shadow(0 0 10px rgba(255, 0, 0, 0.5));
    font-family: 'Courier New', 'Arial Black', monospace;
}

@keyframes scaryBlink {
    0%, 90%, 100% {
        opacity: 1;
        text-shadow: 
            0 0 5px #ff0000,
            0 0 10px #ff0000,
            0 0 15px #8b0000,
            0 0 20px #8b0000,
            0 0 30px #8b0000,
            0 0 40px #8b0000,
            0 0 50px #ff0000,
            0 0 60px #8b0000,
            0 0 70px #8b0000,
            2px 2px 0px #000000,
            4px 4px 0px #000000;
        transform: scale(1);
    }
    91%, 92%, 93%, 94%, 95%, 96%, 97%, 98%, 99% {
        opacity: 0.1;
        text-shadow: 
            0 0 2px #ff0000,
            0 0 4px #8b0000,
            2px 2px 0px #000000;
        transform: scale(0.98);
    }
    50% {
        opacity: 0.7;
        text-shadow: 
            0 0 8px #ff0000,
            0 0 15px #ff0000,
            0 0 20px #8b0000,
            0 0 30px #8b0000,
            0 0 40px #ff0000,
            0 0 50px #8b0000,
            2px 2px 0px #000000,
            4px 4px 0px #000000;
        transform: scale(1.02);
    }
}

#canvas-container {
    width: 100%;
    height: 100%;
    cursor: none;
    position: relative;
    z-index: 2;
}

#canvas-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(0, 0, 0, 0.03) 2px,
            rgba(0, 0, 0, 0.03) 4px
        );
    pointer-events: none;
    z-index: 1;
}

canvas {
    display: block;
    width: 100%;
    height: 100%;
}

