body {
    font-family: system-ui, Arial;
    padding: 12px;
    background: #202020;
    color: #ffffff;
}

techgkn {
    font-weight: 300;
    color: rgb(0, 255, 0);
    text-shadow: -0.06em -0.06em rgb(255, 0, 0), 0.06em 0.06em rgb(0, 0, 255);
}

#top {
    font-weight: 600;
    font-size: 2em;
    text-align: center;
}

#button{
    display: none;
}

.track {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    border-bottom: 1px solid #eee;
}

.cover {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 12px;
}

.meta {
    flex: 1;
}

.title {
    font-weight: 700;
    color: #fff;
}

.artist {
    font-size: 0.9em;
    color: #aaa;
}

#popout-player {
    position: fixed;
    bottom: 12px;
    right: 64px;
    /*right: 12px;*/
    background: #343435;
    color: #e1ddeb;
    padding: 8px;
    border-radius: 8px;
    display: flex;
    gap: 8px;
    align-items: center;
}

#popout-player.collapsed {
    display: none;
}


/* Lightbox */
.lbx-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}
.lbx-image {
    max-width: 95%;
    max-height: 95%;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.7);
    transition: transform .18s ease, opacity .18s ease;
    transform: scale(1);
    opacity: 1;
}
.lbx-close {
    position: fixed;
    top: 18px;
    right: 18px;
    z-index: 10000;
    background: rgba(0,0,0,0.6);
    color: #fff;
    border: none;
    padding: 8px 10px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 18px;
}