body {
    font-family: 'Share Tech Mono', monospace;
    background-color: #000;
    color: #22c55e
}

.scanline {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.2));
    background-size: 100% 4px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 20
}

.crt-flicker {
    animation: flicker 0.15s infinite
}

@keyframes flicker {
    0% {
        opacity: 0.95
    }

    50% {
        opacity: 1.0
    }

    100% {
        opacity: 0.95
    }
}

.terminal-input {
    background: transparent;
    border: none;
    border-bottom: 2px solid #22c55e;
    color: #22c55e;
    font-family: 'Share Tech Mono', monospace;
    outline: none;
    text-align: center
}

.terminal-input:focus {
    border-bottom: 2px solid #fff;
    box-shadow: 0 0 10px #22c55e
}

.glitch-text:hover {
    text-shadow: 2px 0 #fff, -2px 0 #ff00c1
}/* High-quality claymation background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('clay_background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: -1;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}
