/* ==========================================================================
Rádio
========================================================================== */



.hv-player{
    width:200px;
    background:#fff;
    border:1px solid #eceff3;
    border-radius:18px;
    padding:14px;
    box-shadow:0 6px 18px rgba(0,0,0,.06);
    font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
}

.hv-live{
    display:flex;
    align-items:center;
    gap:6px;
    font-size:11px;
    font-weight:700;
    color:#ff375f;
    letter-spacing:.7px;
}

.hv-dot{
    width:7px;
    height:7px;
    background:#ff375f;
    border-radius:50%;
    animation:hvPulse 1.2s infinite;
}

@keyframes hvPulse{
    0%{opacity:1}
    50%{opacity:.35}
    100%{opacity:1}
}

.hv-song{
    font-size:14px;
    font-weight:600;
    line-height:1.4;
    min-height:38px;
    color:#222;
    margin-bottom:6px;
}

.hv-song2{
    font-size:16px;
    font-weight:600;
    color:#222;
    margin-bottom:6px;
}


.hv-tit{
    font-size:13px;
    font-weight:500;
    line-height:1.4;
    min-height:38px;
    color:#222;
    margin-bottom:6px;
}

.hv-controls{
    display:flex;
    align-items:center;
    gap:10px;
}

/* PLAY BUTTON */

.hv-play{
    -webkit-appearance:none;
    appearance:none;

    width:42px;
    height:42px;
    padding:0;
    margin:0;
    border:none;
    outline:none;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;
    background:linear-gradient(
        135deg,
        #20c2ff,
        #00b3f2
    );
    color:#fff;
    font-size:18px;
    font-weight:600;
    line-height:1;
    cursor:pointer;
    flex-shrink:0;

    box-shadow:
        0 4px 12px rgba(44,197,192,.22);

    transition:.15s;

    -webkit-tap-highlight-color:transparent;
}

.hv-play:hover{
    transform:translateY(-1px);
}

.hv-play:active{
    transform:scale(.95);
}

.hv-play:focus{
    outline:none;
}


.hv-play.playing{
    background:linear-gradient(
        135deg,
        #d96b9a,
        #c85688
    );

    box-shadow:
        0 4px 12px rgba(201,86,136,.28);
}


/* VOLUME */

.hv-volume{
    -webkit-appearance:none;
    appearance:none;
    width:100%;
    height:5px;
    background:#e6eaf0;
    border-radius:999px;
    outline:none;
}

/* Chrome / Safari */

.hv-volume::-webkit-slider-thumb{
    -webkit-appearance:none;
    width:14px;
    height:14px;
    border-radius:50%;
    background:#20c2ff;
    border:none;
    cursor:pointer;
    box-shadow:
        0 2px 6px rgba(0,0,0,.18);
}

/* Firefox */

.hv-volume::-moz-range-thumb{
    width:14px;
    height:14px;
    border:none;
    border-radius:50%;
    background:#20c2ff;
    cursor:pointer;
}

.hv-volume::-moz-range-track{
    height:5px;
    background:#e6eaf0;
    border-radius:999px;
}

.hv-top{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    margin-bottom:10px;
}

.hv-logo{
    width:60px;
    height:auto;
    display:block;
}


.hv-vol-wrap{
    display:flex;
    align-items:center;
    gap:7px;
    flex:1;
}

.hv-vol-icon{
    font-size:14px;
    line-height:1;
    opacity:.7;
    flex-shrink:0;
}




/* ==========================================================================
HV PLAYER ISOLATION
========================================================================== */

.hvzplayer,
.hvzplayer *{
    box-sizing:border-box;
}

.hvzplayer .file{
    background:#fafafa;
    padding:16px;
    margin-bottom:12px;
    border-radius:12px;
    display:flex;
    flex-direction:column;
    gap:12px;
}

.hvzplayer .file-actions{
    display:flex;
    gap:12px;
    align-items:center;
}

.hvzplayer .file strong{
    color:#000;
    font-size:18px;
    font-weight:bold;
}

.hvzplayer .small{
    font-size:18px;
    color:#000;
    line-height:1.4;
}

.hvzplayer .comment{
    color:#000;
    font-weight:normal;
}

.hvzplayer .duration,
.hvzplayer .time{
    color:#888;
}

.hvzplayer .icon-btn{
    width:44px !important;
    height:44px !important;
    min-width:44px;
    min-height:44px;

    display:flex !important;
    align-items:center !important;
    justify-content:center !important;

    border:none !important;
    border-radius:50% !important;
    text-decoration:none !important;

    cursor:pointer;
    font-size:18px !important;
    font-weight:bold !important;
    line-height:1 !important;

    padding:0 !important;
    margin:0 !important;

    box-shadow:0 3px 8px rgba(0,0,0,.12);
    transition:transform .15s ease, box-shadow .2s ease;
}

.hvzplayer .play-icon{
    background:#7fb8ff !important;
    color:#fff !important;
}

.hvzplayer .play-icon.playing{
    background:#ff9bb5 !important;
    color:#fff !important;
}

.hvzplayer .download-icon{
    background:#f2f2f2 !important;
    color:#444 !important;
}

.hvzplayer .link-icon{
    background:#f5ecff !important;
    color:#7b4fd6 !important;
}

.hvzplayer .icon-btn:hover{
    transform:translateY(-2px);
}

.hvzplayer .player-btn{
    width:64px !important;
    height:64px !important;

    display:flex !important;
    align-items:center !important;
    justify-content:center !important;

    border-radius:50% !important;
    border:none !important;

    padding:0 !important;
    margin:0 !important;

    appearance:none;
    -webkit-appearance:none;

    font-size:24px !important;
    line-height:1 !important;
    font-family:system-ui !important;

    background:#7fb8ff;
    color:#fff;
}

.hvzplayer .player-btn.is-playing{
    background:#ff9bb5 !important;
}

.hvzplayer a{
    text-decoration:none !important;
}

.hvzplayer button{
    font-family:inherit;
}




/* ==========================================================================
HV PLAYER TRACK FIX
========================================================================== */

.hvzplayer .file{
    display:flex !important;
    flex-direction:row !important;
    justify-content:space-between !important;
    align-items:center !important;
    gap:16px !important;

    text-align:left !important;
}

.hvzplayer .file > div:first-child{
    flex:1 1 auto !important;
    text-align:left !important;
}

.hvzplayer .file > div:last-child{
    flex:0 0 auto !important;
    text-align:right !important;
}

.hvzplayer .file-actions{
    display:flex !important;
    flex-direction:row !important;
    align-items:center !important;
    justify-content:flex-end !important;
    gap:12px !important;
    flex-wrap:nowrap !important;
}

.hvzplayer .file *,
.hvzplayer .file span,
.hvzplayer .file .small,
.hvzplayer .file .comment{
    text-align:left !important;
}

.hvzplayer .file .icon-btn{
    flex:0 0 44px !important;
}


/* ==========================================================================
HVZPLAYER FULL TYPO + UI RESET
========================================================================== */

.hvzplayer{
    font-family:Arial, Helvetica, sans-serif !important;
    font-size:16px !important;
    line-height:1.4 !important;
    color:#555 !important;
    text-align:left !important;
}

.hvzplayer h1{
    margin-top:0 !important;
    margin-bottom:18px !important;
    font-size:24px !important;
    font-weight:bold !important;
    line-height:1.2 !important;
    color:#000 !important;
    text-align:center !important;
}

.hvzplayer h2{
    font-size:24px !important;
    font-weight:bold !important;
    line-height:1.2 !important;
    color:#000 !important;
}

.hvzplayer a{
    color:#2980b9 !important;
    font-size:18px !important;
    font-weight:bold !important;
    text-decoration:none !important;
}

.hvzplayer button{
    border:none !important;
    font-family:inherit !important;
    line-height:1 !important;
    letter-spacing:normal !important;
    text-transform:none !important;
}

.hvzplayer .files{
    margin-top:30px !important;
}

.hvzplayer .player{
    position:relative;
background:#ffffff;
    padding:16px;
    border-radius:12px;
    margin-top:0;
    margin-bottom:10px;
    text-align:left !important;
box-shadow:0 6px 18px rgba(60,170,160,.12);
}

.hvzplayer .player .small{
    color:#888 !important;
}

.hvzplayer .player-bottom{
    display:flex !important;
    justify-content:center !important;
    align-items:center !important;
    gap:16px !important;
    margin-top:12px !important;
}

.hvzplayer .autoplay-toggle{
    display:flex !important;
    align-items:center !important;
    gap:10px !important;
    margin-top:14px !important;
    margin-left:0 !important;
    font-size:15px !important;
    color:#666 !important;
}

.hvzplayer .autoplay-toggle input{
    transform:scale(1.2);
}

.hvzplayer .day-separator{
    margin:30px 0 14px !important;
    padding-bottom:8px !important;
    font-size:22px !important;
    font-weight:bold !important;
    color:#555 !important;
    text-align:left !important;
}

.hvzplayer .file.active{
    background:#f2f7ff !important;
    border-left:4px solid #6ea8ff !important;
}

.hvzplayer .play-btn{
    width:180px;
    height:50px;

    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;

    background:linear-gradient(135deg,#2ecc71,#27ae60);
    color:#fff !important;

    border:none !important;
    border-radius:12px !important;

    font-size:16px !important;
    font-weight:bold !important;
    cursor:pointer;

    box-shadow:0 4px 10px rgba(0,0,0,.1);
    transition:transform .1s ease, box-shadow .2s ease;
}

.hvzplayer .play-btn:hover{
    transform:translateY(-1px);
    box-shadow:0 6px 14px rgba(0,0,0,.15);
}

.hvzplayer .player-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 8px 18px rgba(0,0,0,.18);
}

.hvzplayer .player-btn.is-paused{
    background:#7fb8ff !important;
}

.hvzplayer .player-btn.is-playing{
    background:#ff9bb5 !important;
}

.hvzplayer #seek{
    width:100% !important;
    margin-top:12px !important;
    display:block !important;
}

.hvzplayer .wave-wrap{
    position:relative;
    width:100%;
    height:40px;
    margin-top:12px;
    border-radius:10px;
    background:#f0f3f8;
    overflow:hidden;
}

.hvzplayer #wave{
    width:100%;
    height:40px;
    display:block;
}

.hvzplayer #waveProgress{
    position:absolute;
    top:0;
    left:0;
    height:100%;
    width:0;
    background:rgba(127,184,255,.25);
    pointer-events:none;
}

.hvzplayer #nowPlayingComment{
    color:#000 !important;
    font-size:18px !important;
    font-weight:bold !important;
    text-align:center !important;
}

.hvzplayer .player-logo{
    position:absolute;
    top:10px;
    right:10px;
    width:100px;
    height:auto;
    opacity:.8;
    pointer-events:none;
}

.hvzplayer #toast{
    position:fixed;
    left:50%;
    bottom:25px;
    transform:translateX(-50%) translateY(20px);

    background:#333;
    color:#fff !important;
    padding:12px 18px;
    border-radius:12px;
    font-size:15px !important;

    box-shadow:0 6px 18px rgba(0,0,0,.2);

    opacity:0;
    pointer-events:none;
    transition:all .25s ease;
    z-index:9999;
}

.hvzplayer #toast.show{
    opacity:1;
    transform:translateX(-50%) translateY(0);
}
