:root {
    --accent: #ff7a00;
    --glass: rgba(0,0,0,0.72);
    --glass-strong: rgba(0,0,0,0.85);
    --text: #ffffff;
    --subtext: #cccccc;
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #000;
    color: var(--text);
}

/* INDICATIEBALK */
#quality-bar {
    width: 100%;
    background: rgba(255,255,255,0.9);
    color: #000;
    padding: 6px 0;
    text-align: center;
    font-weight: bold;
    position: fixed;
    top: 0;
    z-index: 50;
    display: flex;
    justify-content: center;
    gap: 6px;
}

/* HEADER */
.top-header {
    position: fixed;
    top: 32px;
    width: 100%;
    height: 70px;
    background: var(--glass);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 40;
}

.header-left {
    position: absolute;
    left: 20px;
}

.header-logo {
    height: 46px;
}

/* MENU */
.header-menu {
    display: flex;
    gap: 22px;
}

.header-menu a {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    position: relative;
}

.header-menu a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width .2s;
}

.header-menu a:hover::after,
.header-menu a.active::after {
    width: 100%;
}

/* HAMBURGER */
.hamburger {
    display: none;
    position: absolute;
    right: 20px;
    font-size: 28px;
    background: none;
    border: none;
    color: var(--text);
}

/* MOBIEL MENU */
@media (max-width: 768px) {
    .header-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        width: 100%;
        background: var(--glass-strong);
        padding: 20px 0;
    }

    .header-menu.open {
        display: flex;
    }

    .hamburger {
        display: block;
    }
}

/* MAIN AREA */
.main-area {
    padding-top: 140px;
    padding-bottom: 120px;
}

/* HEADER FOTO PER PAGINA */
.page-header {
    width: 100%;
    height: 260px;
    background-size: cover;
    background-position: center;
}

/* FOOTER PLAYER */
.radio-footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: var(--glass);
    backdrop-filter: blur(12px);
    padding: 10px 16px;
    z-index: 60;
}

.radio-footer-inner {
    max-width: 1100px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* LINKS */
.footer-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* PLAY BUTTON */
.play-button {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #000;
    border: 2px solid var(--accent);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.play-button svg {
    width: 34px;
    height: 34px;
    fill: var(--accent);
}

#pause-icon {
    display: none;
}

/* TEKST */
.track-info h2 {
    font-size: 1.1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.track-info p {
    font-size: .9rem;
    color: var(--subtext);
}

/* COVER IN MIDDEN */
.footer-cover {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.footer-cover img {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .play-button {
        width: 56px;
        height: 56px;
    }

    .footer-cover img {
        width: 56px;
        height: 56px;
    }

    .track-info h2 {
        font-size: 1rem;
    }
}
