/* MistyRadio CSS Stylesheet - Volledig Vernieuwd */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');

:root {
    --primary: #3b82f6;
    --primary-dark: #1d4ed8;
    --primary-light: #60a5fa;
    --accent: #8b5cf6;
    --accent-dark: #7c3aed;
    --background: #060b1a;
    --background-secondary: #0d1529;
    --foreground: #f1f5f9;
    --card: #111d35;
    --card-hover: #172240;
    --border: rgba(45, 62, 95, 0.6);
    --muted: #7a90b0;
    --secondary: #0f1a30;
    --radius: 12px;
    --success: #10b981;
    --danger: #ef4444;
    --player-height: 80px;
    --font-display: 'Syne', sans-serif;
    --font-body: 'DM Sans', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    overflow-x: hidden;
    padding-bottom: var(--player-height);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* NAVBAR */
.navbar {
    background: rgba(6, 11, 26, 0.9);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 200;
    backdrop-filter: blur(24px);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 0;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 38px;
    height: 38px;
    display: block;
    flex-shrink: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    padding: 3px;
    object-fit: cover;
}

.logo-text {
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo:hover { opacity: 0.85; transform: scale(1.02); }

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--foreground);
    border-radius: 2px;
    transition: all 0.3s;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 0.875rem;
    border-radius: 8px;
    transition: all 0.2s;
}

.nav-link:hover { color: var(--foreground); background: rgba(255,255,255,0.06); }
.nav-link.active { color: var(--primary-light); background: rgba(59,130,246,0.1); }
.nav-user { font-size: 0.875rem; color: var(--muted); padding: 0.5rem 0.875rem; }

.nav-login-btn {
    background: linear-gradient(135deg, var(--primary), var(--accent)) !important;
    color: white !important;
    border-radius: 8px !important;
    padding: 0.5rem 1rem !important;
    font-weight: 600 !important;
}

/* MAIN */
.main-content { position: relative; z-index: 1; }

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.25s;
    font-family: var(--font-body);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    box-shadow: 0 4px 20px rgba(59,130,246,0.35);
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(59,130,246,0.5); }

.btn-outline {
    background: transparent;
    color: var(--foreground);
    border: 1px solid var(--border);
}

.btn-outline:hover { border-color: var(--primary); color: var(--primary-light); background: rgba(59,130,246,0.08); transform: translateY(-1px); }

.btn-listen {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    box-shadow: 0 6px 30px rgba(34,197,94,0.4);
    animation: pulse-green 2s infinite;
}

.btn-listen:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 10px 40px rgba(34,197,94,0.6); animation: none; }

@keyframes pulse-green {
    0%, 100% { box-shadow: 0 6px 30px rgba(34,197,94,0.4); }
    50% { box-shadow: 0 6px 40px rgba(34,197,94,0.6); }
}

/* HERO */
.hero {
    position: relative;
    padding: 6rem 0 5rem;
    overflow: hidden;
    text-align: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% -20%, rgba(59,130,246,0.18) 0%, transparent 70%),
        radial-gradient(ellipse 60% 40% at 80% 80%, rgba(139,92,246,0.12) 0%, transparent 60%);
    pointer-events: none;
}

.hero-container { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem;
    background: rgba(34,197,94,0.12);
    border: 1px solid rgba(34,197,94,0.3);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #4ade80;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.live-badge-dot {
    width: 7px;
    height: 7px;
    background: #4ade80;
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

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

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 50%, #f472b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--muted);
    max-width: 560px;
    margin: 0 auto 1rem;
    line-height: 1.7;
}

.hero-context {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.875rem;
    color: var(--muted);
    font-weight: 500;
}

.hero-tag svg { color: var(--primary); }

.hero-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}

.hero-stat { text-align: center; }

.hero-stat-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat-label {
    font-size: 0.8rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.25rem;
}

/* ═══════════════════════════════════════════════════════════
   STICKY PLAYER — Sky Radio stijl, permanent onderaan scherm
   ═══════════════════════════════════════════════════════════ */
:root { --player-height: 88px; }

.sticky-player {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    height: var(--player-height);
    background: rgba(4, 7, 18, 0.97);
    border-top: 1px solid rgba(59,130,246,0.15);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    z-index: 500;
    display: flex;
    align-items: center;
    box-shadow: 0 -8px 60px rgba(0,0,0,0.7), 0 -1px 0 rgba(59,130,246,0.1);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sticky-player.visible { transform: translateY(0); }

/* Gloeiende bovenrand */
.sticky-player::before {
    content: '';
    position: absolute;
    top: 0; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(90deg,
        transparent,
        rgba(59,130,246,0.6) 30%,
        rgba(139,92,246,0.6) 70%,
        transparent);
    filter: blur(1px);
}

/* Subtiele achtergrond gloed */
.sticky-player::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 100% at 50% 100%, rgba(59,130,246,0.04), transparent);
    pointer-events: none;
}

.player-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: 100%;
    padding: 0 2rem;
    max-width: 1400px;
    margin: 0 auto;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

/* Links: album art + track info */
.player-left {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 0;
}

.player-album {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--card), var(--secondary));
    border: 1px solid rgba(255,255,255,0.08);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
}

.player-album.spinning { animation: albumSpin 20s linear infinite; }
@keyframes albumSpin { to { transform: rotate(360deg); } }

.player-album img { width:100%; height:100%; object-fit:cover; border-radius: 10px; }
.player-album-placeholder { color: var(--muted); opacity: 0.4; }

.player-track { min-width: 0; }

.player-track-title {
    font-weight: 700;
    font-size: 0.92rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
    color: var(--foreground);
}

.player-track-artist {
    font-size: 0.79rem;
    color: var(--muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 2px;
}

.player-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: rgba(34,197,94,0.12);
    color: #4ade80;
    font-size: 0.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    margin-left: 0.5rem;
    border: 1px solid rgba(34,197,94,0.3);
    vertical-align: middle;
}

.player-live-dot {
    width: 5px; height: 5px;
    background: #4ade80;
    border-radius: 50%;
    animation: blink 1.5s infinite;
    flex-shrink: 0;
}

/* Midden: controls */
.player-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
    justify-content: center;
}

.player-play-btn {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--primary), var(--accent));
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 20px rgba(59,130,246,0.45), 0 0 0 0 rgba(59,130,246,0);
    flex-shrink: 0;
    position: relative;
}

.player-play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(59,130,246,0.65), 0 0 0 6px rgba(59,130,246,0.1);
}

.player-play-btn:active { transform: scale(0.97); }

/* Geluidsgolven animatie */
.player-waves {
    display: flex;
    align-items: center;
    gap: 2px;
    height: 20px;
}

.player-wave-bar {
    width: 3px;
    background: var(--primary-light);
    border-radius: 2px;
    opacity: 0.4;
    transition: all 0.3s;
}

.player-waves.playing .player-wave-bar { opacity: 1; }
.player-waves.playing .player-wave-bar:nth-child(1) { animation: wave 0.8s ease-in-out infinite; }
.player-waves.playing .player-wave-bar:nth-child(2) { animation: wave 0.8s ease-in-out 0.15s infinite; }
.player-waves.playing .player-wave-bar:nth-child(3) { animation: wave 0.8s ease-in-out 0.3s infinite; }
.player-waves.playing .player-wave-bar:nth-child(4) { animation: wave 0.8s ease-in-out 0.1s infinite; }
.player-waves.playing .player-wave-bar:nth-child(5) { animation: wave 0.8s ease-in-out 0.25s infinite; }

@keyframes wave {
    0%, 100% { height: 4px; }
    50% { height: 18px; }
}

/* Rechts: volume + acties */
.player-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: flex-end;
}

.player-volume {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.player-vol-btn {
    background: none;
    border: none;
    color: var(--muted);
    cursor: pointer;
    padding: 4px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    transition: color 0.2s;
    flex-shrink: 0;
}

.player-vol-btn:hover { color: var(--foreground); }

.player-vol-slider {
    -webkit-appearance: none;
    width: 75px;
    height: 3px;
    border-radius: 2px;
    background: rgba(255,255,255,0.12);
    outline: none;
    cursor: pointer;
    transition: background 0.2s;
}

.player-vol-slider:hover { background: rgba(255,255,255,0.2); }

.player-vol-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px; height: 12px;
    border-radius: 50%;
    background: var(--primary-light);
    cursor: pointer;
    box-shadow: 0 0 6px rgba(59,130,246,0.5);
}

.player-divider {
    width: 1px;
    height: 28px;
    background: var(--border);
    flex-shrink: 0;
}

.player-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.875rem;
    border-radius: 20px;
    font-size: 0.77rem;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--muted);
    background: rgba(255,255,255,0.03);
    transition: all 0.2s;
    white-space: nowrap;
    cursor: pointer;
    font-family: var(--font-body);
}

.player-action-btn:hover {
    border-color: rgba(59,130,246,0.4);
    color: var(--primary-light);
    background: rgba(59,130,246,0.08);
}

.player-listeners {
    font-size: 0.73rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 0.3rem;
    white-space: nowrap;
}


/* ═══════════════════════════════════════════════════════════
   SECTIE SCHEIDINGEN MET ANIMATIES
   ═══════════════════════════════════════════════════════════ */

/* Fade-in on scroll */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Sectie scheiding: gloeiende horizontale lijn */
.section-divider {
    position: relative;
    height: 1px;
    margin: 0;
    overflow: visible;
    background: transparent;
}

.section-divider::before {
    content: '';
    position: absolute;
    left: 0; right: 0;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(59,130,246,0.15) 20%,
        rgba(139,92,246,0.3) 50%,
        rgba(59,130,246,0.15) 80%,
        transparent 100%);
}

/* Centraal punt op de lijn */
.section-divider::after {
    content: '';
    position: absolute;
    left: 50%; top: -3px;
    transform: translateX(-50%);
    width: 7px; height: 7px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    box-shadow: 0 0 12px rgba(59,130,246,0.6), 0 0 24px rgba(139,92,246,0.3);
}

/* Gradient overlay bij overgang tussen secties */
.section-fade-out {
    position: relative;
}
.section-fade-out::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--background));
    pointer-events: none;
}

/* Alternerende achtergrond voor secties */
.section-alt {
    background: linear-gradient(to bottom, 
        rgba(13, 21, 41, 0.6), 
        rgba(6, 11, 26, 0.3));
    position: relative;
}

/* SECTIONS */
.section { padding: 5rem 0; position: relative; }

.section-header { text-align: center; margin-bottom: 3rem; }

.section-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary-light);
    margin-bottom: 0.75rem;
    background: rgba(59,130,246,0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    border: 1px solid rgba(59,130,246,0.2);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.section-subtitle {
    color: var(--muted);
    font-size: 1.05rem;
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.7;
}

/* SHOW CARDS */
.shows-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.show-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: calc(var(--radius) * 1.5);
    overflow: hidden;
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
}

.show-card:hover {
    transform: translateY(-4px);
    border-color: rgba(59,130,246,0.4);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.show-card-image-placeholder {
    width: 100%;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    position: relative;
    background: linear-gradient(135deg, rgba(59,130,246,0.15), rgba(139,92,246,0.15));
}

.show-live-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: #ef4444;
    color: white;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    z-index: 2;
}

.show-live-badge::before {
    content: '';
    width: 5px;
    height: 5px;
    background: white;
    border-radius: 50%;
    animation: blink 1s infinite;
}

.show-card-body { padding: 1.25rem; }

.show-card-dj {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin-bottom: 0.75rem;
}

.show-dj-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.75rem;
    flex-shrink: 0;
    color: white;
}

.show-dj-name { font-size: 0.8rem; color: var(--muted); font-weight: 500; }

.show-card-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.375rem;
    line-height: 1.3;
}

.show-card-time {
    font-size: 0.8rem;
    color: var(--primary-light);
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-weight: 500;
}

.show-card-genre {
    display: inline-flex;
    margin-top: 0.625rem;
    padding: 0.2rem 0.625rem;
    background: rgba(139,92,246,0.1);
    border: 1px solid rgba(139,92,246,0.2);
    border-radius: 20px;
    font-size: 0.72rem;
    color: #a78bfa;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* SCHEDULE */
.schedule-tabs {
    display: flex;
    gap: 0.375rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
    scrollbar-width: none;
}

.schedule-tabs::-webkit-scrollbar { display: none; }

.schedule-tab {
    flex-shrink: 0;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: none;
    color: var(--muted);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    font-family: var(--font-body);
    white-space: nowrap;
}

.schedule-tab:hover { border-color: var(--primary); color: var(--primary-light); }
.schedule-tab.active { background: rgba(59,130,246,0.1); border-color: rgba(59,130,246,0.4); color: var(--primary-light); font-weight: 600; }
.schedule-tab.today { border-color: rgba(34,197,94,0.4); color: #4ade80; }
.schedule-tab.today.active { background: rgba(34,197,94,0.1); }

.schedule-day { display: none; }
.schedule-day.active { display: block; }

.schedule-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--card);
    margin-bottom: 0.75rem;
    transition: all 0.2s;
    position: relative;
    overflow: hidden;
}

.schedule-item:hover { border-color: rgba(59,130,246,0.3); background: var(--card-hover); }

.schedule-item.now-playing { border-color: rgba(34,197,94,0.4); background: rgba(34,197,94,0.04); }

.schedule-item.now-playing::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #22c55e, #16a34a);
}

.schedule-time {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-light);
    min-width: 75px;
    flex-shrink: 0;
}

.schedule-dj-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
    color: white;
}

.schedule-info { flex: 1; min-width: 0; }
.schedule-show-name { font-weight: 600; font-size: 0.95rem; margin-bottom: 0.2rem; }
.schedule-dj-name { font-size: 0.8rem; color: var(--muted); }
.schedule-genre { font-size: 0.72rem; color: #a78bfa; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }

.schedule-now-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: #4ade80;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    flex-shrink: 0;
}

/* ABOUT */
.about-section { position: relative; overflow: hidden; }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.about-text { color: var(--muted); font-size: 1rem; line-height: 1.8; margin-bottom: 1.25rem; }

.about-features { list-style: none; display: flex; flex-direction: column; gap: 0.875rem; margin: 1.75rem 0; }

.about-feature { display: flex; align-items: flex-start; gap: 0.875rem; }

.about-feature-icon {
    width: 36px;
    height: 36px;
    background: rgba(59,130,246,0.1);
    border: 1px solid rgba(59,130,246,0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.about-feature-text strong { display: block; font-size: 0.925rem; font-weight: 600; margin-bottom: 0.2rem; }
.about-feature-text span { font-size: 0.85rem; color: var(--muted); }

.about-visual { display: flex; flex-direction: column; gap: 1rem; }

.about-stat-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: calc(var(--radius) * 1.5);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    transition: all 0.3s;
}

.about-stat-card:hover { border-color: rgba(59,130,246,0.3); transform: translateX(4px); }

.about-stat-icon { width: 52px; height: 52px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

.about-stat-value {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.about-stat-label { font-size: 0.8rem; color: var(--muted); margin-top: 0.25rem; }

/* NEWS */
.news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }

.news-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: calc(var(--radius) * 1.5);
    overflow: hidden;
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.news-card:hover { transform: translateY(-4px); border-color: rgba(59,130,246,0.35); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }

.news-card-image {
    height: 190px;
    background: linear-gradient(135deg, var(--secondary), var(--card));
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.news-card-image img { width:100%; height:100%; object-fit:cover; }

.news-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }

.news-card-meta { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }

.news-card-category {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.2rem 0.625rem;
    border-radius: 20px;
    background: rgba(59,130,246,0.1);
    color: var(--primary-light);
    border: 1px solid rgba(59,130,246,0.2);
}

.news-card-date { font-size: 0.78rem; color: var(--muted); }

.news-card-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 0.625rem;
}

.news-card-excerpt {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.6;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
    padding-top: 0.875rem;
    border-top: 1px solid var(--border);
}

.news-card-author { display: flex; align-items: center; gap: 0.5rem; font-size: 0.78rem; color: var(--muted); }

.news-card-author-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: 700;
    color: white;
}

.news-read-more { font-size: 0.78rem; color: var(--primary-light); font-weight: 600; display: flex; align-items: center; gap: 0.25rem; text-decoration: none; }

/* FEATURES */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; }

.feature-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: calc(var(--radius) * 1.5);
    padding: 1.75rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.feature-card:hover { border-color: rgba(59,130,246,0.35); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.3); }

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(59,130,246,0.1);
    border: 1px solid rgba(59,130,246,0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
}

.feature-card h3 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; }
.feature-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.6; flex: 1; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }

.contact-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: calc(var(--radius) * 1.5);
    padding: 2rem;
}

.contact-card-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.social-links { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    text-decoration: none;
    color: var(--muted);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s;
    background: var(--secondary);
}

.social-link:hover { border-color: var(--primary); color: var(--foreground); transform: translateY(-1px); }

.social-link-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* FOOTER */
.footer {
    background: linear-gradient(to bottom, var(--background-secondary), var(--background));
    border-top: 1px solid var(--border);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    text-decoration: none;
}

.footer-brand-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 800;
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand-desc { font-size: 0.875rem; color: var(--muted); line-height: 1.7; margin-bottom: 1.5rem; max-width: 280px; }

.footer-social { display: flex; gap: 0.5rem; }

.footer-social-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: none;
    color: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s;
}

.footer-social-btn:hover { border-color: var(--primary); color: var(--primary-light); background: rgba(59,130,246,0.08); }

.footer-col-title {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--foreground);
    margin-bottom: 1.25rem;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.625rem; }

.footer-links a { color: var(--muted); text-decoration: none; font-size: 0.875rem; transition: all 0.2s; display: inline-block; }
.footer-links a:hover { color: var(--primary-light); transform: translateX(3px); }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-text { font-size: 0.8rem; color: var(--muted); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: 0.8rem; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--primary-light); }

/* PAGE SECTIONS */
.page-section { padding: 3rem 0 5rem; }
.page-title { font-family: var(--font-display); font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 0.5rem; }

/* DASHBOARD */
.dashboard-header { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; margin-bottom: 2rem; }

.dashboard-role-badge {
    padding: 0.5rem 1rem;
    background: rgba(139,92,246,0.1);
    color: var(--primary-light);
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid rgba(139,92,246,0.2);
}

.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.25rem; margin-bottom: 2rem; }

.stat-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.2s;
}

.stat-card:hover { border-color: rgba(59,130,246,0.3); }
.stat-icon { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; border-radius: var(--radius); flex-shrink: 0; }
.stat-label { font-size: 0.875rem; color: var(--muted); margin: 0 0 0.25rem; }
.stat-value { font-family: var(--font-display); font-size: 2rem; font-weight: 800; margin: 0; line-height: 1; }

/* TABLES */
.table-responsive { overflow-x: auto; border-radius: var(--radius); }
.requests-table { width: 100%; border-collapse: collapse; }
.requests-table th, .requests-table td { padding: 1rem 1.25rem; text-align: left; border-bottom: 1px solid var(--border); }
.requests-table th { font-weight: 600; color: var(--muted); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; background: rgba(255,255,255,0.02); }
.requests-table tr:last-child td { border-bottom: none; }
.requests-table tr:hover td { background: rgba(255,255,255,0.02); }

/* STATUS BADGES */
.status-badge { display: inline-flex; align-items: center; gap: 0.3rem; padding: 0.25rem 0.625rem; border-radius: 20px; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.status-pending { background: rgba(234,179,8,0.1); color: #eab308; border: 1px solid rgba(234,179,8,0.2); }
.status-approved { background: rgba(34,197,94,0.1); color: #22c55e; border: 1px solid rgba(34,197,94,0.2); }
.status-played { background: rgba(139,92,246,0.1); color: #a78bfa; border: 1px solid rgba(139,92,246,0.2); }
.status-rejected { background: rgba(239,68,68,0.1); color: #ef4444; border: 1px solid rgba(239,68,68,0.2); }

/* ACTION BUTTONS */
.action-buttons { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.action-btn { padding: 0.3rem 0.75rem; border-radius: 6px; border: none; font-size: 0.75rem; font-weight: 600; cursor: pointer; transition: all 0.2s; font-family: var(--font-body); }
.action-approve { background: rgba(34,197,94,0.1); color: #22c55e; border: 1px solid rgba(34,197,94,0.2); }
.action-approve:hover { background: rgba(34,197,94,0.2); }
.action-played { background: rgba(139,92,246,0.1); color: #a78bfa; border: 1px solid rgba(139,92,246,0.2); }
.action-played:hover { background: rgba(139,92,246,0.2); }
.action-delete { background: rgba(239,68,68,0.1); color: #ef4444; border: 1px solid rgba(239,68,68,0.2); }
.action-delete:hover { background: rgba(239,68,68,0.2); }

/* TOAST */
#toast-container { position: fixed; top: 20px; right: 20px; z-index: 1000; display: flex; flex-direction: column; gap: 10px; }

.toast {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem 1.5rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
    min-width: 280px;
    animation: slideIn 0.3s ease-out;
    font-family: var(--font-body);
}

.toast.success { border-left: 3px solid #22c55e; }
.toast.error { border-left: 3px solid #ef4444; }

@keyframes slideIn { from{transform:translateX(350px);opacity:0;} to{transform:translateX(0);opacity:1;} }

/* FORMS */
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; margin-bottom: 0.5rem; font-weight: 500; font-size: 0.9rem; color: var(--foreground); }
.form-input, .form-textarea, .form-select { width: 100%; padding: 0.75rem 1rem; background: var(--secondary); border: 1px solid var(--border); border-radius: var(--radius); color: var(--foreground); font-size: 0.95rem; transition: all 0.2s; font-family: var(--font-body); }
.form-input:focus, .form-textarea:focus, .form-select:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(59,130,246,0.12); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--muted); opacity: 0.7; }
.form-textarea { resize: vertical; min-height: 110px; }

/* CARD */
.card { background: var(--card); border: 1px solid var(--border); border-radius: calc(var(--radius)*1.5); padding: 2rem; }
.card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; flex-wrap: wrap; gap: 1rem; }

/* STREAM LINK */
.stream-link-section { padding: 3rem 0; }
.stream-link-card { max-width: 700px; margin: 0 auto; background: var(--card); border: 1px solid var(--border); border-radius: calc(var(--radius)*2); padding: 2rem; text-align: center; }
.stream-link-title { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); margin-bottom: 0.5rem; }
.stream-link-desc { color: var(--muted); font-size: 0.875rem; margin-bottom: 1rem; }
.stream-link-btn { display: inline-block; background: rgba(139,92,246,0.08); padding: 0.875rem 1.5rem; border-radius: var(--radius); border: 1px solid rgba(139,92,246,0.2); cursor: pointer; transition: all 0.2s; }
.stream-link-btn:hover { background: rgba(139,92,246,0.15); border-color: rgba(139,92,246,0.4); }
.stream-link-btn code { color: var(--primary-light); font-family: 'Courier New', monospace; font-size: 0.95rem; }

/* LUISTERAAR DASHBOARD */
.listener-grid { display: grid; grid-template-columns: 280px 1fr; gap: 2rem; align-items: start; }

.listener-profile {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: calc(var(--radius)*1.5);
    padding: 2rem;
    text-align: center;
    position: sticky;
    top: calc(60px + 1rem);
}

.listener-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
}

.listener-name { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; margin-bottom: 0.375rem; }

.listener-level {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.25rem 0.75rem;
    background: rgba(234,179,8,0.1);
    border: 1px solid rgba(234,179,8,0.2);
    color: #fbbf24;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.5rem;
}

.listener-stats-mini { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 1.5rem; }

.listener-stat-mini { background: var(--secondary); border: 1px solid var(--border); border-radius: var(--radius); padding: 0.875rem 0.625rem; text-align: center; }
.listener-stat-mini-value { font-family: var(--font-display); font-size: 1.25rem; font-weight: 800; color: var(--primary-light); }
.listener-stat-mini-label { font-size: 0.7rem; color: var(--muted); margin-top: 0.2rem; }

/* POLLS */
.poll-card { background: var(--card); border: 1px solid var(--border); border-radius: calc(var(--radius)*1.5); padding: 1.5rem; margin-bottom: 1.25rem; }
.poll-question { font-family: var(--font-display); font-size: 1rem; font-weight: 700; margin-bottom: 1.25rem; }
.poll-options { display: flex; flex-direction: column; gap: 0.625rem; }

.poll-option { position: relative; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; cursor: pointer; transition: all 0.2s; background: var(--secondary); }
.poll-option:hover { border-color: var(--primary); }
.poll-option.voted { border-color: rgba(59,130,246,0.4); cursor: default; }
.poll-option-bar { position: absolute; top:0; left:0; bottom:0; background: rgba(59,130,246,0.1); transition: width 0.5s ease-out; pointer-events: none; }
.poll-option-content { position: relative; display: flex; align-items: center; justify-content: space-between; padding: 0.75rem 1rem; z-index: 1; }
.poll-option-text { font-size: 0.9rem; font-weight: 500; }
.poll-option-pct { font-size: 0.8rem; color: var(--primary-light); font-weight: 600; font-family: var(--font-display); }

/* COMMUNITY CHAT */
.chat-container { background: var(--card); border: 1px solid var(--border); border-radius: calc(var(--radius)*1.5); overflow: hidden; display: flex; flex-direction: column; height: 400px; }
.chat-messages { flex: 1; overflow-y: auto; padding: 1.25rem; display: flex; flex-direction: column; gap: 1rem; scrollbar-width: thin; scrollbar-color: var(--border) transparent; }
.chat-message { display: flex; gap: 0.75rem; align-items: flex-start; }
.chat-avatar { width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--accent)); display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 700; flex-shrink: 0; color: white; }
.chat-bubble { flex: 1; }
.chat-meta { display: flex; align-items: baseline; gap: 0.5rem; margin-bottom: 0.25rem; }
.chat-username { font-size: 0.8rem; font-weight: 700; color: var(--primary-light); }
.chat-time { font-size: 0.7rem; color: var(--muted); }
.chat-text { font-size: 0.875rem; color: var(--foreground); background: var(--secondary); padding: 0.625rem 0.875rem; border-radius: 0 12px 12px 12px; display: inline-block; max-width: 100%; word-break: break-word; }
.chat-input-area { border-top: 1px solid var(--border); padding: 1rem; display: flex; gap: 0.75rem; align-items: center; }
.chat-input { flex: 1; background: var(--secondary); border: 1px solid var(--border); border-radius: 20px; padding: 0.625rem 1rem; color: var(--foreground); font-size: 0.875rem; outline: none; font-family: var(--font-body); transition: border-color 0.2s; }
.chat-input:focus { border-color: var(--primary); }
.chat-send-btn { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--accent)); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; color: white; transition: all 0.2s; flex-shrink: 0; }
.chat-send-btn:hover { transform: scale(1.08); }

/* LEADERBOARD */
.leaderboard-item { display: flex; align-items: center; gap: 1rem; padding: 0.875rem 1rem; border-radius: var(--radius); border: 1px solid var(--border); background: var(--card); margin-bottom: 0.625rem; transition: all 0.2s; }
.leaderboard-rank { font-family: var(--font-display); font-size: 1rem; font-weight: 800; width: 28px; text-align: center; flex-shrink: 0; }
.rank-1 { color: #fbbf24; }
.rank-2 { color: #94a3b8; }
.rank-3 { color: #d97706; }
.leaderboard-avatar { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--accent)); display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 700; flex-shrink: 0; color: white; }
.leaderboard-info { flex: 1; }
.leaderboard-name { font-weight: 600; font-size: 0.9rem; }
.leaderboard-points { font-size: 0.75rem; color: var(--muted); }
.leaderboard-badge { font-family: var(--font-display); font-size: 0.8rem; font-weight: 700; color: var(--primary-light); }

/* UTILITIES */
.text-center { text-align: center; }
.text-muted { color: var(--muted); }
.mb-1{margin-bottom:0.5rem;} .mb-2{margin-bottom:1rem;} .mb-3{margin-bottom:1.5rem;} .mb-4{margin-bottom:2rem;}
.mt-1{margin-top:0.5rem;} .mt-2{margin-top:1rem;} .mt-3{margin-top:1.5rem;} .mt-4{margin-top:2rem;}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .contact-grid { grid-template-columns: 1fr; }
    .listener-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .mobile-toggle { display: flex; }
    .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: rgba(6,11,26,0.98); border-bottom: 1px solid var(--border); padding: 1rem; flex-direction: column; gap: 0.25rem; backdrop-filter: blur(20px); }
    .nav-links.open { display: flex; }
    .nav-link { padding: 0.75rem 1rem; font-size: 1rem; }
    .hero { padding: 4rem 0 3.5rem; }
    .hero-stats { gap: 2rem; flex-wrap: wrap; }
    .player-vol-slider { display: none; }
    .player-extras { display: none; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .shows-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .schedule-item { flex-wrap: wrap; }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; align-items: stretch; }
    .btn { justify-content: center; }
    .player-inner { padding: 0 1rem; gap: 0.75rem; }
    .player-album { width: 40px; height: 40px; }
    .player-play-btn { width: 38px; height: 38px; }
}


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — STICKY PLAYER
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
    .player-right .player-action-btn { display: none; }
    .player-divider { display: none; }
}

@media (max-width: 640px) {
    :root { --player-height: 72px; }

    .player-inner {
        grid-template-columns: 1fr auto;
        gap: 0.75rem;
        padding: 0 1rem;
    }

    .player-right { display: none; }

    .player-controls {
        gap: 0.625rem;
    }

    .player-album {
        width: 44px;
        height: 44px;
    }

    .player-play-btn {
        width: 44px;
        height: 44px;
    }

    .player-track-title { font-size: 0.85rem; }
    .player-track-artist { font-size: 0.74rem; }

    .player-waves { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — PROFIEL / DASHBOARD
   ═══════════════════════════════════════════════════════════ */

/* Tablet: sidebar bovenaan, niet meer sticky */
@media (max-width: 900px) {
    .listener-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .listener-profile {
        position: static;   /* niet meer sticky op mobiel */
        max-width: 100%;
        padding: 1.5rem;
    }

    /* Sidebar horizontaal op tablet: avatar links, stats rechts */
    .listener-profile-inner {
        display: flex;
        align-items: center;
        gap: 1.5rem;
        text-align: left;
    }

    .listener-avatar {
        width: 64px;
        height: 64px;
        font-size: 1.4rem;
        flex-shrink: 0;
        margin: 0;
    }

    .listener-stats-mini {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.5rem;
    }

    .listener-stat-mini {
        padding: 0.625rem 0.375rem;
    }

    .listener-stat-mini-value {
        font-size: 1rem;
    }

    /* Chat iets kleiner op tablet */
    .chat-container {
        height: 350px;
    }
}

/* Mobiel: alles gestapeld, compact */
@media (max-width: 600px) {
    .listener-profile {
        padding: 1.25rem;
    }

    .listener-avatar {
        width: 56px;
        height: 56px;
        font-size: 1.25rem;
    }

    .listener-name {
        font-size: 1rem;
    }

    .listener-level {
        font-size: 0.68rem;
        padding: 0.2rem 0.6rem;
        margin-bottom: 1rem;
    }

    /* Stats: 4 kolommen op een rij */
    .listener-stats-mini {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.4rem;
        margin-bottom: 1rem;
    }

    .listener-stat-mini {
        padding: 0.5rem 0.25rem;
        border-radius: 8px;
    }

    .listener-stat-mini-value {
        font-size: 0.95rem;
    }

    .listener-stat-mini-label {
        font-size: 0.6rem;
    }

    /* Knoppen volledig breed */
    .listener-profile .btn {
        font-size: 0.875rem;
        padding: 0.625rem 1rem;
    }

    /* Chat compacter */
    .chat-container {
        height: 300px;
    }

    .chat-messages {
        padding: 0.875rem;
        gap: 0.75rem;
    }

    .chat-text {
        font-size: 0.825rem;
    }

    .chat-input-area {
        padding: 0.75rem;
    }

    /* Polls */
    .poll-card {
        padding: 1.125rem;
    }

    .poll-option-content {
        padding: 0.625rem 0.75rem;
    }

    .poll-option-text {
        font-size: 0.825rem;
    }

    /* Leaderboard */
    .leaderboard-item {
        padding: 0.75rem;
        gap: 0.625rem;
    }

    .leaderboard-badge {
        display: none; /* te krap op klein scherm */
    }

    /* Cards wat minder padding */
    .card {
        padding: 1.125rem !important;
    }

    .card-header {
        margin-bottom: 0.875rem;
    }

    /* Favorieten grid: 1 kolom */
    #favsGrid {
        grid-template-columns: 1fr !important;
    }
}

/* Heel klein scherm (320px) */
@media (max-width: 380px) {
    .listener-stats-mini {
        grid-template-columns: repeat(2, 1fr);
    }

    .listener-stat-mini-value {
        font-size: 1.1rem;
    }

    .listener-stat-mini-label {
        font-size: 0.65rem;
    }
}