body{
    background: radial-gradient(ellipse at top left, #16204a 0%, #0b0b2a 60%), #0a0a1a;
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
    height: 100vh;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: whitesmoke;
}

h2{
    color: white;
    text-align: center;
    background-color: darkcyan;
    border-radius: 10px;
    max-width: 200px; 
    margin: 10px;
}

.songs {
    width: 340px;
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(0,0,0,0.25));
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 8px 30px rgba(2,6,23,0.7);
    text-align: center;
}

#imagen{
    width: 260px;
    height: 260px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.7), inset 0 1px 0 rgba(255,255,255,0.02);
    margin: 0 auto 14px;
    background: linear-gradient(135deg,#33363a,#0f1012);
    display: block;
}

#titulo{
    margin: 6px 0 2px;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    display: block;
    width: 100%;
    max-width: none;
}

#play-pausa{
    width: 64px;
    height: 64px;
    font-size: 22px;
    background: linear-gradient(180deg,#ffd36b,#ff8b29);
    color: #1a2026;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(255,140,50,0.18);
}