body {
    background-color: #000000;
    color: #00ff00;
    font-family: 'Courier New', Courier, monospace;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
    text-align: center;
}

#matrix-canvas {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.content {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.8);
    padding: 2rem;
    border: 1px solid #00ff00;
    box-shadow: 0 0 20px #00ff00;
}

h1 {
    font-size: 3rem;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px #000;
    animation: glitch 1s linear infinite;
}

p {
    font-size: 1.2rem;
    margin-top: 1rem;
}

@keyframes glitch {
    2%, 64% {
        transform: translate(2px,0) skew(0deg);
    }
    4%, 60% {
        transform: translate(-2px,0) skew(0deg);
    }
    62% {
        transform: translate(0,0) skew(5deg); 
    }
}

.blink {
    animation: blinker 1s linear infinite;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}
