body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Lato', sans-serif;
    color: white;
}

.background-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('../background.jpg') center/cover no-repeat fixed;
    z-index: -2;
}

.background-overlay::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

.logo {
    max-width: 320px;
    width: 85%;
}

#player {
    max-width: 600px;     /* Wider on desktop */
    width: 95%;           /* Almost full width on mobile */
}

.thumb {
    width: 70px;
    height: 70px;
    object-fit: cover;
}

#play {
    width: 64px;
    height: 64px;
    -webkit-appearance: none;
    transform: translateZ(0);
    backface-visibility: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

#play i {
    font-size: 32px !important;
    pointer-events: none;
}

/* Make text truncate if too long (prevents overflow) */
#player h4, #player small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#status {
    font-size: 0.9rem;
    color: #ccc;
}
