:root {
    --primary: #ff512f;
    --secondary: #dd2476;
    --success: #00b09b;
    --dark-bg: #1f1c2c;
    --light-text: #ffffff;
    --glass: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.15);
    --nav-height: 70px;
    --footer-height: 90px;
}

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #1f1c2c, #3a3455);
    color: var(--light-text);
    margin: 0;
    padding: 0;
    min-height: 100vh;
    padding-bottom: var(--footer-height);
    overflow-x: hidden;
}

/* --- Navigatie --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: var(--nav-height);
    background: rgba(31, 28, 44, 0.95);
    backdrop-filter: blur(15px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    box-sizing: border-box;
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
}

.navbar .logo {
    font-size: 1.8rem;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
}

.navbar .logo span {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.nav-links a:hover, .nav-links a.active {
    color: white;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary);
}

.mobile-menu-btn { display: none; font-size: 1.5rem; cursor: pointer; }

/* --- Main Container --- */
#app-container {
    padding: calc(var(--nav-height) + 40px) 20px 40px;
    max-width: 1200px;
    margin: 0 auto;
    animation: fadeIn 0.5s ease;
}

/* Hero & Cards */
.hero {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, rgba(255,81,47,0.15), rgba(221,36,118,0.15));
    border-radius: 20px;
    margin-bottom: 40px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.hero h1 { font-size: 3.5rem; margin-bottom: 10px; margin-top: 0; }
.hero p { font-size: 1.3rem; opacity: 0.8; margin-bottom: 25px; }

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.card {
    background: var(--glass);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    transition: transform 0.3s, box-shadow 0.3s;
    backdrop-filter: blur(5px);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
    border-color: rgba(255,255,255,0.3);
}

.card h2 {
    margin-top: 0;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    color: var(--primary);
}

/* Track List */
.track-list { list-style: none; padding: 0; }
.track-list li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    gap: 15px;
}
.track-list li:last-child { border-bottom: none; }
.cover-mini {
    width: 45px; height: 45px; background: rgba(0,0,0,0.3); border-radius: 8px;
    display: flex; align-items: center; justify-content: center; font-size: 1rem; color: #666;
}

/* --- Schedule Table --- */
.schedule-table { width: 100%; border-collapse: separate; border-spacing: 0 10px; }
.schedule-table th { text-align: left; padding: 10px; color: #aaa; font-weight: normal; }
.schedule-table td {
    background: rgba(255,255,255,0.05);
    padding: 15px;
}
.schedule-table tr td:first-child { border-top-left-radius: 8px; border-bottom-left-radius: 8px; }
.schedule-table tr td:last-child { border-top-right-radius: 8px; border-bottom-right-radius: 8px; }
.schedule-table tr:hover td { background: rgba(255,255,255,0.1); }

/* --- Platforms Grid --- */
.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}
.platform-item {
    text-align: center;
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 12px;
    text-decoration: none;
    color: white;
    transition: 0.3s;
    border: 1px solid transparent;
}
.platform-item:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--primary);
    transform: translateY(-3px);
}
.platform-item i { font-size: 2.5rem; margin-bottom: 15px; display: block; }
.platform-item span { font-weight: bold; font-size: 1.1rem; }

/* --- Footer Player --- */
footer {
    position: fixed;
    bottom: 0; left: 0; width: 100%;
    height: var(--footer-height);
    background: rgba(20, 20, 30, 0.98);
    border-top: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.player-wrapper {
    width: 100%; max-width: 1400px;
    display: flex; justify-content: space-between; align-items: center;
    padding: 0 30px;
}

.player-info { display: flex; align-items: center; gap: 20px; width: 300px; }
.album-art-placeholder {
    width: 55px; height: 55px; background: #222; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

/* Visualizer Bars */
#visualizer {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 4px;
    padding: 10px 8px;
    box-sizing: border-box;
    opacity: 0.95;
    pointer-events: none;
}

/* shown/hidden by JS (and the global .hidden utility) */
#visualizer.hidden { display: none; }

#visualizer .bar {
    width: 5px;
    border-radius: 3px;
    transform-origin: bottom;
    background: linear-gradient(to top, var(--primary), var(--secondary));
    box-shadow: 0 6px 14px rgba(0,0,0,0.35);
    animation: venfmBeat 1.05s infinite ease-in-out;
    animation-play-state: paused;
}

/* Only animate while playing */
#visualizer.is-playing .bar { animation-play-state: running; }

/* If we ever enable analyser mode, JS will drive transforms */
#visualizer.is-analyser .bar { animation: none !important; }

#visualizer .bar:nth-child(1) { height: 35%; animation-duration: 0.85s; }
#visualizer .bar:nth-child(2) { height: 70%; animation-duration: 1.15s; }
#visualizer .bar:nth-child(3) { height: 90%; animation-duration: 0.95s; }
#visualizer .bar:nth-child(4) { height: 60%; animation-duration: 1.25s; }
#visualizer .bar:nth-child(5) { height: 45%; animation-duration: 1.05s; }

@keyframes venfmBeat {
    0%, 100% { transform: scaleY(0.35); opacity: 0.7; }
    50% { transform: scaleY(1); opacity: 1; }
}

.album-art-placeholder.is-playing .album-logo {
    opacity: 0.35;
    filter: saturate(0.9) contrast(1.05);
}

/* Player title marquee (no ellipsis) */
.player-title {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    max-width: 220px;
    position: relative;
}

.player-title-inner {
    display: inline-block;
    padding-right: 28px; /* gap before repeating */
    will-change: transform;
}

.player-title.is-marquee {
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.player-title.is-marquee .player-title-inner {
    animation: venfmMarquee var(--marquee-duration, 12s) linear infinite;
}

@keyframes venfmMarquee {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-1 * var(--marquee-distance, 0px))); }
}
.text-info p { margin: 4px 0 0; font-size: 0.85rem; opacity: 0.6; }

.player-controls { display: flex; align-items: center; gap: 20px; }
.ctrl-btn { background: none; border: none; color: white; cursor: pointer; transition: 0.2s; }
.ctrl-btn.big {
    width: 55px; height: 55px; border-radius: 50%;
    background: white; color: var(--secondary); font-size: 1.4rem;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 15px rgba(255,255,255,0.2);
}
.ctrl-btn.big:hover { transform: scale(1.1); box-shadow: 0 0 25px rgba(255,255,255,0.4); }

/* --- NIEUWE VOTE BUTTON STIJL --- */
.vote-btn-footer {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    width: 45px; height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center; justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@media (prefers-reduced-motion: reduce) {
  .player-title.is-marquee .player-title-inner {
    animation: none !important;
    transform: none !important;
  }
}


.vote-btn-footer:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 81, 47, 0.4);
}

.vote-btn-footer:active { transform: scale(0.9); }

.vote-btn-footer.voted {
    background: linear-gradient(to right, #11998e, #38ef7d);
    border-color: transparent;
    cursor: default;
    animation: pop 0.3s;
}
@keyframes pop { 50% { transform: scale(1.2); } }

.live-indicator {
    background: #ff0000; color: white; padding: 4px 10px; border-radius: 4px;
    font-size: 0.75rem; font-weight: bold; display: flex; align-items: center; gap: 6px; letter-spacing: 1px;
}
.live-indicator .dot { width: 8px; height: 8px; background: white; border-radius: 50%; animation: blink 1.5s infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.player-volume { display: flex; align-items: center; gap: 10px; width: 150px; }
input[type=range] { width: 100%; accent-color: var(--primary); cursor: pointer; height: 4px; }

/* --- TOAST NOTIFICATIONS (Nieuw) --- */
#toast-container {
    position: fixed;
    top: 90px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: rgba(30, 30, 40, 0.95);
    border-left: 5px solid var(--primary);
    color: white;
    padding: 15px 20px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 300px;
    animation: slideIn 0.4s ease forwards;
    backdrop-filter: blur(10px);
}
.toast.success { border-left-color: #38ef7d; }
.toast.error { border-left-color: #ff4b1f; }
.toast i { font-size: 1.2rem; }
.toast.success i { color: #38ef7d; }

@keyframes slideIn {
    from { opacity: 0; transform: translateX(100%); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeOut {
    to { opacity: 0; transform: translateX(20px); }
}

/* Mobile */
@media (max-width: 768px) {
    .navbar { padding: 0 20px; }
    .nav-links { display: none; position: absolute; top: var(--nav-height); left: 0; width: 100%; background: var(--dark-bg); flex-direction: column; padding: 20px; border-bottom: 1px solid var(--glass-border); }
    .nav-links.active { display: flex; }
    .mobile-menu-btn { display: block; }
    .player-info { width: auto; max-width: 180px; }
    .player-volume { display: none; }
    .hero h1 { font-size: 2rem; }
    .vote-btn-footer { margin-right: 10px; }
}
/* --- VenFM Website additions (Prompt 1) --- */

.navbar .logo {
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.mobile-menu-btn {
    background: none;
    border: none;
    color: #fff;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 999px;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.18);
    cursor: pointer;
    font-weight: 700;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
    background: #fff;
    color: var(--secondary);
    border-color: transparent;
    box-shadow: 0 6px 18px rgba(0,0,0,0.22);
}

.btn-primary:hover { transform: translateY(-2px); }

.btn-ghost {
    background: rgba(255,255,255,0.06);
    color: #fff;
}

.btn-ghost:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.28);
    transform: translateY(-2px);
}

.muted { opacity: 0.75; }

code {
    background: rgba(0,0,0,0.25);
    padding: 2px 8px;
    border-radius: 8px;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.subheading {
    margin-top: 26px;
    margin-bottom: 12px;
    font-size: 1.15rem;
}

.clean-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.clean-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.clean-list li:last-child { border-bottom: none; }

.now-card {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 12px;
}

.next-card {
    margin-top: 12px;
    padding: 14px 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
}

.now-label {
    font-size: 0.85rem;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.now-title {
    font-size: 1.2rem;
    font-weight: 800;
    margin-top: 4px;
}

.now-sub { margin-top: 4px; }

.pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    background: rgba(255, 0, 0, 0.18);
    border: 1px solid rgba(255, 0, 0, 0.35);
}

.pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.pill-soft {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 0.85rem;
}

.page-head {
    margin: 6px 0 14px;
}

.page-title {
    margin: 0;
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.page-subtitle {
    margin: 10px 0 0;
    max-width: 820px;
    opacity: 0.86;
    line-height: 1.55;
}

.team-live-card {
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
}

.team-live-top {
    display: flex;
    align-items: center;
    gap: 12px;
}

.team-live-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.team-live-label {
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    opacity: 0.78;
}

.team-live-show {
    font-weight: 900;
    font-size: 1.05rem;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.team-live-djs {
    margin-top: 10px;
}

.team-live-card .dj-chips {
    margin-top: 0;
}

.team-live-card.is-live {
    border-color: rgba(255, 0, 0, 0.35);
    box-shadow: 0 0 0 1px rgba(255,0,0,0.12);
}

.team-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: inherit;
    font-weight: 800;
    font-size: 0.92rem;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.filter-chip:hover {
    transform: translateY(-1px);
    border-color: rgba(255,255,255,0.20);
}

.filter-chip.is-active {
    background: rgba(255, 0, 0, 0.16);
    border-color: rgba(255, 0, 0, 0.35);
}

.chip-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 22px;
    padding: 0 8px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 900;
    background: rgba(0,0,0,0.25);
    border: 1px solid rgba(255,255,255,0.12);
}

.dj-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
    margin-top: 18px;
}

.dj-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    padding: 18px;
    transition: transform 0.2s ease, border-color 0.2s ease;
    display: block;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
}

.dj-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: radial-gradient(60% 60% at 10% 10%, rgba(255,0,0,0.10), transparent 60%),
                radial-gradient(60% 60% at 90% 20%, rgba(0,180,255,0.10), transparent 55%),
                radial-gradient(60% 60% at 30% 100%, rgba(255,255,255,0.06), transparent 50%);
    pointer-events: none;
    opacity: 0.75;
}

.dj-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255,255,255,0.22);
}

.dj-photo-wrap {
    position: relative;
}

.dj-card-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.pill-role {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.18);
}

.pill-core {
    background: rgba(0,180,255,0.16);
    border-color: rgba(0,180,255,0.35);
}

.dj-bio-snippet {
    margin: 8px 0 0;
    line-height: 1.55;
    opacity: 0.9;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: inherit;
    text-decoration: none;
    opacity: 0.85;
}

.back-link:hover {
    opacity: 1;
}

.dj-photo {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
    opacity: 0.85;
    background: rgba(0,0,0,0.25);
}

.dj-name {
    margin: 14px 0 6px;
    font-size: 1.2rem;
}

.dj-bio {
    margin: 0;
    line-height: 1.5;
}

.top50-list {
    margin: 16px 0 0;
    padding-left: 18px;
}

.top50-list li { padding: 8px 0; }

.news-bulletin {
    margin-top: 16px;
    padding: 16px;
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.10);
    line-height: 1.7;
}

.content {
    max-width: 820px;
    line-height: 1.75;
}

.content h3 { margin-top: 22px; }

.contact-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.album-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.75;
}

/* --- Prompt 2 UX polish --- */

.hidden {
    display: none !important;
}

.btn-small {
    padding: 10px 16px;
    font-size: 0.95rem;
}

.text-flash {
    animation: textFlash 0.35s ease;
}

@keyframes textFlash {
    from { opacity: 0.65; }
    to { opacity: 1; }
}

/* Skeleton shimmer (subtle, avoids blank UI) */
.skeleton {
    position: relative;
    overflow: hidden;
}

.skeleton::after {
    content: '';
    position: absolute;
    top: 0; left: -150px;
    height: 100%; width: 150px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
    animation: shimmer 1.2s infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0% { left: -150px; }
    100% { left: 100%; }
}

/* Footer player banner */
.player-banner {
    position: absolute;
    left: 0;
    bottom: var(--footer-height);
    width: 100%;
    padding: 12px 18px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    background: rgba(20, 20, 30, 0.95);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    transform: translateY(0);
    z-index: 1900;
}

.player-banner.info { border-left: 4px solid rgba(255,255,255,0.25); }
.player-banner.error { border-left: 4px solid rgba(255, 81, 47, 0.9); }

.player-banner-btn {
    background: rgba(255,255,255,0.08);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.18);
    padding: 8px 12px;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 800;
}

.player-banner-btn:hover {
    background: rgba(255,255,255,0.14);
}

/* Footer rank badge */
.rank-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    font-size: 0.85rem;
    font-weight: 900;
}

/* Vote loading state */
.vote-btn-footer.is-loading,
.btn.is-loading {
    opacity: 0.75;
    cursor: wait;
}

/* Home widgets */
.now-track-row {
    margin-top: 14px;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(255,255,255,0.04);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.now-track-meta {
    min-width: 0;
}

.now-track-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.news-teaser-box {
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(255,255,255,0.04);
}

.news-teaser-meta {
    margin: 0 0 10px;
    font-weight: 900;
}

.platforms-teaser {
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(255,255,255,0.04);
}

/* Programmering next shows */
.next-show-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.next-show-item {
    padding: 12px 12px;
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.10);
}

.next-show-time {
    font-weight: 900;
    font-size: 0.9rem;
}

.next-show-title {
    margin-top: 4px;
    font-weight: 900;
}

/* DJ live highlight */
.dj-card.is-live {
    border-color: rgba(255, 81, 47, 0.55);
    box-shadow: 0 12px 28px rgba(255, 81, 47, 0.12);
}

/* Nieuws page */
.news-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.news-meta {
    font-weight: 900;
}

.news-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Top50 chart UI */
.card-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 14px 0 10px;
}

.top50-chart {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.top50-item {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.10);
}

.top50-item.top3 {
    background: linear-gradient(135deg, rgba(255,81,47,0.18), rgba(221,36,118,0.10));
    border-color: rgba(255, 81, 47, 0.35);
}

.top50-rank {
    width: 64px;
    font-weight: 900;
    font-size: 1.1rem;
    color: #fff;
    opacity: 0.95;
}

.top50-title {
    font-weight: 900;
}

.top50-meta {
    min-width: 0;
}

/* Platforms: Twitch/Discord */
.platform-list,
.twitch-list,
.discord-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 14px;
}

.platform-list.is-compact {
    margin-top: 0;
    gap: 10px;
}

.platform-card,
.platform-row,
.twitch-card,
.discord-row {
    display: flex;
    gap: 14px;
    align-items: center;
    text-decoration: none;
    color: #fff;
    padding: 14px 14px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(255,255,255,0.05);
    position: relative;
}

.platform-card:hover,
.platform-row:hover,
.twitch-card:hover,
.discord-row:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.18);
}

.platform-card.is-compact {
    padding: 10px 12px;
}

.platform-avatar,
.twitch-avatar,
.discord-icon,
img.avatar {
    width: 56px;
    height: 56px;
    border-radius: 999px; /* circle */
    object-fit: cover;
    background: rgba(0,0,0,0.25);
    flex-shrink: 0;
}

.platform-card.is-compact .platform-avatar {
    width: 40px;
    height: 40px;
}

.platform-meta,
.twitch-meta {
    min-width: 0;
    flex: 1;
}

.platform-name-row {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
    min-width: 0;
}

.platform-name,
.twitch-name,
.discord-name {
    font-weight: 900;
}

.platform-title,
.twitch-title {
    margin-top: 6px;
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.3;
}

.platform-subline {
    margin-top: 6px;
    font-size: 0.85rem;
    opacity: 0.85;
}

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 8px;
    border-radius: 999px;
    border: 1px solid rgba(255,0,76,0.35);
    background: rgba(255,0,76,0.22);
    font-weight: 900;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
}

.live-badge .dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #ff004c;
    box-shadow: 0 0 10px rgba(255,0,76,0.60);
}

.platform-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-left: auto;
}


@media (max-width: 768px) {
    .btn { width: 100%; }
    .hero-actions { width: 100%; }
}

/* ==============================
   Admin CMS (Prompt 3B)
   ============================== */

body.admin {
  background: radial-gradient(1200px 600px at 20% 0%, rgba(90, 120, 255, 0.18), transparent 60%),
              radial-gradient(900px 500px at 80% 10%, rgba(230, 70, 255, 0.12), transparent 55%),
              linear-gradient(180deg, rgba(8, 10, 20, 1) 0%, rgba(6, 8, 16, 1) 100%);
}

.admin-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(6, 8, 16, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 20px;
}

.admin-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.admin-brand .brand-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.2px;
  text-decoration: none;
  color: inherit;
}

.admin-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.admin-nav .nav-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.04);
  text-decoration: none;
  color: inherit;
  font-size: 0.95rem;
}

.admin-nav .nav-item.active {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.18);
}

.admin-user {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.admin-main {
  padding: 22px 0 40px;
}

.admin-footer {
  padding: 16px 0 40px;
  opacity: 0.8;
}

.admin-toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin: 12px 0 16px;
  flex-wrap: wrap;
}

.admin-toolbar h1 {
  margin: 0;
}

.admin-toolbar-actions {
  display: inline-flex;
  gap: 10px;
  flex-wrap: wrap;
}

.admin-search {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
}

.admin-search .form-control {
  max-width: 420px;
}

.table-wrap {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.admin-table thead th {
  text-align: left;
  font-size: 0.9rem;
  opacity: 0.85;
  padding: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.admin-table tbody td {
  padding: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  vertical-align: top;
}

.admin-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 12px;
}

@media (max-width: 860px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-label {
  font-weight: 700;
}

.form-control {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.25);
  color: inherit;
}

.form-control:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.24);
}

.form-help {
  font-size: 0.88rem;
  opacity: 0.78;
}

.form-error {
  font-size: 0.9rem;
  color: rgba(255, 120, 120, 1);
}

.checkbox-row {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.upload-preview {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 10px;
}

.preview-image {
  max-width: 220px;
  height: auto;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
}

.mini-avatar {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
}

.admin-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 16px;
}

.small { font-size: 0.9rem; }
.strong { font-weight: 800; }
.truncate {
  max-width: 420px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Admin helpers */
.alert {
  border-radius: 16px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.alert-success {
  border-color: rgba(90, 220, 140, 0.32);
  background: rgba(90, 220, 140, 0.12);
}

.alert-error {
  border-color: rgba(255, 100, 100, 0.35);
  background: rgba(255, 100, 100, 0.12);
}

.btn-danger {
  border: 1px solid rgba(255, 90, 90, 0.28);
  background: rgba(255, 90, 90, 0.14);
}

.btn-danger:hover {
  background: rgba(255, 90, 90, 0.20);
}

/* --- API connectivity banner --- */
.api-banner {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.95rem;
}

.api-banner i {
    opacity: 0.9;
}

/* --- DJ cards as links --- */
.dj-card {
    text-decoration: none;
    color: inherit;
}

.dj-card:focus {
    outline: 2px solid rgba(255, 81, 47, 0.55);
    outline-offset: 2px;
}

.dj-cta {
    margin-top: 10px;
    opacity: 0.85;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* --- DJ detail --- */
.hero-compact {
    padding: 45px 20px;
}

.dj-detail-grid {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 26px;
    align-items: center;
}

.dj-detail-photo {
    width: 220px;
    height: 220px;
    border-radius: 18px;
    object-fit: cover;
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.dj-detail-name-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.dj-live-pill {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    color: white;
    padding: 6px 12px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 0 16px rgba(255,81,47,0.45);
}

.dj-detail-bio {
    max-width: 720px;
    margin: 12px auto 0;
    line-height: 1.6;
    opacity: 0.92;
}

.social-row {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    background: rgba(255,255,255,0.06);
    color: white;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease;
}

.social-link:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,0.10);
}

.show-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

.show-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
}

.show-banner {
    height: 140px;
    background: rgba(0,0,0,0.2);
}

.show-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.show-body {
    padding: 16px;
}

.schedule-mini-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}

.schedule-mini-day {
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 14px;
}

.schedule-mini-list {
    margin: 10px 0 0;
    padding-left: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.schedule-mini-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 10px;
}

.schedule-mini-time {
    font-weight: 700;
    opacity: 0.95;
}

.schedule-mini-title {
    opacity: 0.92;
}

@media (max-width: 720px) {
    .dj-detail-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .dj-detail-photo {
        margin: 0 auto;
    }

    .schedule-mini-item {
        grid-template-columns: 1fr;
    }
}

/* --- Vote status badge (footer) --- */
.vote-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid var(--glass-border);
    background: rgba(255,255,255,0.06);
    font-size: 0.85rem;
    opacity: 0.92;
}

/* --- Platforms extra icon upload --- */
.platform-icon-img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    border-radius: 8px;
}

/* --- Top50 chart UI --- */
.split-card {
    display: grid;
    grid-template-columns: 1.4fr 0.9fr;
    gap: 30px;
    align-items: start;
}

.split-card .main {
    min-height: 420px;
}

.top50-chart {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.top50-entry {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 14px;
    align-items: center;
    padding: 12px 14px;
    border: 1px solid var(--glass-border);
    background: rgba(255,255,255,0.06);
    border-radius: 14px;
    transition: transform 0.2s ease, background 0.2s ease;
    overflow: hidden;
}

.top50-entry:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,0.09);
}

.top50-entry.is-top {
    background: linear-gradient(135deg, rgba(255,81,47,0.20), rgba(221,36,118,0.18));
    box-shadow: 0 0 24px rgba(255,81,47,0.20);
}

.top50-rank {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.15rem;
    background: rgba(0,0,0,0.25);
    border: 1px solid rgba(255,255,255,0.12);
}

.top50-main {
    min-width: 0;
}

.top50-title {
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.top50-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.top50-movement {
    flex: 0 0 auto;
}

.top50-move {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(0,0,0,0.18);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 1px;
}

.top50-move-up {
    border-color: rgba(0, 176, 155, 0.35);
    background: rgba(0, 176, 155, 0.16);
}

.top50-move-down {
    border-color: rgba(255, 81, 47, 0.38);
    background: rgba(255, 81, 47, 0.16);
}

.top50-move-new {
    border-color: rgba(221, 36, 118, 0.38);
    background: rgba(221, 36, 118, 0.16);
}

.top50-move-same {
    border-color: rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.06);
}

.top50-artist {
    opacity: 0.85;
    font-size: 0.95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 2px;
}

.top50-bar {
    margin-top: 8px;
    height: 7px;
    border-radius: 999px;
    background: rgba(255,255,255,0.10);
    overflow: hidden;
}

.top50-bar-fill {
    height: 100%;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    border-radius: 999px;
}

.top50-updated {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-right: auto;
}

@media (max-width: 900px) {
    .split-card {
        grid-template-columns: 1fr;
    }
}


/* =============================
   PJAX / Soft navigation
   ============================= */
body[data-pjax-loading="1"]::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 35%;
    z-index: 5000;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    border-radius: 0 0 999px 0;
    animation: pjax-indicator 900ms ease-in-out infinite;
    pointer-events: none;
}

@keyframes pjax-indicator {
    0%   { transform: translateX(-120%); opacity: 0.8; }
    50%  { transform: translateX(110%);  opacity: 1; }
    100% { transform: translateX(240%);  opacity: 0.8; }
}

.pjax-error {
    margin-bottom: 16px;
}

.pjax-error-title {
    font-weight: 900;
    margin-bottom: 6px;
}

.pjax-error-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 12px;
}

/* =============================
   Radio Portal (Home upgrade)
   ============================= */

.portal-hero {
    margin-bottom: 30px;
}

.portal-now-card {
    background: linear-gradient(135deg, rgba(255,81,47,0.14), rgba(221,36,118,0.12));
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 20px;
    padding: 26px 22px;
    box-shadow: 0 10px 34px rgba(0,0,0,0.35);
    backdrop-filter: blur(10px);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.portal-now-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255,255,255,0.26);
    box-shadow: 0 16px 48px rgba(0,0,0,0.45);
}

.portal-now-card.is-dj-live {
    border-color: rgba(255, 81, 47, 0.55);
    box-shadow: 0 0 0 1px rgba(255,81,47,0.25), 0 18px 48px rgba(0,0,0,0.48);
}

.portal-now-head {
    margin-bottom: 14px;
}

.portal-now-kicker {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.portal-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.86rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.88;
}

.portal-now-title {
    margin: 14px 0 0;
    font-size: 2.6rem;
    letter-spacing: -0.02em;
    line-height: 1.05;
}

.portal-now-sub {
    margin: 10px 0 0;
    max-width: 900px;
    line-height: 1.5;
}

.pill-live {
    gap: 8px;
    background: rgba(255, 0, 0, 0.20);
    border: 1px solid rgba(255, 0, 0, 0.45);
    box-shadow: 0 0 0 1px rgba(255,0,0,0.14), 0 0 18px rgba(255,0,0,0.22);
}

.pill-live .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
    opacity: 0.95;
    box-shadow: 0 0 10px rgba(255,255,255,0.35);
    animation: venfmLiveDot 1.35s infinite ease-in-out;
}

@keyframes venfmLiveDot {
    0%, 100% { transform: scale(1); opacity: 0.95; }
    50% { transform: scale(0.55); opacity: 0.55; }
}

@media (prefers-reduced-motion: reduce) {
    .pill-live .dot { animation: none !important; }
}

.portal-dj-wrap {
    margin-top: 14px;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(255,255,255,0.05);
}

.portal-dj-label {
    font-weight: 900;
    letter-spacing: 0.02em;
}

.dj-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.dj-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(0,0,0,0.18);
    border: 1px solid rgba(255,255,255,0.12);
    transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.dj-chip:hover {
    transform: translateY(-1px);
    background: rgba(0,0,0,0.26);
    border-color: rgba(255,255,255,0.24);
}

.dj-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    flex: 0 0 auto;
}

.dj-avatar-fallback {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.14);
    font-weight: 900;
    font-size: 0.82rem;
}

.dj-chip-name {
    font-weight: 900;
    font-size: 0.98rem;
}

.portal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-start;
    margin-top: 18px;
}

.portal-card-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px;
    margin-top: 16px;
}

/* Track hover + optional marquee */
.track-list-compact .track-item {
    padding: 12px 8px;
    border-radius: 14px;
    transition: background 0.18s ease, transform 0.18s ease;
}

.track-list-compact .track-item:hover {
    background: rgba(255,255,255,0.06);
    transform: translateX(2px);
}

.track-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(0,0,0,0.22);
    border: 1px solid rgba(255,255,255,0.10);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.track-text {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.track-title {
    display: block;
    font-weight: 900;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
}

.track-title-inner {
    display: inline-block;
    padding-right: 28px;
    will-change: transform;
}

.track-title.is-marquee {
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.track-title.is-marquee .track-title-inner {
    animation: venfmMarquee var(--marquee-duration, 12s) linear infinite;
    animation-play-state: paused;
}

.track-list-compact .track-item:hover .track-title.is-marquee .track-title-inner {
    animation-play-state: running;
}

@media (prefers-reduced-motion: reduce) {
    .track-title.is-marquee .track-title-inner {
        animation: none !important;
        transform: none !important;
    }
}

.news-teaser-snippet {
    margin: 0;
    line-height: 1.55;
    opacity: 0.92;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
}

/* News bullets */
.news-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.news-bullet {
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.10);
    line-height: 1.45;
}

/* Footer: live DJ chips */
.footer-dj-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
    min-width: 0;
}

.footer-dj-label {
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    opacity: 0.78;
    white-space: nowrap;
}

.footer-live-djs {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 0;
    max-width: 240px;
    overflow: hidden;
}

.footer-live-djs .dj-chips {
    margin-top: 0;
    flex-wrap: nowrap;
    overflow: hidden;
    gap: 8px;
}

.footer-live-djs .dj-chip {
    padding: 4px 8px;
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.14);
    transform: none;
}

.footer-live-djs .dj-chip:hover {
    transform: none;
    background: rgba(255,255,255,0.10);
}

.footer-live-djs .dj-avatar,
.footer-live-djs .dj-avatar-fallback {
    width: 22px;
    height: 22px;
    font-size: 0.72rem;
}

.footer-live-djs .dj-chip-name {
    font-size: 0.86rem;
}

@media (max-width: 768px) {
    .portal-now-title { font-size: 2.05rem; }
    .portal-actions { justify-content: center; }

    .footer-live-djs { max-width: 120px; }
    .footer-live-djs .dj-chip-name { display: none; }
}


/* =============================
   Programmering (timeline/grid)
   ============================= */

.programming-hero {
    margin-bottom: 22px;
}

.programming-hero-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    gap: 18px;
    align-items: start;
}

.programming-next-title {
    margin-top: 0;
    margin-bottom: 12px;
}

#schedule-now-djs {
    min-height: 54px;
}

.schedule-empty {
    margin-top: 14px;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px dashed rgba(255,255,255,0.22);
    background: rgba(255,255,255,0.05);
}

.schedule-empty-title {
    font-weight: 900;
    margin-bottom: 6px;
}

.schedule-day-tabs {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 10px;
    margin: 14px 0 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.day-tab {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 56px;
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(0,0,0,0.18);
    color: #fff;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.day-tab:hover {
    transform: translateY(-1px);
    background: rgba(0,0,0,0.26);
    border-color: rgba(255,255,255,0.26);
}

.day-tab.is-active {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.32);
    box-shadow: 0 0 0 1px rgba(255,255,255,0.10), 0 10px 22px rgba(0,0,0,0.35);
}

.schedule-week-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.program-day {
    display: none;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 18px;
    overflow: hidden;
}

.program-day.is-active {
    display: block;
}

.program-day-head {
    padding: 12px 14px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    background: rgba(0,0,0,0.10);
}

.program-day-title {
    font-weight: 900;
    letter-spacing: -0.01em;
}

.program-day-list {
    position: relative;
    padding: 14px 14px 16px 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.program-day-list::before {
    content: "";
    position: absolute;
    left: 14px;
    top: 14px;
    bottom: 14px;
    width: 2px;
    border-radius: 2px;
    background: rgba(255,255,255,0.10);
}

.program-block {
    position: relative;
    padding: 14px 14px 14px 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    transition: transform 0.20s ease, background 0.20s ease, border-color 0.20s ease, box-shadow 0.20s ease;
}

.program-block::before {
    content: "";
    position: absolute;
    left: -14px;
    top: 18px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.22);
    border: 1px solid rgba(255,255,255,0.30);
    box-shadow: 0 0 0 4px rgba(0,0,0,0.15);
}

.program-block:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,0.09);
    border-color: rgba(255,255,255,0.22);
    box-shadow: 0 12px 30px rgba(0,0,0,0.40);
}

.program-block.is-live {
    border-color: rgba(255, 81, 47, 0.55);
    box-shadow: 0 0 0 1px rgba(255,81,47,0.25), 0 14px 34px rgba(0,0,0,0.48);
}

.program-block.is-live::before {
    background: rgba(255, 81, 47, 0.95);
    border-color: rgba(255, 81, 47, 0.95);
    box-shadow: 0 0 0 4px rgba(255,81,47,0.18), 0 0 18px rgba(255,81,47,0.35);
}

.program-block-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.program-time {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.program-now-indicator {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.14);
    font-size: 0.70rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.program-title {
    margin-top: 8px;
    font-weight: 900;
    font-size: 1.05rem;
    line-height: 1.15;
}

.program-djs {
    margin-top: 10px;
}

.program-djs.has-chips .program-presenter-label {
    display: none;
}

.program-djs .dj-chips {
    margin-top: 0;
}

.program-djs .dj-chip {
    padding: 7px 10px;
    gap: 9px;
}

.program-djs .dj-avatar,
.program-djs .dj-avatar-fallback {
    width: 24px;
    height: 24px;
}

.program-djs .dj-avatar-fallback {
    font-size: 0.78rem;
}

.program-djs .dj-chip-name {
    font-size: 0.92rem;
}

/* Next-up list polish */
#schedule-next-list .sched-next-item {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

#schedule-next-list .sched-next-item:last-child {
    border-bottom: none;
}

.sched-next-top {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
}

.sched-next-time {
    font-weight: 900;
    opacity: 0.9;
    white-space: nowrap;
}

.sched-next-title {
    font-weight: 900;
    margin-top: 4px;
}

@media (max-width: 980px) {
    .programming-hero-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 980px) {
    .schedule-day-tabs {
        display: none;
    }

    .schedule-week-grid {
        grid-template-columns: repeat(7, minmax(170px, 1fr));
        overflow-x: auto;
        padding-bottom: 8px;
    }

    .program-day {
        display: flex;
        flex-direction: column;
        min-width: 190px;
    }
}
