/* ==========================================================================
   RetroLens - Clean Camera View (Tanpa Tombol & Bingkai)
   ========================================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
    -webkit-user-select: none;
}

body, html {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #000000;
}

#app-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000000;
}

/* Hidden raw video element */
#webcam-video {
    display: none;
}

/* Fullscreen clean output canvas */
#output-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Camera Flash Snapshot Effect */
#camera-flash {
    position: fixed;
    inset: 0;
    background-color: #ffffff;
    opacity: 0;
    pointer-events: none;
    z-index: 999;
    transition: opacity 0.08s ease-out;
}

#camera-flash.flash {
    opacity: 0.85;
    transition: opacity 0.4s ease-out;
}
