/* static/app.css */
.glass-panel {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.section {
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 50px;
}

.section.active {
    opacity: 1;
    pointer-events: auto;
    position: relative;
    top: 0;
}

audio {
    filter: invert(0.8) hue-rotate(180deg) opacity(0.8);
    width: 100%;
}
