html,
body{
    margin:0;
    width:100%;
    height:100%;
    overflow:hidden;
    background:#000;
    font-family:'Montserrat',sans-serif;
}

#video{
    position:fixed;
    inset:0;
    width:100%;
    height:100%;
    border:0;
    pointer-events:none;
}

/* INFO ABAJO IZQUIERDA - DISEÑO PRO */

#info{
    position:fixed;
    bottom:20px;
    left:20px;
    z-index:9999;

    display:flex;
    align-items:center;
    gap:16px;

    width:420px;
    max-width:calc(100vw - 30px);

    padding:14px;

    border-radius:22px;

    background:rgba(5,48,123,.82);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.15);

    box-shadow:
    0 15px 35px rgba(0,0,0,.35),
    inset 0 1px 0 rgba(255,255,255,.15);

    color:#fff;
}

#cover{
    width:84px;
    height:84px;
    border-radius:18px;
    object-fit:cover;

    border:2px solid rgba(255,255,255,.15);

    flex-shrink:0;
}

.infoContent{
    flex:1;
    min-width:0;
}

#title{
    font-size:15px;
    font-weight:800;
    line-height:1.3;

    margin-bottom:12px;

    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
}

.statsGrid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:8px;
}

.statBox{
    background:rgba(255,255,255,.12);

    border:1px solid rgba(255,255,255,.08);

    border-radius:12px;

    padding:8px 6px;

    text-align:center;
}

.statLabel{
    display:block;

    font-size:10px;
    font-weight:700;

    opacity:.75;

    margin-bottom:4px;
}

.statValue{
    display:block;

    font-size:14px;
    font-weight:800;
}

/* BOTON ARRIBA DERECHA */

#audioBtn{
    position:fixed;
    top:20px;
    right:20px;

    z-index:9999;

    display:flex;
    align-items:center;
    gap:10px;

    padding:12px 18px;

    border:none;
    border-radius:14px;

    background:rgba(0,0,0,.75);
    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);

    color:#fff;

    font-size:15px;
    font-weight:bold;

    cursor:pointer;
}

#audioBtn:hover{
    background:rgba(20,20,20,.95);
}

#audioBtn svg{
    width:22px;
    height:22px;
    fill:#fff;
}

audio{
    display:none;
}

/* RESPONSIVE */

@media(max-width:768px){

    #info{
        width:auto;
        right:12px;
        left:12px;
        bottom:12px;
        gap:12px;
        padding:12px;
        border-radius:18px;
    }

    #cover{
        width:70px;
        height:70px;
        border-radius:15px;
    }

    #title{
        font-size:13px;
        margin-bottom:10px;
    }

    .statBox{
        padding:7px 4px;
        border-radius:10px;
    }

    .statLabel{
        font-size:9px;
    }

    .statValue{
        font-size:12px;
    }

    #audioBtn{
        top:14px;
        right:14px;
        padding:10px 14px;
        font-size:13px;
    }

    #audioBtn svg{
        width:20px;
        height:20px;
    }
}