/*
Theme Name: UFO Sightings Terminal
Theme URI: https://UFOSightings.ca
Version: 1.7 - Military CRT Edition
*/

@import url('https://fonts.googleapis.com/css2?family=VT323&display=swap');

body {
    font-family: 'VT323', monospace;
    background: #000000;
    color: #00FF41;
    margin: 0;
    padding: 0;
    font-size: 1.28rem;
    line-height: 1.45;
}

/* ====================== DEFAULT NIGHT MODE - DEEP GREEN CRT ====================== */
.crt {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: #000000;
    border: 22px solid #0a0a0a;
    box-shadow: 
        0 0 90px #00FF41,
        inset 0 0 240px rgba(0, 255, 65, 0.32);
    overflow: hidden;
}

/* Strong Scanlines */
.crt::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        transparent 0px,
        transparent 4px,
        rgba(0,255,65,0.20) 4px,
        rgba(0,255,65,0.20) 8px
    );
    pointer-events: none;
    z-index: 5;
    animation: scanline 4.5s linear infinite;
}

@keyframes scanline {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

/* ====================== 1970s MILITARY AMBER MODE ====================== */
body.amber-mode {
    background: #1c1408;
    color: #ffcc66;
}

body.amber-mode .crt {
    border-color: #5c3311;
    box-shadow: 
        0 0 85px #ffaa33,
        inset 0 0 200px rgba(255, 170, 51, 0.45);
}

body.amber-mode .crt::before {
    background: repeating-linear-gradient(
        transparent 0px,
        transparent 4px,
        rgba(255, 204, 102, 0.25) 4px,
        rgba(255, 204, 102, 0.25) 8px
    );
}

/* Terminal Header */
.terminal-header {
    background: #001100;
    border-bottom: 6px solid #00FF41;
    padding: 18px 32px;
}

body.amber-mode .terminal-header {
    background: #3c2a10;
    border-bottom: 6px solid #ffaa33;
    color: #ffdd88;
}