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

body {
    background: #000;
    overflow: hidden;
    cursor: none;
    font-family: monospace;
    width: 100vw;
    height: 100vh;
}

#scene-container {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
}

#scene-container canvas {
    display: block;
}

#hud {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

#hud-left {
    position: absolute;
    top: 20px;
    left: 20px;
    color: rgba(136, 238, 255, 0.8);
    font-family: monospace;
    font-size: 20px;
    letter-spacing: 3px;
    text-shadow: 0 0 10px rgba(136, 238, 255, 0.5), 0 0 20px rgba(136, 238, 255, 0.2);
}

#hud-right {
    position: absolute;
    top: 20px;
    right: 20px;
    color: rgba(136, 238, 255, 0.8);
    font-family: monospace;
    font-size: 20px;
    letter-spacing: 3px;
    text-shadow: 0 0 10px rgba(136, 238, 255, 0.5), 0 0 20px rgba(136, 238, 255, 0.2);
}

#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 20;
    background: transparent;
    transition: background 0.5s ease;
}

#overlay.fade-black {
    background: #000;
}

#postfx {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
    mix-blend-mode: screen;
    opacity: 0;
    background: radial-gradient(ellipse at center, rgba(100, 150, 255, 0.15) 0%, transparent 70%);
    transition: opacity 0.1s;
}

#chromab {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 6;
    opacity: 0;
}

#footer-link {
    position: fixed;
    bottom: 8px;
    right: 12px;
    z-index: 100;
    opacity: 0.25;
    transition: opacity 0.3s;
}

#footer-link:hover {
    opacity: 0.6;
}

#footer-link a {
    color: #88ccff;
    text-decoration: none;
    font-family: monospace;
    font-size: 11px;
    letter-spacing: 1px;
}