﻿/* ---- GLOBAL CYBERPUNK UI THEME ---- */

body {
    background: #000;
    color: #00ff88;
    font-family: 'Courier New', monospace;
    margin: 0;
    padding: 0;
}

/* Glowing neon frame */
.cyber-frame {
    width: 100%;
    max-width: 550px;
    margin: 6vh auto;
    padding: 40px;
    border: 2px solid #00ff88;
    background: rgba(0, 0, 0, 0.85);
    box-shadow: 0 0 20px #00ff88, inset 0 0 15px #003300;
}

/* Header */
.cyber-title {
    font-size: 3rem;
    text-align: center;
    color: #00ff88;
    text-shadow: 0 0 12px #00ff88;
    margin-bottom: 20px;
}

/* Subheader */
.cyber-subtitle {
    color: #c0ffc0;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 25px;
}

/* Inputs */
.cyber-input {
    width: 100%;
    padding: 14px;
    margin-bottom: 18px;
    border: 2px solid #00ff88;
    background: #000;
    color: #00ff88;
    font-size: 1.2rem;
    outline: none;
}

    .cyber-input:focus {
        box-shadow: 0 0 12px #00ff88;
    }

/* Button */
.cyber-btn {
    width: 100%;
    padding: 14px;
    background: #00ff88;
    color: #000;
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0 0 10px #00ff88;
}

    .cyber-btn:hover {
        background: #00ffaa;
        box-shadow: 0 0 20px #00ffaa;
    }

/* Links */
.cyber-link {
    color: #00ff88;
    text-align: center;
    display: block;
    margin-top: 20px;
    font-size: 1.1rem;
}

    .cyber-link:hover {
        text-shadow: 0 0 10px #00ff88;
    }

/* Backdrop scanlines */
.cyber-scanlines {
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    opacity: 0.15;
    background: repeating-linear-gradient( 0deg, rgba(0,255,128,0.04), rgba(0,255,128,0.04) 1px, transparent 1px, transparent 3px );
    z-index: -1;
}


#statsHud {
    position: fixed;
    right: 10px;
    top: 120px;
    background: rgba(0,0,0,0.85);
    border: 1px solid #0f0;
    padding: 8px;
    font-family: monospace;
    font-size: 12px;
}
