:root {
    --aero-blue: #0084ff;
    --jsr-orange: #ff6600;
    --jsr-yellow: #fff000;
    --jsr-green: #22ff00;
    --terminal-black: #050a10;
}

* { margin: 0; padding: 0; box-sizing: border-box; cursor: crosshair; }

html { height: 100%; }

body {
    background-color: var(--terminal-black);
    background-image: radial-gradient(rgba(0, 132, 255, 0.15) 1px, transparent 0);
    background-size: 30px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100%;
    font-family: 'Courier New', Courier, monospace;
    overflow-x: hidden;
    overflow-y: auto;
    color: #fff;
    padding-bottom: 60px;
}

/* --- Terminal Effects --- */
.scanlines {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.1) 50%), 
                linear-gradient(90deg, rgba(255, 0, 0, 0.03), rgba(0, 255, 0, 0.01), rgba(0, 0, 255, 0.03));
    background-size: 100% 3px, 3px 100%;
    pointer-events: none; z-index: 100;
}

.vignette {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle, transparent 50%, rgba(0,0,0,0.8) 150%);
    pointer-events: none; z-index: 99;
}

/* --- Character --- */
.character-anchor {
    position: absolute;
    top: 350px;
    left: 50%;
    transform: translate(-50%, -100%);
    z-index: 1;
    pointer-events: none;
}

.floating-figure {
    width: 320px; 
    height: auto;
    filter: drop-shadow(0 0 15px var(--aero-blue));
    animation: characterFloat 4s ease-in-out infinite;
}

@keyframes characterFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* --- Main Console --- */
.main-console {
    margin-top: 320px;
    width: 850px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 40px;
    padding: 35px;
    box-shadow: 0 0 50px rgba(0, 132, 255, 0.3), inset 0 0 20px rgba(255,255,255,0.1);
    position: relative;
    z-index: 10;
    text-align: center;
}

.terminal-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--aero-blue);
    border-bottom: 1px solid rgba(0, 132, 255, 0.3);
    padding-bottom: 12px;
    margin-bottom: 25px;
}

.status-led {
    width: 10px; height: 10px;
    background: var(--jsr-green);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--jsr-green);
}

.jsr-logo {
    font-size: 5.5rem;
    font-family: 'Arial Black', sans-serif;
    font-style: italic;
    font-weight: 900;
    color: var(--jsr-yellow);
    -webkit-text-stroke: 2px #000;
    text-shadow: 6px 6px 0px var(--jsr-orange), 10px 10px 25px rgba(0,0,0,0.6);
    transform: skew(-12deg);
    margin: 30px 0;
    letter-spacing: -4px;
}

/* --- Buttons --- */
.button-grid {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 35px 0;
}

.nav-btn {
    text-decoration: none;
    font-weight: 900;
    color: #000;
    padding: 18px 30px;
    position: relative;
    transition: 0.2s ease;
    clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
}

.btn-blue { background: linear-gradient(to bottom, #fff 0%, var(--aero-blue) 100%); }
.btn-orange { background: linear-gradient(to bottom, #fff 0%, var(--jsr-orange) 100%); }
.btn-green { background: linear-gradient(to bottom, #fff 0%, var(--jsr-green) 100%); }

.nav-btn:hover {
    transform: scale(1.1) translateY(-5px);
    filter: brightness(1.2);
}

/* --- Data Module --- */
.data-module {
    background: rgba(0, 0, 0, 0.85);
    border: 1.5px solid var(--aero-blue);
    border-radius: 12px;
    overflow: hidden;
    text-align: left;
}

.module-bar {
    background: var(--aero-blue);
    color: #000;
    font-size: 0.75rem;
    font-weight: 900;
    padding: 6px 15px;
}

.module-content {
    padding: 18px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.highlight-text {
    color: var(--jsr-green);
    text-shadow: 0 0 12px var(--jsr-green);
}

.blink { animation: blinker 0.8s linear infinite; }
@keyframes blinker { 50% { opacity: 0; } }

.glass-orb {
    width: 80px; height: 80px;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.9), var(--aero-blue));
    border-radius: 50%;
    position: absolute;
    top: -30px; right: 60px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    opacity: 0.7;
    pointer-events: none;
}