html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background: #000;
    overflow: hidden;
    font-family: "Azeret Mono", monospace;
}

#stage {
    position: relative;
    width: 100vw;
    height: 100vh;
    background: #000;
}

#video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scaleX(-1);
    opacity: 0.9;
}

/* hidden canvas used only for MediaPipe processing (not shown) */
#hiddenCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scaleX(-1);
    pointer-events: none;
    z-index: 3;
}

#label {
    position: absolute;
    top: 24px;
    left: 24px;
    color: #fff;
    font-family: "Azeret Mono", monospace;
    font-size: 18px;
    letter-spacing: 1px;
    z-index: 5;
}

#percent {
    position: absolute;
    bottom: 24px;
    right: 32px;
    color: #fff;
    font-size: 40vh;
    font-family: "Azeret Mono", monospace;
    font-weight: 400;
    line-height: 1;
    z-index: 5;
}

#status {
    position: absolute;
    bottom: 24px;
    left: 24px;
    color: #666;
    font-size: 14px;
    z-index: 5;
}