body {
    margin: 0;
    font-family: "Segoe UI", sans-serif;
    background: #000;
    color: #333;
}

header {
    background: #FF8000;
    color: white;
    padding: 20px;
    text-align: center;
}


.header-top { display: flex; align-items: center; justify-content: center; gap: 15px; } .logo { width: 70px; height: auto; } .header-bottom { margin-top: 15px; } /* --- BOTÓN VOLVER --- */ .home-btn { display: inline-block; padding: 10px 20px; background: white; color: #005bbb; font-weight: bold; text-decoration: none; border-radius: 30px; box-shadow: 0 3px 8px rgba(0,0,0,0.25); transition: all .25s ease; } .home-btn:hover { background: #e6e6e6; transform: translateY(-3px); box-shadow: 0 6px 14px rgba(0,0,0,0.35); }


.song-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 15px;
    padding: 20px;
}

.song-card {
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: transform .2s, box-shadow .2s;
}

.song-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.song-title {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.player {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #FF8000;
    padding: 10px;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.2);
}

.player-info {
    font-weight: bold;
    margin-bottom: 5px;
}
