@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');

body {
    font-family: 'Orbitron', sans-serif;
    background: #0c0c0c;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

h1 {
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff;
}

#controls {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

button, input[type="file"] {
    background: #111;
    border: 1px solid #00ffff;
    color: #00ffff;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: bold;
    box-shadow: 0 0 5px #00ffff;
    transition: 0.2s;
}

button:hover, input[type="file"]:hover {
    box-shadow: 0 0 20px #00ffff;
    border-color: #00ffff;
}

#workspace {
    display: flex;
    gap: 20px;
}

#frames-section, #preview-section {
    background: #111;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 0 20px #00ffff44;
}

#frames-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 400px;
    overflow-y: auto;
}

.frame-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #222;
    padding: 5px;
    border-radius: 6px;
    border: 1px solid #00ffff55;
    cursor: grab;
}

.frame-item.dragging {
    opacity: 0.5;
}

.frame-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border: 1px solid #00ffff;
}

.frame-item input {
    width: 60px;
    background: #111;
    border: 1px solid #00ffff;
    color: #00ffff;
    border-radius: 4px;
    padding: 2px 5px;
}
