:root {
    --bg: #000;
    --accent: #3b82f6;
    --success: #10b981;
}

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg);
    color: white;
    font-family: 'Outfit', sans-serif;
    overflow: hidden;
}

.camera-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    background: #000;
}

#video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#overlay-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

#debug-panel {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 255, 0, 0.3);
    color: #0f0;
    padding: 15px;
    border-radius: 12px;
    font-family: monospace;
    font-size: 12px;
    width: 250px;
    z-index: 10;
}

#debug-logs {
    max-height: 200px;
    overflow-y: auto;
    margin-top: 10px;
    font-size: 10px;
}

#debug-logs div {
    margin-bottom: 4px;
    border-bottom: 1px solid rgba(0, 255, 0, 0.1);
    padding-bottom: 2px;
}

.raw-controls {
    position: absolute;
    bottom: 40px;
    right: 20px;
    z-index: 10;
}

.btn-circular {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}