img,
iframe,
canvas,
svg {
    max-width: 100%;
}

.pk-mobile-player {
  width: 100%;
  height: 70px;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 0 16px rgba(255, 204, 0, 0.30);
}

.pk-mobile-player button {
  background: #ffcc00;
  color: #000;
  border: none;
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 800;
  cursor: pointer;
}

.pk-mobile-player span {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

/* ===========================
   Top verzoekjes popup
=========================== */
.pk-top-requests-btn {
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    background: linear-gradient(180deg, #151515, #050505);
    color: #ffd400;
    border: 1px solid rgba(255, 212, 0, 0.55);
    border-radius: 999px;
    padding: 9px 15px;
    cursor: pointer;
    font-weight: 800;
    font-size: 0.95rem;
    box-shadow:
        0 0 12px rgba(255, 212, 0, 0.12),
        inset 0 0 10px rgba(255, 212, 0, 0.05);
    transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
    max-width: 100%;
    white-space: normal;
    text-align: center;
}

.pk-top-requests-btn:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 212, 0, 0.9);
    box-shadow:
        0 0 18px rgba(255, 212, 0, 0.22),
        inset 0 0 12px rgba(255, 212, 0, 0.08);
}

.pk-top-requests-popup {
    margin-top: 14px;
    max-width: 680px;
    background: rgba(0, 0, 0, 0.88);
    border: 1px solid rgba(255, 212, 0, 0.35);
    border-radius: 14px;
    padding: 16px;
    color: #fff;
    box-shadow: 0 0 18px rgba(0, 0, 0, 0.45);
    overflow: hidden;
}

.pk-top-requests-title {
    color: #ffd400;
    font-weight: 900;
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.pk-top-requests-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pk-top-requests-item {
    display: grid;
    grid-template-columns: 36px 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.pk-top-requests-item:last-child {
    border-bottom: 0;
}

.pk-top-requests-pos {
    color: #ffd400;
    font-weight: 900;
    text-align: right;
}

.pk-top-requests-song {
    min-width: 0;
    color: #fff;
    line-height: 1.25;
}

.pk-top-requests-song strong {
    display: block;
    font-size: 1rem;
    font-weight: 900;
    color: #ffffff;
}

.pk-top-requests-song small {
    display: block;
    margin-top: 2px;
    color: #d7e9ff;
    font-size: 0.86rem;
}

.pk-top-requests-count {
    color: #ffd400;
    font-weight: 900;
    white-space: nowrap;
    font-size: 0.92rem;
}

.pk-top-requests-empty,
.pk-top-loading,
.pk-top-error,
.pk-top-empty {
    color: #d7e9ff;
    font-weight: 700;
    padding: 8px 0;
}

/* Mobiel top verzoekjes */
@media (max-width: 600px) {
    .pk-top-requests-btn {
        width: 100%;
        border-radius: 16px;
    }

    .pk-top-requests-popup {
        max-width: 100%;
        padding: 12px;
    }

    .pk-top-requests-item {
        grid-template-columns: 30px 1fr;
        gap: 8px;
        align-items: start;
    }

    .pk-top-requests-count {
        grid-column: 2;
        font-size: 0.82rem;
        margin-top: -2px;
    }

    .pk-top-requests-song strong {
        font-size: 0.95rem;
    }

    .pk-top-requests-song small {
        font-size: 0.8rem;
    }
}

/* ===========================
   Reset & Basis
=========================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: Arial, sans-serif;
    background: url("/assets/img/background.jpg") no-repeat center center fixed;
    background-size: cover;
    color: #fff;
    line-height: 1.6;
    position: relative;
    max-width: 100%;
    overflow-x: hidden;
}

/* Donkere overlay over achtergrond voor betere leesbaarheid */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at top center, rgba(0, 120, 255, 0.12), transparent 45%),
        rgba(0, 0, 0, 0.18);
    pointer-events: none;
    z-index: -1;
}

/* Utility */
.accent {
    color: #ffcc00;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ===========================
   Header
=========================== */
.site-header {
    background: rgba(0, 0, 0, 0.82);
    padding: 15px 20px;
    border-bottom: 2px solid rgba(255, 204, 0, 0.9);
    position: relative;
    z-index: 1000;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(4px);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo-title {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 250px;
    width: auto;
    display: block;
    transition: transform 0.3s;
}

.logo img:hover {
    transform: scale(1.05);
}

.site-title {
    color: #ffcc00;
    font-size: 2.3rem;
    text-shadow:
        0 0 10px rgba(255, 204, 0, 0.35),
        1px 1px 5px rgba(0, 0, 0, 0.7);
}

.dj-display {
    width: 180px;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.dj-display iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Desktop: logo midden, live-badge rechts */
@media (min-width: 769px) {
    .header-top {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
        gap: 20px;
    }

    .logo-title {
        grid-column: 2;
        justify-self: center;
        width: max-content;
    }

    #pkLiveWrap {
        grid-column: 3;
        justify-self: end;
    }
}

/* ===========================
   Navigatie
=========================== */
.main-nav {
    margin-top: 15px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.main-nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 9px 16px;
    border-radius: 8px;
    background: rgba(255, 204, 0, 0.13);
    border: 1px solid rgba(255, 204, 0, 0.18);
    transition: 0.3s;
    font-weight: bold;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}

.main-nav ul li a:hover,
.main-nav ul li a:focus {
    background: linear-gradient(135deg, #ffcc00, #fff2a8);
    color: #000;
    box-shadow: 0 0 16px rgba(255, 204, 0, 0.35);
    transform: translateY(-1px);
}

/* Hamburger toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
    flex-direction: column;
    gap: 5px;
    z-index: 1100;
}

.nav-toggle-bar {
    width: 25px;
    height: 3px;
    background: #ffcc00;
    border-radius: 2px;
    transition: transform .3s, opacity .3s;
}

.nav-toggle.active .nav-toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .nav-toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===========================
   Persistent player
=========================== */
.persistent-player {
    width: 100%;
    margin-top: 15px;
}

.persistent-player iframe {
    width: 100%;
    height: 75px;
    border: none;
    border-radius: 8px;
}

/* ===========================
   Container & Layout
=========================== */
.container {
    display: flex;
    gap: 20px;
    margin: 20px;
    align-items: flex-start;
    max-width: calc(100% - 40px);
}

.content {
    flex: 1 1 70%;
    min-width: 0;
    padding: 20px;
    background: rgba(0, 0, 0, 0.58);
    border-radius: 14px;
    border: 1px solid rgba(255, 204, 0, 0.16);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.38);
    backdrop-filter: blur(4px);
}

.sidebar {
    flex: 0 0 30%;
    min-width: 280px;
    max-width: 360px;
}

/* ===========================
   Widgets
=========================== */
.widget {
    background: rgba(0, 0, 0, 0.58);
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 14px;
    border-left: 4px solid rgba(255, 204, 0, 0.9);
    border-top: 1px solid rgba(255, 204, 0, 0.14);
    border-right: 1px solid rgba(255, 204, 0, 0.10);
    border-bottom: 1px solid rgba(255, 204, 0, 0.10);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(4px);
}

.widget h3 {
    color: #ffcc00;
    font-size: 1.3rem;
    margin-bottom: 12px;
    text-align: center;
    text-shadow: 0 0 10px rgba(255, 204, 0, 0.22);
}

/* WhatsApp / Verzoekjes */
.whatsapp-widget,
.app-download {
    text-align: center;
}

.whatsapp-widget img,
.app-download img,
.form-popup-logo img {
    display: block;
    margin: 10px auto;
    max-width: 200px;
    height: auto;
}

.form-popup-logo img {
    max-width: 180px;
    transition: transform .3s;
}

.form-popup-logo img:hover {
    transform: scale(1.05);
}

.whatsapp-widget p {
    font-size: .95rem;
    color: #e5d3ba;
    margin: 8px 0;
}

.pk-share-listener-btn {
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    background: linear-gradient(180deg, #151515, #050505);
    color: #ffd400;
    border: 1px solid rgba(255, 212, 0, 0.55);
    border-radius: 999px;
    padding: 9px 15px;
    cursor: pointer;
    font-weight: 800;
    font-size: 0.95rem;
    box-shadow:
        0 0 12px rgba(255, 212, 0, 0.12),
        inset 0 0 10px rgba(255, 212, 0, 0.05);
    transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
    max-width: 100%;
    white-space: normal;
    text-align: center;
}

.pk-share-listener-btn:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 212, 0, 0.9);
    box-shadow:
        0 0 18px rgba(255, 212, 0, 0.22),
        inset 0 0 12px rgba(255, 212, 0, 0.08);
}

.pk-share-listener-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0, 0, 0, 0.86);
    align-items: center;
    justify-content: center;
    padding: 18px;
}

.pk-share-listener-panel {
    position: relative;
    width: min(520px, 94vw);
    background:
        radial-gradient(circle at top left, rgba(255, 212, 0, 0.14), transparent 48%),
        rgba(0, 0, 0, 0.96);
    border: 1px solid rgba(255, 212, 0, 0.45);
    border-radius: 18px;
    padding: 22px;
    color: #fff;
    box-shadow: 0 0 34px rgba(0, 0, 0, 0.75);
}

.pk-share-listener-close {
    position: absolute;
    top: 12px;
    right: 14px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 212, 0, 0.55);
    background: rgba(0, 0, 0, 0.70);
    color: #ffd400;
    font-size: 26px;
    cursor: pointer;
}

.pk-share-listener-panel h3 {
    color: #ffd400;
    margin: 0 42px 10px 0;
    font-size: 1.45rem;
}

.pk-share-listener-panel p {
    color: #d7e9ff;
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.pk-share-label {
    display: block;
    color: #ffd400;
    font-weight: 900;
    margin-bottom: 6px;
}

.pk-share-input {
    width: 100%;
    padding: 11px 13px;
    border-radius: 12px;
    border: 1px solid rgba(255, 212, 0, 0.45);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 1rem;
    margin-bottom: 14px;
}

.pk-share-input:focus {
    outline: none;
    border-color: rgba(255, 212, 0, 0.9);
    box-shadow: 0 0 14px rgba(255, 212, 0, 0.18);
}

.pk-share-check {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: #e6e6e6;
    font-size: 0.9rem;
    line-height: 1.35;
    margin: 10px 0;
}

.pk-share-check input {
    margin-top: 3px;
}

.pk-share-status {
    min-height: 22px;
    margin-top: 12px;
    color: #ffd400;
    font-weight: 800;
    font-size: 0.9rem;
}

.pk-share-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 14px;
}

.pk-share-primary,
.pk-share-secondary {
    border-radius: 999px;
    padding: 10px 15px;
    font-weight: 900;
    cursor: pointer;
}

.pk-share-primary {
    background: linear-gradient(135deg, #ffd400, #fff2a8);
    color: #050505;
    border: 0;
}

.pk-share-secondary {
    background: rgba(0, 0, 0, 0.4);
    color: #ffd400;
    border: 1px solid rgba(255, 212, 0, 0.45);
}

@media (max-width: 600px) {
    .pk-share-listener-btn {
        width: 100%;
        border-radius: 16px;
    }

    .pk-share-actions {
        flex-direction: column;
    }

    .pk-share-primary,
    .pk-share-secondary {
        width: 100%;
    }
}

/* ===========================
   Buttons
=========================== */
.btn {
    display: inline-block;
    background: linear-gradient(135deg, #ffcc00, #fff2a8);
    color: #000;
    padding: 9px 13px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: .3s;
    box-shadow: 0 8px 18px rgba(255, 204, 0, 0.22);
}

.btn:hover,
.btn:focus {
    background: #fff;
    color: #000;
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(255, 204, 0, 0.34);
}

/* ===========================
   Now Playing
=========================== */
.nowplaying-box {
    background: rgba(0, 0, 0, 0.54);
    padding: 15px;
    border-radius: 14px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 204, 0, 0.14);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.30);
    backdrop-filter: blur(4px);
}

.nowplaying-box marquee {
    color: #ffcc00;
    font-weight: bold;
    font-size: 1.1rem;
}

.np-row {
    margin: 5px 0;
}

/* ===========================
   Nu op verzoek
=========================== */
.playing-request-box {
    margin: 18px 0;
    padding: 16px;
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(255, 204, 0, 0.18), rgba(0, 0, 0, 0.62)),
        rgba(0, 0, 0, 0.58);
    border: 1px solid rgba(255, 204, 0, 0.42);
    box-shadow: 0 0 24px rgba(255, 204, 0, 0.18);
}

.playing-request-head {
    color: #ffcc00;
    font-weight: 900;
    margin-bottom: 8px;
}

.playing-request-title {
    color: #fff;
    font-size: 20px;
    font-weight: 900;
}

.playing-request-name {
    color: #a9ffc8;
    font-weight: 800;
    margin-top: 6px;
}

.playing-request-message {
    color: #e6f1ff;
    margin-top: 6px;
}

/* ===========================
   Luisterlocaties popup
=========================== */
.pk-listener-popup-wrap {
    margin-top: 14px;
    padding-left: 4px;
    max-width: 100%;
}

.pk-listener-btn,
.pk-globe-btn {
    max-width: 100%;
    white-space: normal;
    text-align: center;
}

.pk-listener-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    background: linear-gradient(180deg, #151515, #050505);
    color: #ffd400;
    border: 1px solid rgba(255, 212, 0, 0.55);
    border-radius: 999px;
    padding: 9px 15px;
    cursor: pointer;
    font-weight: 800;
    font-size: 0.95rem;
    box-shadow:
        0 0 12px rgba(255, 212, 0, 0.12),
        inset 0 0 10px rgba(255, 212, 0, 0.05);
    transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.pk-listener-btn:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 212, 0, 0.9);
    box-shadow:
        0 0 18px rgba(255, 212, 0, 0.22),
        inset 0 0 12px rgba(255, 212, 0, 0.08);
}

.pk-listener-popup {
    margin-top: 12px;
    max-width: 560px;
    background: rgba(0, 0, 0, 0.88);
    border: 1px solid rgba(255, 212, 0, 0.35);
    border-radius: 14px;
    padding: 14px 16px;
    color: #fff;
    box-shadow: 0 0 18px rgba(0, 0, 0, 0.45);
    overflow: hidden;
}

.pk-listener-popup-title {
    color: #ffd400;
    font-weight: 900;
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.pk-listener-city-list {
    list-style: none;
    margin: 0;
    padding: 0 8px 0 0;
    max-height: 330px;
    overflow-y: auto;
    overflow-x: hidden;
}

.pk-listener-city-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 7px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.pk-listener-city-list li:last-child {
    border-bottom: 0;
}

.pk-city-left {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: #fff;
    min-width: 0;
}

.pk-city-left span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
}

.pk-city-right {
    color: #ffd400;
    font-weight: 800;
    white-space: nowrap;
}

.pk-flag {
    width: 24px;
    height: 18px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.45);
    flex: 0 0 auto;
}

.pk-flag-fallback {
    display: inline-flex;
    width: 24px;
    height: 18px;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex: 0 0 auto;
}

.pk-city-unknown {
    opacity: 0.92;
}

.pk-city-unknown .pk-city-left {
    color: #d6d6d6;
}

.pk-city-unknown .pk-city-right {
    color: #cfcfcf;
}

.pk-location-note {
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    color: #bdbdbd;
    font-size: 0.86rem;
    line-height: 1.45;
}

.pk-listener-loading {
    color: #d0d0d0;
}

.pk-listener-city-row {
    cursor: pointer;
    transition: background 0.15s ease, transform 0.15s ease;
}

.pk-listener-city-row:hover {
    background: rgba(255, 212, 0, 0.08);
    transform: translateX(2px);
}

.pk-listener-city-row:hover .pk-city-left span:last-child {
    color: #ffd400;
}

.pk-city-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
    line-height: 1.25;
}

.pk-city-name {
    overflow: hidden;
    text-overflow: ellipsis;
}

.pk-city-shared-names {
    margin-top: 3px;
    color: #00ff73;
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1.25;
    text-shadow: 0 0 8px rgba(0, 255, 115, 0.18);
}

.pk-listener-city-row:has(.pk-city-shared-names) {
    background: rgba(0, 255, 115, 0.04);
}

/* Scrollbar luisterlocaties */
.pk-listener-city-list::-webkit-scrollbar {
    width: 8px;
}

.pk-listener-city-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
}

.pk-listener-city-list::-webkit-scrollbar-thumb {
    background: rgba(255, 212, 0, 0.55);
    border-radius: 999px;
}

.pk-listener-city-list::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 212, 0, 0.85);
}

/* ===========================
   Nieuwe luisterkaart knop
   De kaart zelf staat in listener-globe-v2.css
=========================== */
.pk-globe-btn {
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    background: linear-gradient(180deg, #151515, #050505);
    color: #ffd400;
    border: 1px solid rgba(255, 212, 0, 0.55);
    border-radius: 999px;
    padding: 9px 15px;
    cursor: pointer;
    font-weight: 800;
    font-size: 0.95rem;
    box-shadow:
        0 0 12px rgba(255, 212, 0, 0.12),
        inset 0 0 10px rgba(255, 212, 0, 0.05);
    transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.pk-globe-btn:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 212, 0, 0.9);
    box-shadow:
        0 0 18px rgba(255, 212, 0, 0.22),
        inset 0 0 12px rgba(255, 212, 0, 0.08);
}

/* ===========================
   Programma
=========================== */
.program-today-box,
.program-day {
    background: rgba(0, 0, 0, 0.58);
    padding: 15px;
    border-radius: 14px;
    margin-bottom: 20px;
    border-left: 4px solid rgba(255, 204, 0, 0.9);
    border-top: 1px solid rgba(255, 204, 0, 0.14);
    border-right: 1px solid rgba(255, 204, 0, 0.10);
    border-bottom: 1px solid rgba(255, 204, 0, 0.10);
    text-shadow: 1px 1px 3px #000;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(4px);
}

.program-today-box h3,
.program-day h3 {
    color: #ffcc00;
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.program-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.program-item:last-child {
    border-bottom: none;
}

.tijd {
    font-weight: bold;
    color: #fff;
    min-width: 100px;
}

.dj {
    flex: 1;
    color: #e5d3ba;
}

/* Badges */
.live-badge {
    background: #e60000;
    color: #fff;
    font-weight: bold;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: .85rem;
    animation: blink 1s infinite;
    box-shadow: 0 0 6px rgba(230, 0, 0, .7);
}

.nonstop-badge {
    background: linear-gradient(145deg, #ffcc00, #e6b800);
    color: #000;
    font-weight: bold;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: .85rem;
    box-shadow: 0 0 6px rgba(255, 204, 0, .6);
}

@keyframes blink {
    0%,
    50%,
    100% {
        opacity: 1;
    }

    25%,
    75% {
        opacity: 0;
    }
}

/* ===========================
   Eerstvolgende verzoek / wachtrij op homepage
=========================== */
.next-request-box {
    margin-top: 14px;
    padding: 14px;
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.46);
    border: 1px solid rgba(255, 204, 0, 0.22);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(4px);
}

.next-request-head {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffcc00;
    font-weight: 900;
    margin-bottom: 10px;
    font-size: 1rem;
}

.siren-light {
    display: inline-block;
    animation: sirenPulse 0.75s infinite alternate;
    filter: drop-shadow(0 0 8px rgba(255, 0, 0, 0.9));
}

@keyframes sirenPulse {
    from {
        transform: scale(1) rotate(-8deg);
        opacity: 0.65;
    }

    to {
        transform: scale(1.22) rotate(8deg);
        opacity: 1;
    }
}

.next-request-card {
    padding: 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.next-request-artist {
    color: #8fc8ff;
    font-weight: 900;
    font-size: 14px;
}

.next-request-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.25;
    margin-top: 3px;
}

.next-request-duration {
    color: #c9d8ea;
    font-size: 13px;
    margin-top: 5px;
}

.next-request-name {
    color: #a9ffc8;
    font-weight: 800;
    font-size: 13px;
    margin-top: 8px;
}

.next-request-message {
    color: #e6f1ff;
    font-size: 13px;
    margin-top: 5px;
    line-height: 1.35;
}

.next-request-empty {
    color: #cfe8ff;
    font-weight: 800;
    padding: 10px 0;
}

.next-request-link {
    display: inline-flex;
    margin-top: 10px;
    padding: 9px 13px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ffcc00, #fff2a8);
    color: #07111f;
    text-decoration: none;
    font-weight: 900;
    box-shadow: 0 8px 18px rgba(255, 204, 0, 0.24);
    transition: transform .2s, box-shadow .2s;
}

.next-request-link:hover,
.next-request-link:focus {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(255, 204, 0, 0.34);
    color: #000;
}

/* ===========================
   Verzoekkanjers van de week
=========================== */
.request-champions {
    margin: 22px 0;
    padding: 18px;
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.64), rgba(0, 0, 0, 0.48)),
        radial-gradient(circle at top left, rgba(255, 204, 0, 0.18), transparent 55%);
    border: 1px solid rgba(255, 204, 0, 0.32);
    box-shadow:
        0 14px 30px rgba(0, 0, 0, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(4px);
}

.request-champions-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.request-champions-icon {
    width: 52px;
    height: 52px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-size: 30px;
    background: linear-gradient(135deg, #ffcc00, #fff2a8);
    box-shadow: 0 0 18px rgba(255, 204, 0, 0.35);
}

.request-champions h2 {
    color: #ffcc00;
    margin: 0 0 3px;
    font-size: 1.35rem;
    line-height: 1.15;
}

.request-champions p {
    color: #e5d3ba;
    margin: 0;
    font-size: 0.95rem;
}

.request-champions-list {
    display: grid;
    gap: 12px;
}

.request-champion-card {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 14px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.request-champion-medal {
    width: 46px;
    height: 46px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    font-size: 28px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.34);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.request-champion-info {
    min-width: 0;
}

.request-champion-name {
    color: #ffffff;
    font-size: 1.08rem;
    font-weight: 900;
    line-height: 1.2;
    word-break: break-word;
}

.request-champion-count {
    color: #ffcc00;
    font-size: 0.92rem;
    font-weight: 800;
    margin-top: 3px;
}

.request-champion-1 {
    border-color: rgba(255, 204, 0, 0.48);
    background: linear-gradient(90deg, rgba(255, 204, 0, 0.18), rgba(255, 255, 255, 0.06));
}

.request-champion-2 {
    border-color: rgba(210, 220, 230, 0.42);
}

.request-champion-3 {
    border-color: rgba(205, 127, 50, 0.42);
}

/* ===========================
   Nieuws
=========================== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.news-card {
    background: rgba(255, 255, 255, 0.07);
    padding: 20px;
    border-radius: 14px;
    border-left: 4px solid rgba(255, 204, 0, 0.85);
    transition: transform .3s, box-shadow .3s;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, .6);
}

/* ===========================
   Piraten Nieuws
=========================== */
.piraten-news {
    background: rgba(0, 0, 0, 0.60);
    padding: 20px;
    margin: 30px 0;
    border-radius: 14px;
    border-left: 4px solid rgba(255, 204, 0, 0.9);
    border-top: 1px solid rgba(255, 204, 0, 0.14);
    border-right: 1px solid rgba(255, 204, 0, 0.10);
    border-bottom: 1px solid rgba(255, 204, 0, 0.10);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.38);
    backdrop-filter: blur(4px);
}

.piraten-news h2 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.5rem;
    text-align: center;
}

.piraten-news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.piraten-news-card {
    background: rgba(255, 255, 255, 0.07);
    padding: 15px;
    border-radius: 14px;
    border-left: 4px solid rgba(255, 204, 0, 0.85);
    transition: transform .3s, box-shadow .3s;
}

.piraten-news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, .5);
}

.piraten-news-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.piraten-news-card h3 a {
    color: #ffcc00;
    text-decoration: none;
}

.piraten-news-card h3 a:hover {
    text-decoration: underline;
}

.piraten-news-card p {
    font-size: .9rem;
    color: #e5d3ba;
}

/* ===========================
   Chat
=========================== */
.chat-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.chat-iframe {
    width: 100%;
    height: 800px;
    border: none;
    border-radius: 10px;
    background: #000;
}

/* ===========================
   Listen Menu
=========================== */
.listen-menu {
    text-align: center;
}

.listen-links a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 5px 10px;
    padding: 8px 12px;
    background: rgba(255, 204, 0, 0.13);
    border: 1px solid rgba(255, 204, 0, 0.18);
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: .3s;
}

.listen-links a img {
    height: 24px;
}

.listen-links a:hover,
.listen-links a:focus {
    background: linear-gradient(135deg, #ffcc00, #fff2a8);
    color: #000;
}

/* ===========================
   Partners
=========================== */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.partner-item {
    background: rgba(0, 0, 0, 0.56);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    transition: transform .3s, box-shadow .3s;
    border: 1px solid rgba(255, 204, 0, 0.12);
    backdrop-filter: blur(4px);
}

.partner-item img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.partner-name {
    color: #ffcc00;
    font-weight: bold;
}

/* ===========================
   Partners pagina
=========================== */
.partners .partner-card-link,
.partners .partner-card-link:visited {
    color: inherit;
    text-decoration: none;
}

.partners .partner-card-link * {
    text-decoration: none;
}

.partners .partner-card-link h4 {
    color: #ffcc00;
    margin-bottom: 6px;
}

.partners .partner-card-link .dj-role {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.partners .partner-desc {
    color: #e5d3ba;
    font-size: 0.92rem;
    line-height: 1.45;
    margin: 8px auto 0;
    max-width: 230px;
}

.partners .partner-card-link:hover h4 {
    color: #fff2a8;
}

.partners .partner-card-link:hover .partner-desc {
    color: #ffffff;
}

.partners .team-member img {
    width: 130px;
    height: 90px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.06);
    padding: 8px;
    border-radius: 12px;
    margin-bottom: 12px;
}

.partners .partner-logo-placeholder {
    width: 130px;
    height: 90px;
    margin: 0 auto 12px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    font-size: 42px;
    background:
        radial-gradient(circle at top left, rgba(0, 160, 255, 0.22), transparent 55%),
        rgba(255, 255, 255, 0.06);
    border: 2px solid #ffcc00;
    padding: 8px;
    box-sizing: border-box;
}

/* ===========================
   Team
=========================== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    justify-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.team-member {
    background: rgba(0, 0, 0, 0.56);
    padding: 15px;
    border-radius: 15px;
    text-align: center;
    transition: transform .3s, box-shadow .3s;
    width: 180px;
    border: 1px solid rgba(255, 204, 0, 0.12);
    backdrop-filter: blur(4px);
}

.team-member img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
    border: 2px solid #ffcc00;
}

.team-member h4 {
    color: #ffcc00;
    font-weight: bold;
    margin: 0;
    text-shadow: 1px 1px 3px #000;
    font-size: 1.1rem;
}

.team-member .functie {
    font-size: .9rem;
    color: #e5d3ba;
    margin-top: 3px;
}

/* Team pagina - scheiding vaste DJ's en inval DJ's */
.team-divider {
    width: 100%;
    margin: 38px 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: #ffd400;
    font-weight: 800;
    font-size: 20px;
    text-align: center;
}

.team-divider::before,
.team-divider::after {
    content: "";
    height: 1px;
    flex: 1;
    max-width: 280px;
    background: rgba(255, 212, 0, 0.45);
}

.team-divider span {
    padding: 6px 18px;
    border: 1px solid rgba(255, 212, 0, 0.55);
    border-radius: 999px;
    background: rgba(0, 20, 25, 0.78);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.dj-role {
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    margin-top: 4px;
    line-height: 1.2;
}

/* Team pagina - kop en intro centreren */
.welcome.hero-section {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 30px auto;
}

.welcome.hero-section h1 {
    margin-bottom: 10px;
}

.welcome.hero-section p {
    max-width: 800px;
    margin: 0 auto;
}

.team h2 {
    text-align: center;
    margin-bottom: 25px;
}

/* ===========================
   Fade-in
=========================== */
.fade-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .6s, transform .6s;
}

.fade-in.hidden {
    opacity: 0;
    transform: translateY(20px);
}

/* ===========================
   Visitor Counter
=========================== */
.visitor-counter ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.visitor-counter li {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
}

.visitor-counter li:last-child {
    border-bottom: none;
}

/* ===========================
   Footer
=========================== */
footer {
    text-align: center;
    padding: 15px;
    background: rgba(0, 0, 0, 0.82);
    border-top: 2px solid rgba(255, 204, 0, 0.9);
    margin-top: 20px;
    box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(4px);
}

/* ===========================
   Error Pages
=========================== */
.error-page {
    text-align: center;
    padding: 60px 20px;
}

.error-page h1 {
    font-size: 2rem;
    color: #ffcc00;
    margin-bottom: 20px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
}

.error-page p {
    font-size: 1rem;
    color: #e5d3ba;
    margin: 10px 0;
}

.error-page .btn {
    margin-top: 15px;
}

/* ===========================
   Babbelcafé Chatbox
=========================== */
.chatbox-widget {
    background: rgba(0, 0, 0, 0.58);
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 14px;
    border-left: 4px solid rgba(255, 204, 0, 0.9);
    border-top: 1px solid rgba(255, 204, 0, 0.14);
    border-right: 1px solid rgba(255, 204, 0, 0.10);
    border-bottom: 1px solid rgba(255, 204, 0, 0.10);
    text-align: center;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.34);
    transition: transform .3s, box-shadow .3s;
    backdrop-filter: blur(4px);
}

.chatbox-widget h3 {
    font-size: 1.4rem;
    color: #ffcc00;
    margin-bottom: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    text-shadow: 1px 1px 4px #000;
}

.chatbox-widget p {
    font-size: .95rem;
    color: #e5d3ba;
    margin: 8px 0;
}

.chatbox-widget img {
    max-width: 200px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    border: none;
    transition: none;
}

/* ===========================
   DJ Avatars
=========================== */
.dj-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #cfd8e3;
    background: #0b1b2a;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, .06) inset,
        0 6px 14px rgba(0, 0, 0, .28);
    flex: 0 0 auto;
}

.dj-avatar.lg {
    width: 110px;
    height: 110px;
    border-width: 3px;
    box-shadow:
        0 0 0 2px rgba(255, 255, 255, .06) inset,
        0 10px 24px rgba(0, 0, 0, .35);
}

.dj-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.js-avatar {
    cursor: pointer;
    transition: transform .15s ease;
}

.js-avatar:hover {
    transform: scale(1.05);
}

/* Avatar zoom modal */
.avatar-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .85);
    z-index: 9999;
}

.avatar-modal.open {
    display: flex;
}

.avatar-modal img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 50%;
    border: 6px solid #cfd8e3;
    box-shadow: 0 16px 36px rgba(0, 0, 0, .6);
}

.avatar-close,
.avatar-modal .close {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 28px;
    line-height: 1;
    color: #fff;
    background: none;
    border: 0;
    cursor: pointer;
}

/* Menu pictogrammen */
.main-nav ul li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.nav-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    line-height: 1;
    filter: drop-shadow(0 0 4px rgba(255, 204, 0, 0.35));
    transition: transform 0.2s ease, filter 0.2s ease;
}

.main-nav ul li a:hover .nav-icon,
.main-nav ul li a:focus .nav-icon {
    transform: scale(1.14);
    filter: drop-shadow(0 0 7px rgba(255, 204, 0, 0.65));
}

.nav-icon-login {
    filter: drop-shadow(0 0 6px rgba(255, 204, 0, 0.55));
}

@media (max-width: 768px) {
    .main-nav ul li a {
        min-width: 220px;
    }

    .nav-icon {
        font-size: 1.1rem;
    }
}

/* ===========================
   Responsive
=========================== */
@media (max-width: 1024px) {
    .container {
        flex-direction: column;
        max-width: calc(100% - 24px);
    }

    .content,
    .sidebar {
        width: 100%;
        max-width: 100%;
    }

    .sidebar {
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    body {
        background-attachment: scroll;
    }

    .container {
        margin: 12px;
        gap: 14px;
        max-width: calc(100% - 24px);
    }

    .content {
        padding: 14px;
        border-radius: 12px;
    }

    .header-top {
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 12px;
        width: 100%;
    }

    .logo-title {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        text-align: center;
    }

    .site-title {
        font-size: 2rem;
        text-align: center;
    }

    #pkLiveWrap {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .pk-live-badge {
        margin: 0 auto;
    }

    .logo img {
        height: 175px;
        max-width: 100%;
    }

    .dj-display {
        width: 90%;
        max-width: 280px;
        height: auto;
    }

    .dj-display iframe {
        height: 150px;
    }

    .nav-toggle {
        display: flex;
    }

    .main-nav {
        width: 100%;
        margin-top: 10px;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height .4s ease, opacity .3s ease;
    }

    .main-nav.open {
        max-height: 600px;
        opacity: 1;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding: 10px 0;
    }

    .piraten-news-grid,
    .news-grid,
    .partners-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .next-request-box {
        padding: 12px;
        border-radius: 14px;
    }

    .next-request-title {
        font-size: 16px;
    }

    .next-request-link {
        width: 100%;
        justify-content: center;
    }

    .request-champions {
        padding: 14px;
    }

    .request-champions-header {
        align-items: flex-start;
    }

    .request-champions-icon {
        width: 44px;
        height: 44px;
        font-size: 25px;
    }

    .request-champions h2 {
        font-size: 1.18rem;
    }

    .request-champion-card {
        padding: 12px;
    }

    .request-champion-medal {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
}

/* Mobiel luisterlocaties */
@media (max-width: 600px) {
    .pk-listener-popup-wrap {
        padding-left: 0;
    }

    .pk-listener-city-row:hover {
        transform: none;
    }

    .pk-listener-btn,
    .pk-globe-btn {
        width: 100%;
        border-radius: 16px;
    }

    .pk-listener-popup {
        max-width: 100%;
        padding: 12px;
    }

    .pk-listener-city-list {
        max-height: 260px;
        padding-right: 6px;
    }

    .pk-listener-city-list li {
        align-items: center;
        flex-direction: row;
        gap: 8px;
    }

    .pk-city-left {
        font-size: 0.95rem;
        max-width: calc(100% - 95px);
    }

    .pk-city-right {
        font-size: 0.95rem;
        white-space: nowrap;
    }

    .pk-location-note {
        font-size: 0.8rem;
    }
}