/* ============================================
   VOCAL TRAINER — Ses Eğitimi
   ============================================ */

.vocal-page {
    max-width: 700px;
    margin: 0 auto;
    padding: var(--space-4);
}

.vocal-header {
    text-align: center;
    margin-bottom: var(--space-4);
}

.vocal-title {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-1);
}

.vocal-subtitle {
    font-size: var(--text-sm);
}

/* Controls */
.vocal-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    padding: var(--space-4);
    margin-bottom: var(--space-4);
    flex-wrap: wrap;
}

.vocal-control-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-1);
}

.vocal-select {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    color: var(--text-primary);
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: var(--text-sm);
}

/* Gauge */
.vocal-gauge-wrap {
    padding: var(--space-5);
    margin-bottom: var(--space-4);
    text-align: center;
}

.vocal-target {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: var(--space-3);
}

.vocal-target__label {
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
}

.vocal-target__name {
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--gold-400, var(--accent-primary));
    font-family: var(--font-display);
}

.vocal-target__freq {
    font-size: var(--text-sm);
    font-family: var(--font-mono);
}

.vocal-gauge {
    width: 100%;
    max-width: 400px;
    height: 200px;
    margin: 0 auto;
    display: block;
}

.vocal-detected {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: var(--space-3);
}

.vocal-detected__label {
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
}

.vocal-detected__freq {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--text-primary);
    font-family: var(--font-mono);
}

.vocal-detected__diff {
    font-size: var(--text-sm);
    font-family: var(--font-mono);
    transition: color 0.2s;
}

/* Dizi progress */
.vocal-dizi {
    padding: var(--space-4);
    margin-bottom: var(--space-4);
    overflow-x: auto;
}

.vocal-dizi__perdes {
    display: flex;
    align-items: center;
    gap: var(--space-1);
    flex-wrap: wrap;
    justify-content: center;
    font-size: var(--text-sm);
}

.vocal-dizi__perde {
    padding: var(--space-1) var(--space-2);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.15s;
    color: var(--text-secondary);
}

.vocal-dizi__perde:hover {
    background: rgba(255, 255, 255, 0.05);
}

.vocal-dizi__perde--active {
    background: rgba(201, 168, 76, 0.15);
    color: var(--accent-primary);
    font-weight: 600;
    border: 1px solid rgba(201, 168, 76, 0.3);
}

.vocal-dizi__perde--done {
    color: var(--success);
    opacity: 0.6;
}

/* Score */
.vocal-score {
    display: flex;
    justify-content: center;
    gap: var(--space-8);
    padding: var(--space-4);
    margin-bottom: var(--space-4);
}

.vocal-score__item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.vocal-score__value {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--text-primary);
}

.vocal-score__label {
    font-size: var(--text-xs);
    color: var(--text-muted);
    text-transform: uppercase;
}

/* Actions */
.vocal-actions {
    display: flex;
    gap: var(--space-2);
    justify-content: center;
    flex-wrap: wrap;
}

/* Mobile */
@media (max-width: 768px) {
    .vocal-page {
        padding: var(--space-2);
    }

    .vocal-controls {
        gap: var(--space-2);
    }

    .vocal-score {
        gap: var(--space-4);
    }
}