html{
    scroll-behavior:smooth;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Segoe UI',sans-serif;
}

body{
    min-height:100vh;
    background:url('../assets/bg-city.jpg') center center/cover no-repeat fixed;
    overflow-x:hidden;
    padding:30px 15px;
}

/* ==========================
   PLAYER
========================== */

.player-container{
    width:100%;
    display:flex;
    flex-direction:column;
    align-items:center;
}

.glass-card{
    width:720px;
    max-width:100%;

    padding:25px;

    display:flex;
    flex-direction:column;
    align-items:center;

    background:rgba(255,255,255,.25);

    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.25);
    border-radius:25px;

    box-shadow:0 20px 50px rgba(0,0,0,.25);
}

.artwork-box{
    width:160px;
    height:160px;
    margin-bottom:15px;
}

.artwork-box img{
    width:100%;
    height:100%;
    object-fit:cover;

    border-radius:18px;
    background:#fff;

    box-shadow:0 10px 30px rgba(0,0,0,.30);
}

.music-info{
    text-align:center;
}

.music-info h2{
    font-size:1.2rem;
    font-weight:800;
    color:#fff;
    text-shadow:0 2px 8px rgba(0,0,0,.4);
}

.music-info p{
    margin-top:8px;
    color:#f5f5f5;
    text-shadow:0 2px 8px rgba(0,0,0,.4);
}

.live-badge{
    margin-top:20px;
    padding:10px 20px;

    display:flex;
    align-items:center;
    gap:8px;

    background:#fff;
    border-radius:30px;

    color:#ff3b3b;
    font-size:.9rem;
    font-weight:700;

    box-shadow:0 5px 15px rgba(255,0,0,.15);
}

.live-badge span{
    width:10px;
    height:10px;

    background:#ff3b3b;
    border-radius:50%;

    animation:pulse 1.2s infinite;
}

@keyframes pulse{
    0%{opacity:1;}
    50%{opacity:.4;}
    100%{opacity:1;}
}

.player-controls{
    margin-top:25px;

    display:flex;
    align-items:center;
    gap:25px;
}

#playBtn{
    width:65px;
    height:65px;

    border:none;
    border-radius:50%;

    cursor:pointer;

    color:#fff;
    font-size:1.3rem;

    background:linear-gradient(
        135deg,
        #7c3aed,
        #2563eb
    );

    box-shadow:0 10px 25px rgba(79,70,229,.45);
    transition:.3s;
}

#playBtn:hover{
    transform:scale(1.08);
}

.volume-box{
    display:flex;
    align-items:center;
    gap:10px;
}

.volume-box i{
    color:#fff;
}

#volume{
    width:130px;
}

hr{
    width:100%;
    margin-top:25px;

    border:none;
    border-top:1px solid rgba(255,255,255,.35);
}

/* ==========================
   REDES SOCIAIS
========================== */

.social{
    margin-top:20px;

    display:flex;
    justify-content:center;
    align-items:center;
    gap:15px;
}

.social a{
    width:55px;
    height:55px;

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

    text-decoration:none;

    color:#fff;
    font-size:1.4rem;

    border-radius:50%;

    transition:.3s;
}

.social a:hover{
    transform:translateY(-5px) scale(1.08);
}

.facebook{
    background:#1877F2;
}

.instagram{
    background:linear-gradient(
        45deg,
        #F58529,
        #DD2A7B,
        #8134AF,
        #515BD4
    );
}

.youtube{
    background:#FF0000;
}

.whatsapp{
    background:#25D366;
}

.tiktok{
    background:#000;
}

/* ==========================
   BOTÕES
========================== */

.bottom-buttons{
    width:720px;
    max-width:100%;

    display:flex;
    flex-direction:column;
    gap:15px;

    margin-top:20px;
}

.btn-install,
.btn-locutores,
.btn-programacao,
.btn-doacao{
    width:100%;

    padding:16px 20px;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    border:none;
    border-radius:18px;

    text-decoration:none;

    color:#fff;
    font-size:1rem;
    font-weight:700;

    cursor:pointer;

    transition:.3s;

    box-shadow:0 10px 30px rgba(0,0,0,.20);
}

.btn-install:hover,
.btn-locutores:hover,
.btn-programacao:hover,
.btn-doacao:hover{
    transform:translateY(-4px);
    color:#fff;
}

.btn-install{
    background:linear-gradient(
        135deg,
        #16a34a,
        #22c55e
    );
}

.btn-locutores{
    background:linear-gradient(
        135deg,
        #7c3aed,
        #9333ea
    );
}

.btn-programacao{
    background:linear-gradient(
        135deg,
        #2563eb,
        #06b6d4
    );
}

.btn-doacao{
    background:linear-gradient(
        135deg,
        #f59e0b,
        #facc15
    );
}

.btn-doacao:hover{
    box-shadow:0 12px 30px rgba(245,158,11,.45);
}

/* ==========================
   MODAIS
========================== */

.modal-content{
    background:rgba(20,20,30,.95);

    border:1px solid rgba(255,255,255,.08);
    border-radius:25px;

    overflow:hidden;
}

.modal-header{
    border-bottom:1px solid rgba(255,255,255,.08);
}

.modal-header.bg-success{
    background:linear-gradient(
        135deg,
        #16a34a,
        #22c55e
    ) !important;
}

.modal-footer{
    border-top:1px solid rgba(255,255,255,.08);
}

.modal-title{
    color:#fff;
    font-weight:700;
}

.modal-body{
    color:#fff;
}

.btn-close{
    filter:invert(1);
}

.modal-backdrop.show{
    opacity:.8;
}

/* ==========================
   LOCUTORES
========================== */

.modal .card{
    background:#161625;

    border:none;
    border-radius:20px;

    transition:.3s;
}

.modal .card:hover{
    transform:translateY(-6px);
}

.modal .card h5{
    color:#fff;
}

.modal .card p{
    color:#cfcfcf;
}

.modal .rounded-circle{
    border:4px solid rgba(255,255,255,.15);
}

/* ==========================
   PROGRAMAÇÃO
========================== */

.list-group-item{
    background:#161625;
    color:#fff;

    border-color:rgba(255,255,255,.08);

    padding:18px;
}

.list-group-item strong{
    color:#fff;
}

/* ==========================
   RESPONSIVO
========================== */

@media (max-width:768px){

    body{
        padding:20px 10px;
    }

    .glass-card{
        padding:20px;
    }

    .player-controls{
        flex-direction:column;
        gap:15px;
    }

    .artwork-box{
        width:140px;
        height:140px;
    }

    .social{
        gap:10px;
        flex-wrap:wrap;
    }

    .social a{
        width:50px;
        height:50px;
    }

    #volume{
        width:180px;
    }
}