:root {
    --ps2-blue: #000511;
    --ps2-neon: #00F2FF;
    --ps2-dark-blue: #001a33;
}

body.ps2-theme {
    background: radial-gradient(circle, var(--ps2-dark-blue) 0%, var(--ps2-blue) 100%);
    color: var(--ps2-neon);
    overflow-x: hidden;
}

.bios-font {
    font-family: 'VT323', monospace;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Custom PS2 Elements */
.ps2-card {
    background: rgba(0, 242, 255, 0.05);
    border: 1px solid var(--ps2-neon);
    color: white;
    transition: all 0.3s ease;
}

.ps2-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--ps2-neon);
    color: var(--ps2-neon);
}

.ps2-input:focus {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: #fff;
    box-shadow: 0 0 10px var(--ps2-neon);
}

.btn-cyan {
    background-color: var(--ps2-neon);
    color: #000;
    font-weight: bold;
}

.btn-outline-cyan {
    border-color: var(--ps2-neon);
    color: var(--ps2-neon);
}

.text-glow {
    text-shadow: 0 0 10px var(--ps2-neon), 0 0 20px var(--ps2-neon);
}

/* Scanline Effect Layer */
.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: 9999;
}
/* Fix for the white Dropdown/Select box */
.ps2-input, .custom-select {
    background-color: #000511 !important; /* Force dark background */
    border: 1px solid #00F2FF !important;
    color: #00F2FF !important;
}

/* This fixes the options inside the dropdown for Chrome/Safari/Firefox */
.custom-select option {
    background-color: #000511;
    color: #00F2FF;
}

/* Fix for the hover/focus state of the dropdown */
.form-select:focus {
    border-color: #fff !important;
    box-shadow: 0 0 10px #00F2FF !important;
    background-color: #000511 !important;
}

/* Ensure placeholder text isn't too dark */
.ps2-input::placeholder {
    color: rgba(0, 242, 255, 0.5);
}

/* Style for the revealed email links */
.email-obf a:hover {
    color: #fff !important;
    text-shadow: 0 0 5px #00F2FF;
}