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

body {
    background: #000;
    overflow: hidden;
    height: 100vh;
    width: 100vw;
    font-family: "Helvetica Neue", Arial, sans-serif;
}

canvas {
    display: block;
    width: 100%;
    height: 100%;
}

/* Lock Screen Styles */
#lock-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.lock-content {
    text-align: center;
    color: white;
}

.lock-content h2 {
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 2px;
}

#password-input {
    padding: 10px 15px;
    background: transparent;
    border: 1px solid #333;
    border-radius: 4px;
    color: white;
    font-size: 16px;
    outline: none;
    margin-right: 10px;
}

#password-input:focus {
    border-color: #666;
}

#unlock-btn {
    padding: 10px 20px;
    background: white;
    color: black;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
}

#unlock-btn:hover {
    background: #ddd;
}

#error-msg {
    color: #ff4444;
    margin-top: 1rem;
    font-size: 14px;
    height: 20px;
}

/* Control Panel */
.controls-container {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 15px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 100;
    color: white;
    width: 200px;
}

.control-group {
    margin-bottom: 10px;
}

.control-group:last-child {
    margin-bottom: 0;
}

.control-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #aaa;
}

.control-group input[type="range"] {
    width: 100%;
    cursor: pointer;
    accent-color: white;
}