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

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    overflow: hidden;
    position: relative;
}

#container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.camera-instructions {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    z-index: 50;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: opacity 0.3s ease;
}

.camera-instructions p {
    margin: 0;
}

/* Hide instructions on smaller screens */
@media (max-width: 768px) {
    .camera-instructions {
        display: none;
    }
}

#controls {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    z-index: 100;
    width: 300px;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

#controls h1 {
    color: #2a5298;
    font-size: 1.5em;
    margin-bottom: 10px;
    text-align: center;
}

#controls p {
    color: #666;
    font-size: 0.9em;
    margin-bottom: 20px;
    text-align: center;
}

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

.btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    margin: 3px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    width: calc(50% - 6px);
    text-align: center;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.btn:active {
    transform: translateY(0);
}

label {
    color: #333;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
}

#speedRange {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: #ddd;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

#speedRange::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

#speedRange::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.info {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.info h3 {
    color: #2a5298;
    font-size: 1.1em;
    margin-bottom: 10px;
}

.info ul {
    list-style: none;
    padding: 0;
}

.info li {
    color: #666;
    font-size: 0.85em;
    margin-bottom: 8px;
    padding-left: 10px;
    position: relative;
}

.info li:before {
    content: "•";
    color: #667eea;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.info strong {
    color: #333;
}

.links {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    text-align: center;
}

.links a {
    display: block;
    color: #667eea;
    text-decoration: none;
    font-size: 0.9em;
    margin: 8px 0;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.links a:hover {
    background: rgba(102, 126, 234, 0.1);
    color: #764ba2;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    #controls {
        position: fixed;
        top: auto;
        bottom: 20px;
        right: 20px;
        left: 20px;
        width: auto;
        max-height: 40vh;
    }
    
    #controls h1 {
        font-size: 1.2em;
    }
    
    .btn {
        width: 100%;
        margin: 3px 0;
    }
}

@media (max-width: 480px) {
    #controls {
        bottom: 10px;
        right: 10px;
        left: 10px;
        padding: 15px;
    }
    
    .info {
        display: none;
    }
}

/* Custom scrollbar for controls panel */
#controls::-webkit-scrollbar {
    width: 6px;
}

#controls::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 3px;
}

#controls::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 3px;
}

#controls::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

/*# sourceMappingURL=main.1d53757661c7f00c8569.css.map*/