@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Share+Tech+Mono&display=swap');

body {
    font-family: 'Share Tech Mono', monospace;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: 100vh
}

.scanline {
    background-image: repeating-linear-gradient(0deg, rgba(0, 255, 0, 0.03) 0px, transparent 1px, transparent 2px, rgba(0, 255, 0, 0.03) 3px);
    animation: scan 8s linear infinite
}

@keyframes scan {
    0% {
        background-position: 0 0
    }

    100% {
        background-position: 0 100px
    }
}

.terminal {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #00ff41;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.3), inset 0 0 20px rgba(0, 255, 65, 0.1)
}

.terminal-text {
    color: #00ff41;
    text-shadow: 0 0 5px rgba(0, 255, 65, 0.5)
}

.font-orbitron {
    font-family: 'Orbitron', sans-serif
}

.mission-card {
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.1), rgba(0, 150, 255, 0.1));
    border: 2px solid #00ff41;
    transition: all 0.3s ease
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 65, 0.3)
}

.code-input {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid #00ff41;
    color: #00ff41;
    font-family: 'Orbitron', sans-serif;
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold
}

.code-input:focus {
    outline: none;
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.5)
}

.fraction-display {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    margin: 0 8px
}

.fraction-line {
    width: 100%;
    height: 3px;
    background: #00ff41;
    margin: 4px 0
}

.glitch {
    animation: glitch 1s infinite
}

@keyframes glitch {

    0%,
    100% {
        transform: translate(0)
    }

    20% {
        transform: translate(-2px, 2px)
    }

    40% {
        transform: translate(-2px, -2px)
    }

    60% {
        transform: translate(2px, 2px)
    }

    80% {
        transform: translate(2px, -2px)
    }
}

.radar {
    width: 100px;
    height: 100px;
    border: 3px solid #00ff41;
    border-radius: 50%;
    position: relative;
    background: radial-gradient(circle, rgba(0, 255, 65, 0.1), transparent)
}

.radar::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    height: 2px;
    background: #00ff41;
    transform-origin: left center;
    animation: radarSweep 2s linear infinite
}

@keyframes radarSweep {
    0% {
        transform: translate(-50%, -50%) rotate(0deg)
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg)
    }
}