#vrf-player {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-radius: 14px;
    padding: 18px 20px;
    margin-bottom: 26px;
    font-family: 'Segoe UI', sans-serif;
    max-width: 580px;
    color: #fff;
    box-shadow: 0 4px 24px rgba(0,0,0,0.35);
}
#vrf-header { font-size: 15px; font-weight: bold; color: #e0e0e0; margin-bottom: 2px; }
#vrf-credit { font-size: 11px; color: #777; margin-bottom: 14px; }
#vrf-credit a { color: #e94560; text-decoration: none; }
#vrf-credit a:hover { text-decoration: underline; }

.vrf-label { font-size: 11px; color: #aaa; margin-bottom: 7px; text-transform: uppercase; letter-spacing: 0.5px; }

#vrf-voice-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 6px; margin-bottom: 14px; }
.vrf-voice-btn {
    padding: 8px 4px;
    border: 1px solid #2a2a4a;
    border-radius: 8px;
    background: #0f3460;
    color: #bbb;
    cursor: pointer;
    font-size: 11px;
    text-align: center;
    transition: all 0.2s;
    line-height: 1.4;
}
.vrf-voice-btn:hover { background: #1a4a80; color: #fff; }
.vrf-voice-btn.active { background: #e94560; border-color: #e94560; color: #fff; }

#vrf-controls { display: flex; gap: 8px; margin-bottom: 14px; }
#vrf-controls button { padding: 9px 20px; border: none; border-radius: 7px; cursor: pointer; font-size: 13px; font-weight: bold; transition: opacity 0.2s; }
#vrf-play   { background: #2ecc71; color: #fff; }
#vrf-pause  { background: #f39c12; color: #fff; }
#vrf-stop   { background: #e74c3c; color: #fff; }
button:disabled { opacity: 0.35; cursor: not-allowed; }

#vrf-sliders { display: flex; gap: 14px; flex-wrap: wrap; font-size: 12px; color: #aaa; margin-bottom: 12px; }
#vrf-sliders label { display: flex; align-items: center; gap: 6px; flex-direction: column; text-align: center; font-size: 11px; text-transform: uppercase; letter-spacing: 0.4px; }
#vrf-sliders input[type=range] { width: 80px; accent-color: #e94560; cursor: pointer; }
#vrf-sliders span { color: #fff; font-size: 12px; font-weight: bold; }

#vrf-status { font-size: 12px; color: #888; margin-bottom: 8px; min-height: 16px; }
#vrf-bar { background: #2a2a4a; border-radius: 4px; height: 5px; overflow: hidden; }
#vrf-fill { background: #e94560; height: 100%; width: 0%; transition: width 0.5s ease; }
