/* Nadpis */
h1 {
    margin-top: 2rem;
    font-size: 2.6rem;
    text-shadow: 0 0 10px #ff00cc, 0 0 20px #00ccff;
    text-align: center;
}

/* Playlist */
.playlist {
    max-width: 800px;
    margin: 2rem auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: left;
}

/* Jednotlivé tracky */
.track {
    background: rgba(255, 0, 204, 0.08);
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(255, 0, 204, 0.3);
    transition: 0.25s;
}

.track:hover {
    transform: scale(1.02);
    box-shadow: 0 0 25px rgba(0, 200, 255, 0.6);
}

.track strong {
    display: block;
    margin-bottom: 0.6rem;
    font-size: 1.2rem;
    color: #fff;
    text-shadow: 0 0 6px #ff00cc;
}

/* Audio player */
audio {
    width: 100%;
}

/* Zpět */
.back {
    display: block;
    margin: 3rem auto;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #ff00cc, #00ccff);
    box-shadow: 0 0 15px #ff00cc;
    transition: 0.25s;
    width: fit-content;
}

.back:hover {
    transform: scale(1.1);
    box-shadow: 0 0 25px #00ccff;
}

/* Footer – stejný jako na kapela.html */
.site-footer {
    background: #05000a;
    padding: 40px 20px;
    margin-top: 4rem;
    text-align: center;
    border-top: 1px solid rgba(255, 0, 204, 0.25);
    box-shadow: 0 -10px 25px rgba(0,0,0,0.6);
}

.footer-icons {
    display: flex;
    justify-content: center;
    gap: 2.2rem;
    margin-bottom: 18px;
}

.f-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: 0.25s ease;
    filter: drop-shadow(0 0 8px #ff00cc);
}

.f-icon svg {
    width: 100%;
    height: 100%;
}

.f-icon:hover {
    transform: scale(1.18);
    filter: drop-shadow(0 0 14px #00ccff);
}

.footer-copy {
    font-size: 0.85rem;
    opacity: 0.65;
    color: #ccc;
}