@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;500;700&family=JetBrains+Mono:wght@300;700&display=swap');

:root {
    --accent: #00f2ff;
    --bg: #050505;
}

body {
    background-color: var(--bg);
    color: #ffffff;
    overflow: hidden;
    font-family: 'Space Grotesk', sans-serif;
    margin: 0;
    user-select: none;
}

#canvas-container {
    position: absolute;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    z-index: 0;
    filter: contrast(1.2) saturate(1.3);
}

.glass-ui {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.8);
}

.neo-button {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.neo-button:hover {
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.3);
    transform: translateY(-1px);
}

.neo-button:active { transform: scale(0.95); }

::-webkit-scrollbar { display: none; }

.scanline {
    width: 100%; height: 100px; z-index: 5;
    background: linear-gradient(0deg, rgba(0,0,0,0) 0%, rgba(255,255,255,0.02) 50%, rgba(0,0,0,0) 100%);
    opacity: 0.15; position: absolute; pointer-events: none;
    animation: scan 6s linear infinite;
}

@keyframes scan {
    from { top: -100px; }
    to { top: 100vh; }
}

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

.pointer-events-auto { pointer-events: auto; }
