.pvatf-player {
    background: linear-gradient(135deg, #2c1810 0%, #4a2818 100%);
    border-radius: 14px;
    padding: 18px 22px;
    margin: 0 0 28px;
    box-shadow: 0 4px 16px rgba(44, 24, 16, 0.25);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.pvatf-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.pvatf-btn {
    background: #c89b4a;
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.2s;
    font-family: inherit;
}

.pvatf-btn:hover {
    background: #b58a3d;
    transform: translateY(-1px);
}

.pvatf-btn-play {
    min-width: 140px;
    justify-content: center;
}

.pvatf-btn.pvatf-playing {
    background: #ef4444;
}

.pvatf-btn.pvatf-playing:hover {
    background: #dc2626;
}

.pvatf-btn-stop {
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 14px;
    font-size: 12px;
}

.pvatf-btn-stop:hover {
    background: rgba(255, 255, 255, 0.25);
}

.pvatf-progress-wrap {
    flex: 1;
    min-width: 160px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pvatf-progress {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    overflow: hidden;
}

.pvatf-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #c89b4a, #e0b76a);
    width: 0%;
    border-radius: 4px;
    transition: width 0.3s;
}

.pvatf-progress-text {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    min-width: 38px;
    text-align: right;
}

.pvatf-speed,
.pvatf-voice {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    font-family: inherit;
}

.pvatf-speed option,
.pvatf-voice option {
    background: #2c1810;
    color: #fff;
}

.pvatf-voice {
    max-width: 180px;
}

.pvatf-status {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Highlight do paragrafo sendo lido */
.pvatf-reading {
    background: linear-gradient(120deg, #fff8e8 0%, #fffbf3 100%);
    border-left: 4px solid #c89b4a;
    padding: 14px 18px !important;
    border-radius: 0 8px 8px 0;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(200, 155, 74, 0.15);
}

@media (max-width: 640px) {
    .pvatf-controls { gap: 8px; }
    .pvatf-progress-wrap { order: 99; width: 100%; }
    .pvatf-voice { max-width: 100%; flex: 1; }
}