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

body {
    overflow: hidden;
    background-color: #050505;
    font-family: 'Inter', sans-serif;
}

#canvas-container {
    width: 100vw;
    height: 100vh;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

/* Webcam feed - hidden by default or small preview */
#webcam {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 200px;
    height: auto;
    border-radius: 10px;
    opacity: 0.5;
    z-index: 2;
    transform: scaleX(-1);
    /* Mirror effect */
    border: 1px solid #333;
    display: block;
    /* Visible so user knows camera is on */
}