@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');

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

:root {
    --amber: #ffb000;
    --amber-glow: #ffd700;
    --bg: #040300;
}

body {
    min-height: 100vh;
    min-width: 100vw;
    background: var(--bg);
    font-family: 'Share Tech Mono', monospace;
    color: var(--amber);
    overflow: hidden;
    position: relative;
}

#audioWaveform {
    position: absolute;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at center, rgba(255, 176, 0, 0.08), transparent 65%),
                linear-gradient(rgba(255, 176, 0, 0.05), rgba(0, 0, 0, 0.8));
    box-shadow: inset 0 0 120px rgba(0, 0, 0, 0.9);
}

body::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(rgba(255, 176, 0, 0.05) 50%, transparent 50%);
    background-size: 100% 3px;
    opacity: 0.35;
    animation: scanlines 6s linear infinite;
    z-index: 2;
}

body::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.1), transparent 60%);
    mix-blend-mode: screen;
    opacity: 0.2;
    z-index: 1;
}

#statusOverlay {
    position: absolute;
    top: 30px;
    left: 40px;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: rgba(4, 3, 0, 0.65);
    padding: 10px 16px;
    border: 1px solid rgba(255, 176, 0, 0.4);
    box-shadow: 0 0 20px rgba(255, 176, 0, 0.2);
    z-index: 3;
    transition: opacity 0.6s ease;
}

#statusOverlay.hidden {
    opacity: 0;
    pointer-events: none;
}

@keyframes scanlines {
    0% { transform: translateY(0); }
    100% { transform: translateY(3px); }
}
