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

body {
    background-color: #000;
    color: #0af;
    font-family: 'Courier New', monospace;
    overflow: hidden;
}

.container {
    position: relative;
    width: 100vw;
    height: 100vh;
}

canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.interface {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
}

.status {
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 5px;
    text-shadow: 0 0 10px #0af;
    animation: pulse 2s infinite;
}

.scan-line {
    width: 200px;
    height: 2px;
    background-color: #0af;
    box-shadow: 0 0 10px #0af;
    position: relative;
    animation: scan 3s infinite;
}

.controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}

button {
    background-color: rgba(0, 0, 0, 0.7);
    border: 1px solid #0af;
    color: #0af;
    padding: 8px 16px;
    font-family: 'Courier New', monospace;
    cursor: pointer;
    transition: all 0.3s;
}

button:hover {
    background-color: rgba(0, 170, 255, 0.2);
    box-shadow: 0 0 10px #0af;
}

@keyframes pulse {
    0% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.7;
    }
}

@keyframes scan {
    0% {
        transform: translateY(0);
        opacity: 0.5;
    }
    50% {
        transform: translateY(30px);
        opacity: 1;
    }
    100% {
        transform: translateY(0);
        opacity: 0.5;
    }
}
