/* AutoCrate styles */
@font-face {
    font-family: 'JustSans';
    src: url('/fonts/webfonts/JustSans-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'JustSans';
    src: url('/fonts/webfonts/JustSans-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

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

body {
    background: #0a0a0f;
    color: #ecf0f1;
    overflow: hidden;
}

#canvas {
    display: block;
    touch-action: none;
}

/* Input panel (for future UI) */
.input-panel {
    position: fixed;
    top: 60px;
    left: 20px;
    background: rgba(20, 20, 30, 0.9);
    border: 1px solid #2c3e50;
    border-radius: 8px;
    padding: 16px;
    width: 280px;
}

.input-group {
    margin-bottom: 12px;
}

.input-group label {
    display: block;
    color: #95a5a6;
    font-size: 12px;
    margin-bottom: 4px;
}

.input-group input {
    width: 100%;
    padding: 8px;
    border: 1px solid #34495e;
    border-radius: 4px;
    background: #1a1a2e;
    color: #ecf0f1;
    font-size: 14px;
}

.input-group input:focus {
    outline: none;
    border-color: #3498db;
}

button.generate {
    width: 100%;
    padding: 12px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s;
}

button.generate:hover {
    background: #2980b9;
}
