:root {
    --bg: #0b1220;
    --surface: #14213d;
    --panel: #1b2a4b;
    --panel-2: #24375f;
    --border: #2f4a7a;
    --text: #e6eefc;
    --muted: #9ab0d6;
    --accent: #4fa3ff;
    --accent-hover: #6ab3ff;
}

* {
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
}

h1, h2, h3, h4 {
    color: var(--accent);
}

button,
.file-input-label {
    background: var(--accent);
    color: var(--bg);
    border: 1px solid transparent;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.2s ease, transform 0.2s ease;
}

button:hover,
.file-input-label:hover {
    background: var(--accent-hover);
}

input,
select {
    background: var(--panel-2);
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: 6px;
}

input[type="range"] {
    accent-color: var(--accent);
}
