/* ── F-One Voice Mixer — Additional Styles ───────────────────────────────── */

.fone-mix-wrap {
    max-width: 740px;
    margin: 0 auto;
    padding: 32px 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #ffffff;
}

/* Header */
.fone-mix-header { text-align: center; margin-bottom: 36px; }
.fone-mix-title  { font-size: 28px; font-weight: 800; margin: 0 0 8px; color: #ffffff; }
.fone-mix-subtitle { color: #888aa0; font-size: 15px; margin: 0; }

/* Steps */
.fone-mix-step {
    background: #1a1a2e;
    border: 1px solid #2a2a45;
    border-radius: 10px;
    padding: 24px;
    margin-bottom: 20px;
}
.fone-mix-step-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}
.fone-mix-step-num {
    width: 32px;
    height: 32px;
    background: #e8a020;
    color: #0d0d1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 800;
    flex-shrink: 0;
}

/* Drop zones */
.fone-mix-dropzone {
    border: 2px dashed #2a2a45;
    border-radius: 10px;
    padding: 36px 24px;
    text-align: center;
    cursor: pointer;
    transition: border-color .2s, background .2s;
    margin-bottom: 12px;
}
.fone-mix-dropzone:hover,
.fone-mix-dropzone.dragover {
    border-color: #e8a020;
    background: rgba(232,160,32,.06);
}
.fone-mix-drop-icon { font-size: 36px; margin-bottom: 10px; }
.fone-mix-drop-text { font-size: 16px; font-weight: 600; margin: 0 0 4px; }
.fone-mix-drop-sub  { font-size: 12px; color: #888aa0; margin: 0 0 16px; }

/* File bar */
.fone-mix-file-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(232,160,32,.08);
    border: 1px solid rgba(232,160,32,.25);
    border-radius: 8px;
    padding: 10px 14px;
    margin-bottom: 12px;
    font-size: 13px;
}
.fone-mix-file-name { color: #e8a020; font-weight: 600; }

/* Toggle upload/record */
.fone-mix-toggle {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}
.fone-mix-toggle-btn {
    flex: 1;
    padding: 10px;
    background: #0d0d1a;
    border: 1px solid #2a2a45;
    border-radius: 8px;
    color: #888aa0;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
}
.fone-mix-toggle-btn.active {
    background: #e8a020;
    border-color: #e8a020;
    color: #0d0d1a;
}

/* Recorder */
.fone-mix-recorder { text-align: center; }
.fone-mix-recorder-vis {
    background: #0d0d1a;
    border: 1px solid #2a2a45;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 16px;
    overflow: hidden;
}
#fone-mix-waveform { width: 100%; height: 80px; display: block; }
.fone-mix-recorder-controls { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.fone-mix-rec-timer {
    font-size: 18px;
    font-weight: 700;
    color: #e8a020;
    margin-top: 12px;
}

/* Volume sliders */
.fone-mix-preview { margin-top: 12px; }
.fone-mix-vol-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #888aa0;
    margin-bottom: 6px;
}
.fone-mix-slider {
    width: calc(100% - 60px);
    accent-color: #e8a020;
    vertical-align: middle;
}
.fone-mix-vol-val {
    display: inline-block;
    width: 50px;
    text-align: right;
    font-size: 13px;
    color: #e8a020;
    font-weight: 700;
}
.fone-mix-audio {
    width: 100%;
    margin-top: 10px;
}

/* Progress */
.fone-mix-progress {
    text-align: center;
    padding: 40px 20px;
    background: #1a1a2e;
    border-radius: 10px;
    margin-bottom: 16px;
}
#fone-mix-progress-msg { color: #888aa0; font-size: 15px; margin: 0; }

/* Result */
.fone-mix-result { margin-top: 8px; }
