* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'CyberBrush', 'Rajdhani', sans-serif;
    background-color: #000;
    color: #e0e0e0;
    min-height: 100vh;
    overflow: hidden;
    position: relative;
}

:root {
    --logo-fade-speed: 6s;
}

#logo {
    position: fixed;
    top: -2rem;
    right: 0rem;
    height: 200px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    z-index: 4;
    pointer-events: none;
    opacity: .5;
    /* Remove animation for manual opacity control */
}

/* Thick scanline bar */
#scanbar {
    position: fixed;
    left: 0;
    width: 100%;
    height: 80px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 60px 20px rgba(255, 255, 255, 0.03);
    pointer-events: none;
    z-index: 3;
}

main {
    text-align: center;
    padding: 2rem;
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'DigitalGlitch', 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

p {
    font-family: 'CyberBrush', 'Orbitron', sans-serif;
    font-size: 1.25rem;
    color: #888;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* === Custom Fonts === */
@font-face {
    font-family: 'CyberBrush';
    src: url('fonts/CyberBrush-MAA2x.ttf') format('truetype');
    font-display: swap;
}
@font-face {
    font-family: 'DigitalGlitch';
    src: url('fonts/DigitalGlitchDemoRegular-8MleD.ttf') format('truetype'),
         url('fonts/DigitalGlitchDemoRegular-BW2GV.otf') format('opentype');
    font-display: swap;
}

/* === Font Utility Classes === */
.font-cyberbrush { font-family: 'CyberBrush', sans-serif !important; }
.font-digitalglitch { font-family: 'DigitalGlitch', sans-serif !important; }
.font-glitchcode { font-family: 'GlitchCode', sans-serif !important; }
