    :root {
      --bg: #0d0705;
      --bg2: #150e0a;
      --surface: #221510;
      --surface2: #2e1d14;
      --border: #4a3325;
      --border2: #6a4a34;
      --neon: #ff6b00;
      --neon2: #ffaa00;
      --neon3: #ff3366;
      --chrome: #d4b896;
      --chrome2: #f0d4aa;
      --green: #00e676;
      --text: #fdf4e8;
      --muted: #a07d62;
      --font-display: 'Righteous', cursive;
      --font-retro: 'Special Elite', cursive;
      --font-body: 'DM Sans', sans-serif;
      --font-mono: 'JetBrains Mono', monospace;
      --safe-top: env(safe-area-inset-top, 0px);
      --safe-bottom: env(safe-area-inset-bottom, 0px);
      --glow: 0 0 20px rgba(255,107,0,0.4);
      --glow2: 0 0 20px rgba(255,51,102,0.4);
    }

    * { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: var(--font-body);
      min-height: 100dvh;
      overflow-x: hidden;
    }

    /* ── JUKEBOX GRAIN TEXTURE ── */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 999;
    }

    /* ── VIEWS ── */
    .view { display: none; min-height: 100dvh; flex-direction: column; }
    .view.active { display: flex; }

    /* ══════════════════════════════════════════
       JUKEBOX HEADER
    ══════════════════════════════════════════ */
    .jukebox-header {
      position: sticky;
      top: 0;
      z-index: 100;
      padding: calc(var(--safe-top) + 10px) 16px 10px;
      background: linear-gradient(180deg, var(--bg) 70%, transparent);
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .jukebox-logo {
      display: flex;
      flex-direction: column;
      line-height: 1;
    }

    .logo-main {
      font-family: var(--font-display);
      font-size: 30px;
      letter-spacing: 4px;
      background: linear-gradient(135deg, var(--neon2), var(--neon), var(--neon3));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      text-shadow: none;
      filter: drop-shadow(0 0 8px rgba(255,107,0,0.6));
    }

    .logo-sub {
      font-family: var(--font-retro);
      font-size: 9px;
      letter-spacing: 3px;
      color: var(--chrome);
      text-transform: uppercase;
      margin-top: -2px;
    }

    /* ── CHROME BADGE ── */
    .chrome-badge {
      background: linear-gradient(135deg, #2a1a0e, #1a0e06);
      border: 1px solid var(--border2);
      border-radius: 8px;
      padding: 6px 12px;
      font-family: var(--font-mono);
      font-size: 11px;
      color: var(--chrome);
      display: flex;
      align-items: center;
      gap: 6px;
      cursor: pointer;
      transition: all 0.2s;
    }
    .chrome-badge:hover { border-color: var(--neon); color: var(--neon2); }

    /* ── SCROLLABLE CONTENT ── */
    .content {
      flex: 1;
      overflow-y: auto;
      padding: 0 14px calc(var(--safe-bottom) + 90px);
    }

    /* ══════════════════════════════════════════
       GIG INFO CARD (voter — bovenaan)
    ══════════════════════════════════════════ */
    .gig-info-card {
      position: relative;
      background: linear-gradient(135deg, #1e0e06, #2a1508);
      border: 1px solid var(--neon);
      border-radius: 16px;
      padding: 16px 18px;
      margin-bottom: 14px;
      overflow: hidden;
      box-shadow: var(--glow), inset 0 1px 0 rgba(255,170,0,0.1);
    }
    .gig-info-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--neon2), transparent);
    }
    .gig-info-card::after {
      content: '';
      position: absolute;
      top: -40px; right: -40px;
      width: 130px; height: 130px;
      background: radial-gradient(circle, rgba(255,107,0,0.12) 0%, transparent 70%);
      pointer-events: none;
    }
    .gig-info-top { margin-bottom: 14px; }
    .gig-info-name {
      font-family: var(--font-display);
      font-size: 26px;
      letter-spacing: 1px;
      color: #ffffff;
      line-height: 1.1;
    }
    .gig-info-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-top: 5px;
      align-items: center;
    }
    .gig-info-meta > span {
      font-family: var(--font-retro);
      font-size: 11px;
      color: var(--chrome2);
      letter-spacing: 0.5px;
    }
    .gig-info-artists { color: var(--neon2) !important; font-weight: 600; }
    .gig-info-sep { color: var(--border2) !important; padding: 0 2px; }
    .gig-info-np {
      border-top: 1px solid rgba(255,107,0,0.2);
      padding-top: 12px;
    }

    /* ══════════════════════════════════════════
       JUKEBOX NOW PLAYING CARD
    ══════════════════════════════════════════ */
    .now-playing-card {
      position: relative;
      background: linear-gradient(135deg, #1e0e06, #2a1508);
      border: 1px solid var(--neon);
      border-radius: 16px;
      padding: 18px 20px;
      margin-bottom: 14px;
      overflow: hidden;
      box-shadow: var(--glow), inset 0 1px 0 rgba(255,170,0,0.1);
    }

    .now-playing-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--neon2), transparent);
    }

    .now-playing-card::after {
      content: '';
      position: absolute;
      top: -40px; right: -40px;
      width: 120px; height: 120px;
      background: radial-gradient(circle, rgba(255,107,0,0.15) 0%, transparent 70%);
      pointer-events: none;
    }

    .np-label {
      font-family: var(--font-retro);
      font-size: 10px;
      letter-spacing: 4px;
      color: var(--neon);
      text-transform: uppercase;
      margin-bottom: 6px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .np-dot {
      width: 6px; height: 6px;
      background: var(--neon);
      border-radius: 50%;
      box-shadow: 0 0 8px var(--neon);
      animation: npulse 1.2s infinite;
    }
    @keyframes npulse {
      0%,100% { opacity:1; transform:scale(1); }
      50% { opacity:0.3; transform:scale(0.7); }
    }
    @keyframes spin { to { transform: rotate(360deg); } }

    /* ══════════════════════════════════════════
       GIG PICKER CARDS (voter landing)
    ══════════════════════════════════════════ */
    .gig-pick-card {
      background: var(--surface);
      border: 1px solid var(--border2);
      border-radius: 14px;
      padding: 14px 16px;
      margin-bottom: 10px;
      cursor: pointer;
      transition: all 0.2s;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }
    .gig-pick-card:hover, .gig-pick-card:active {
      border-color: var(--neon);
      background: linear-gradient(135deg, #1e0e06, #271508);
      box-shadow: var(--glow);
    }
    .gig-pick-name { font-family: var(--font-display); font-size: 20px; letter-spacing: 1px; color: var(--text); }
    .gig-pick-meta { font-size: 11px; color: var(--muted); font-family: var(--font-retro); margin-top: 3px; }

    /* ══════════════════════════════════════════
       ACTIVE GIG PILL (artiest panel)
    ══════════════════════════════════════════ */
    .active-gig-pill {
      display: flex;
      align-items: center;
      gap: 10px;
      background: linear-gradient(135deg, rgba(255,107,0,0.12), rgba(255,170,0,0.07));
      border: 1px solid rgba(255,107,0,0.4);
      border-radius: 12px;
      padding: 10px 14px;
      margin-bottom: 14px;
      cursor: pointer;
      transition: all 0.2s;
    }
    .active-gig-pill:hover { border-color: var(--neon); box-shadow: var(--glow); }
    .active-gig-pill-dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: var(--neon); box-shadow: 0 0 8px var(--neon);
      flex-shrink: 0; animation: npulse 1.2s infinite;
    }
    .active-gig-pill-dot.inactive { background: var(--muted); box-shadow: none; animation: none; }
    .active-gig-pill-label {
      font-family: var(--font-retro); font-size: 9px; letter-spacing: 2px;
      color: var(--neon); text-transform: uppercase; line-height: 1; margin-bottom: 2px;
    }
    .active-gig-pill-label.inactive { color: var(--muted); }
    .active-gig-pill-name {
      font-family: var(--font-display); font-size: 18px; letter-spacing: 0.5px;
      color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    }
    .active-gig-pill-switch { font-size: 10px; color: var(--muted); font-family: var(--font-retro); letter-spacing: 1px; flex-shrink: 0; }

    .np-title {
      font-family: var(--font-display);
      font-size: 32px;
      letter-spacing: 1px;
      line-height: 1.05;
      color: var(--text);
    }

    .np-artist {
      font-size: 14px;
      color: var(--chrome2);
      margin-top: 4px;
      font-family: var(--font-retro);
      letter-spacing: 1px;
    }

    /* ══════════════════════════════════════════
       RETRO SECTION DIVIDERS
    ══════════════════════════════════════════ */
    .retro-divider {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 16px 0 10px;
    }

    .retro-divider-line {
      flex: 1;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--border2), transparent);
    }

    .retro-divider-text {
      font-family: var(--font-retro);
      font-size: 11px;
      letter-spacing: 3px;
      color: #9a7a60;
      text-transform: uppercase;
      white-space: nowrap;
    }

    /* ══════════════════════════════════════════
       QUEUE CARDS
    ══════════════════════════════════════════ */
    .queue-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 12px 14px;
      margin-bottom: 8px;
      display: flex;
      align-items: center;
      gap: 12px;
      transition: all 0.2s;
      cursor: default;
    }

    .queue-card:hover { border-color: var(--border2); }

    .queue-card.playing {
      border-color: var(--neon);
      background: linear-gradient(135deg, #1e0e06, #271508);
      box-shadow: var(--glow);
    }

    .queue-card.dragging {
      opacity: 0.5;
      border-color: var(--neon2);
    }

    .queue-card.drag-over {
      border-color: var(--neon);
      transform: scale(1.01);
    }

    /* ── TOUCH DRAG FIX (punt 6) ── */
    .queue-card.touch-dragging {
      opacity: 0.5;
      border-color: var(--neon2);
      pointer-events: none;
    }

    .queue-num {
      font-family: var(--font-display);
      font-size: 36px;
      color: var(--border2);
      min-width: 40px;
      text-align: center;
      line-height: 1;
    }
    .queue-num.playing { color: var(--neon); text-shadow: 0 0 10px var(--neon); }

    .drag-handle {
      color: var(--border2);
      cursor: grab;
      padding: 8px;
      touch-action: none;
      min-width: 32px;
      min-height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .drag-handle:active { cursor: grabbing; color: var(--neon2); }
    .drag-handle svg { width: 18px; height: 18px; }

    .queue-song-title {
      font-family: var(--font-display);
      font-size: 20px;
      letter-spacing: 0.5px;
      color: var(--text);
      line-height: 1.1;
    }

    .queue-song-meta {
      font-size: 13px;
      color: #b89a7a;
      margin-top: 2px;
      font-family: var(--font-retro);
      letter-spacing: 0.5px;
    }

    /* ── Aanvrager badge (punt 16) ── */
    .requester-badge {
      font-size: 10px;
      color: var(--neon2);
      font-family: var(--font-mono);
      margin-top: 3px;
    }

    /* ══════════════════════════════════════════
       SONG CARDS (voter)
    ══════════════════════════════════════════ */
    .song-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 14px;
      margin-bottom: 8px;
      cursor: pointer;
      transition: all 0.2s;
      -webkit-user-select: none;
      user-select: none;
    }
    .song-card:hover { border-color: var(--neon); background: var(--surface2); }
    .song-card:active { transform: scale(0.99); }

    .song-card-title {
      font-family: var(--font-display);
      font-size: 21px;
      letter-spacing: 0.5px;
      color: var(--text);
    }

    .song-card-artist {
      font-size: 13px;
      color: #9a7a60;
      font-family: var(--font-retro);
      letter-spacing: 0.5px;
      margin-top: 2px;
    }

    /* ══════════════════════════════════════════
       VOTE BUTTON
    ══════════════════════════════════════════ */
    .vote-btn {
      display: flex;
      align-items: center;
      gap: 6px;
      background: var(--surface2);
      border: 1px solid var(--border2);
      color: var(--chrome2);
      padding: 9px 15px;
      border-radius: 100px;
      cursor: pointer;
      font-family: var(--font-mono);
      font-size: 15px;
      font-weight: 700;
      transition: all 0.2s;
      flex-shrink: 0;
      min-width: 60px;
      justify-content: center;
    }
    .vote-btn:hover, .vote-btn.voted {
      background: rgba(255,51,102,0.15);
      border-color: var(--neon3);
      color: var(--neon3);
      box-shadow: var(--glow2);
    }
    .vote-btn.disabled-vote {
      opacity: 0.4;
      cursor: not-allowed;
    }
    .vote-btn svg { width: 17px; height: 17px; }

    /* ══════════════════════════════════════════
       BOTTOM TABS
    ══════════════════════════════════════════ */
    .bottom-tabs {
      position: fixed;
      bottom: 0; left: 0; right: 0;
      padding: 6px 0 calc(var(--safe-bottom) + 6px);
      background: rgba(13,7,5,0.97);
      backdrop-filter: blur(20px);
      border-top: 1px solid var(--border);
      display: flex;
      justify-content: space-around;
      z-index: 100;
    }

    .btab {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 2px;
      padding: 6px 16px;
      cursor: pointer;
      color: #7a5e48;
      font-size: 10px;
      font-weight: 600;
      font-family: var(--font-retro);
      letter-spacing: 1px;
      text-transform: uppercase;
      transition: color 0.2s;
      border-radius: 10px;
    }
    .btab.active { color: var(--neon); }
    .btab.active svg { filter: drop-shadow(0 0 4px var(--neon)); }
    .btab svg { width: 20px; height: 20px; stroke-width: 1.8; transition: filter 0.2s; }

    /* ══════════════════════════════════════════
       INNER TABS
    ══════════════════════════════════════════ */
    .inner-tabs {
      display: flex;
      gap: 6px;
      padding: 4px 0 14px;
      overflow-x: auto;
      scrollbar-width: none;
    }

    .itab {
      padding: 6px 14px;
      border-radius: 100px;
      font-size: 12px;
      font-weight: 600;
      font-family: var(--font-retro);
      letter-spacing: 1px;
      cursor: pointer;
      border: 1px solid var(--border);
      color: #9a7a60;
      white-space: nowrap;
      transition: all 0.2s;
      text-transform: uppercase;
    }
    .itab.active {
      background: var(--neon);
      border-color: var(--neon);
      color: #000;
    }

    /* ══════════════════════════════════════════
       BUTTONS
    ══════════════════════════════════════════ */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 7px;
      padding: 11px 22px;
      border-radius: 10px;
      font-family: var(--font-retro);
      font-size: 13px;
      font-weight: 400;
      letter-spacing: 1px;
      cursor: pointer;
      border: none;
      transition: all 0.2s;
      text-transform: uppercase;
    }
    .btn-primary {
      background: linear-gradient(135deg, var(--neon), #cc4400);
      color: #fff;
      box-shadow: 0 2px 12px rgba(255,107,0,0.3);
    }
    .btn-primary:hover { box-shadow: var(--glow); transform: translateY(-1px); }
    .btn-secondary {
      background: var(--surface2);
      border: 1px solid var(--border2);
      color: var(--chrome);
    }
    .btn-secondary:hover { border-color: var(--chrome); }
    .btn-ghost { background: transparent; color: var(--muted); padding: 8px 12px; }
    .btn-danger {
      background: rgba(255,51,102,0.15);
      border: 1px solid rgba(255,51,102,0.4);
      color: var(--neon3);
    }
    .btn-icon { width: 38px; height: 38px; padding: 0; border-radius: 9px; }
    .btn-full { width: 100%; }
    .btn svg { width: 16px; height: 16px; }

    /* ══════════════════════════════════════════
       BADGES
    ══════════════════════════════════════════ */
    .badge {
      display: inline-flex;
      align-items: center;
      padding: 3px 9px;
      border-radius: 100px;
      font-size: 10px;
      font-weight: 700;
      font-family: var(--font-mono);
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    .badge-neon { background: rgba(255,107,0,0.15); color: var(--neon); border: 1px solid rgba(255,107,0,0.3); }
    .badge-green { background: rgba(0,230,118,0.12); color: var(--green); border: 1px solid rgba(0,230,118,0.3); }
    .badge-red { background: rgba(255,51,102,0.15); color: var(--neon3); border: 1px solid rgba(255,51,102,0.3); }
    .badge-chrome { background: rgba(200,168,130,0.12); color: var(--chrome2); border: 1px solid rgba(200,168,130,0.2); }
    .badge-karaoke { background: rgba(255,170,0,0.15); color: var(--neon2); border: 1px solid rgba(255,170,0,0.3); font-size: 10px; }
    .btn-karaoke-link {
      display: inline-flex; align-items: center; gap: 6px;
      margin-top: 10px; padding: 8px 16px;
      background: linear-gradient(135deg, rgba(255,170,0,0.15), rgba(255,107,0,0.15));
      border: 1px solid var(--neon2); border-radius: 20px;
      color: var(--neon2); font-family: var(--font-retro); font-size: 11px;
      letter-spacing: 1px; text-decoration: none; text-transform: uppercase;
      transition: all 0.2s; box-shadow: 0 0 8px rgba(255,170,0,0.2);
    }
    .btn-karaoke-link:hover, .btn-karaoke-link:active {
      background: linear-gradient(135deg, rgba(255,170,0,0.28), rgba(255,107,0,0.28));
      box-shadow: 0 0 16px rgba(255,170,0,0.4); color: #fff;
    }

    /* ══════════════════════════════════════════
       INPUT FIELDS
    ══════════════════════════════════════════ */
    .input-group { margin-bottom: 13px; }
    .input-label {
      display: block;
      font-size: 10px;
      font-weight: 700;
      font-family: var(--font-retro);
      letter-spacing: 2px;
      color: #9a7a60;
      text-transform: uppercase;
      margin-bottom: 5px;
    }
    .input-field {
      width: 100%;
      background: var(--surface2);
      border: 1px solid var(--border);
      border-radius: 9px;
      padding: 10px 13px;
      color: var(--text);
      font-family: var(--font-body);
      font-size: 15px;
      outline: none;
      transition: border-color 0.2s;
      resize: none;
    }
    .input-field:focus { border-color: var(--neon); box-shadow: 0 0 0 2px rgba(255,107,0,0.1); }

    .search-wrap { position: relative; margin-bottom: 14px; }
    .search-input {
      width: 100%;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 11px 14px 11px 42px;
      color: var(--text);
      font-family: var(--font-body);
      font-size: 15px;
      outline: none;
      transition: border-color 0.2s;
    }
    .search-input:focus { border-color: var(--neon); }
    .search-icon {
      position: absolute;
      left: 13px; top: 50%;
      transform: translateY(-50%);
      color: var(--muted);
      width: 17px; height: 17px;
    }

    /* ══════════════════════════════════════════
       STATS ROW
    ══════════════════════════════════════════ */
    .stats-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
      margin-bottom: 14px;
    }
    .stat-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 12px 10px;
      text-align: center;
    }
    .stat-value {
      font-family: var(--font-display);
      font-size: 26px;
      background: linear-gradient(135deg, var(--neon2), var(--neon));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      filter: drop-shadow(0 0 4px rgba(255,107,0,0.3));
    }
    .stat-label {
      font-size: 9px;
      color: #9a7a60;
      font-family: var(--font-retro);
      letter-spacing: 1.5px;
      text-transform: uppercase;
      margin-top: 2px;
    }

    /* ══════════════════════════════════════════
       ARTIST INFO BAR
    ══════════════════════════════════════════ */
    .artist-info-bar {
      background: linear-gradient(135deg, var(--surface), var(--surface2));
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 12px 14px;
      margin-bottom: 14px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .artist-info-name {
      font-family: var(--font-display);
      font-size: 18px;
      letter-spacing: 2px;
      color: var(--neon2);
    }
    .artist-info-gig {
      font-size: 12px;
      color: var(--muted);
      font-family: var(--font-retro);
      letter-spacing: 0.5px;
      margin-top: 2px;
    }

    /* ══════════════════════════════════════════
       MODAL
    ══════════════════════════════════════════ */
    .modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.8);
      backdrop-filter: blur(10px);
      z-index: 200;
      display: none;
      align-items: flex-end;
    }
    .modal-overlay.open { display: flex; }
    .modal {
      background: var(--surface);
      border: 1px solid var(--border2);
      border-top: 2px solid var(--neon);
      border-radius: 20px 20px 0 0;
      padding: 20px 18px calc(var(--safe-bottom) + 20px);
      width: 100%;
      max-height: 88vh;
      overflow-y: auto;
      animation: slideUp 0.3s ease;
      box-shadow: 0 -10px 40px rgba(255,107,0,0.15);
    }
    @keyframes slideUp {
      from { transform: translateY(100%); }
      to { transform: translateY(0); }
    }
    .modal-handle {
      width: 36px; height: 3px;
      background: var(--border2);
      border-radius: 2px;
      margin: 0 auto 18px;
    }
    .modal-title {
      font-family: var(--font-display);
      font-size: 24px;
      letter-spacing: 2px;
      margin-bottom: 14px;
      color: var(--text);
    }

    /* ══════════════════════════════════════════
       MESSAGE ITEMS
    ══════════════════════════════════════════ */
    .msg-item {
      display: flex;
      gap: 10px;
      padding: 11px 13px;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 11px;
      margin-bottom: 7px;
    }
    .msg-avatar {
      width: 30px; height: 30px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--neon), var(--neon3));
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-display);
      font-size: 13px;
      flex-shrink: 0;
      color: #fff;
    }
    .msg-name { font-size: 11px; font-weight: 700; color: var(--muted); font-family: var(--font-mono); margin-bottom: 3px; }
    .msg-text { font-size: 13px; line-height: 1.4; color: var(--text); }

    /* ══════════════════════════════════════════
       COMMENT CARDS
    ══════════════════════════════════════════ */
    .comment-card {
      padding: 13px 14px;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 11px;
      margin-bottom: 8px;
    }
    .comment-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 7px; }
    .comment-author { font-weight: 700; font-size: 13px; font-family: var(--font-retro); letter-spacing: 1px; }
    .stars { color: var(--neon2); font-size: 13px; letter-spacing: 2px; }
    .comment-text { font-size: 13px; color: #c8b090; line-height: 1.5; }
    .comment-date { font-size: 10px; color: var(--muted); margin-top: 6px; font-family: var(--font-mono); }

    /* ══════════════════════════════════════════
       TOGGLE
    ══════════════════════════════════════════ */
    .toggle-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 11px 0;
      border-bottom: 1px solid var(--border);
    }
    .toggle-label { font-size: 13px; font-weight: 500; font-family: var(--font-retro); letter-spacing: 0.5px; }
    .toggle-sub { font-size: 11px; color: var(--muted); margin-top: 2px; }
    .toggle {
      width: 42px; height: 23px;
      background: var(--border);
      border-radius: 100px;
      position: relative;
      cursor: pointer;
      transition: background 0.2s;
      flex-shrink: 0;
      border: none;
    }
    .toggle.on { background: var(--neon); }
    .toggle::after {
      content: '';
      position: absolute;
      width: 17px; height: 17px;
      background: white;
      border-radius: 50%;
      top: 3px; left: 3px;
      transition: transform 0.2s;
    }
    .toggle.on::after { transform: translateX(19px); }

    /* ══════════════════════════════════════════
       RESOURCE LINK (UG tabs)
    ══════════════════════════════════════════ */
    .ug-link {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 8px 12px;
      background: rgba(255,170,0,0.06);
      border: 1px solid rgba(255,170,0,0.2);
      border-radius: 8px;
      text-decoration: none;
      color: var(--neon2);
      font-size: 12px;
      font-family: var(--font-retro);
      letter-spacing: 0.5px;
      margin-top: 8px;
      transition: all 0.2s;
    }
    .ug-link:hover { background: rgba(255,170,0,0.12); border-color: var(--neon2); }
    .ug-link svg { width: 14px; height: 14px; flex-shrink: 0; }

    /* ══════════════════════════════════════════
       EMPTY STATE
    ══════════════════════════════════════════ */
    .empty-state {
      text-align: center;
      padding: 50px 20px;
      color: var(--muted);
    }
    .empty-state svg { width: 44px; height: 44px; margin-bottom: 14px; opacity: 0.25; }
    .empty-state p { font-size: 14px; line-height: 1.6; font-family: var(--font-retro); letter-spacing: 0.5px; }

    /* ══════════════════════════════════════════
       TOAST
    ══════════════════════════════════════════ */
    .toast {
      position: fixed;
      top: calc(var(--safe-top) + 70px);
      left: 50%;
      transform: translateX(-50%) translateY(-16px);
      background: var(--surface2);
      border: 1px solid var(--border2);
      border-radius: 100px;
      padding: 9px 18px;
      font-size: 13px;
      font-family: var(--font-retro);
      letter-spacing: 0.5px;
      white-space: nowrap;
      z-index: 999;
      opacity: 0;
      transition: all 0.3s;
      pointer-events: none;
    }
    .toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
    .toast.success { border-color: var(--neon); color: var(--neon2); box-shadow: var(--glow); }
    .toast.error { border-color: var(--neon3); color: var(--neon3); }

    /* ══════════════════════════════════════════
       LOGIN SCREEN
    ══════════════════════════════════════════ */
    .login-screen {
      min-height: 100dvh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 40px 20px;
      background:
        radial-gradient(ellipse at 30% 20%, rgba(255,107,0,0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(255,51,102,0.08) 0%, transparent 50%),
        var(--bg);
    }

    .login-jukebox {
      text-align: center;
      margin-bottom: 40px;
    }

    .login-title {
      font-family: var(--font-display);
      font-size: 72px;
      letter-spacing: 6px;
      background: linear-gradient(135deg, var(--neon2), var(--neon), var(--neon3));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      filter: drop-shadow(0 0 20px rgba(255,107,0,0.5));
      line-height: 1;
    }

    .login-subtitle {
      font-family: var(--font-retro);
      font-size: 12px;
      letter-spacing: 5px;
      color: var(--chrome);
      text-transform: uppercase;
      margin-top: 4px;
    }

    .login-card {
      background: var(--surface);
      border: 1px solid var(--border2);
      border-top: 2px solid var(--neon);
      border-radius: 16px;
      padding: 24px 20px;
      width: 100%;
      max-width: 360px;
      box-shadow: 0 10px 40px rgba(0,0,0,0.5), var(--glow);
    }

    /* ══════════════════════════════════════════
       HISTORY VIEW
    ══════════════════════════════════════════ */
    .history-gig-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 14px;
      margin-bottom: 10px;
      cursor: pointer;
      transition: border-color 0.2s;
    }
    .history-gig-card:hover { border-color: var(--neon); }
    .history-gig-name { font-family: var(--font-display); font-size: 20px; letter-spacing: 1px; }
    .history-gig-meta { font-size: 12px; color: var(--muted); font-family: var(--font-retro); margin-top: 3px; }
    .history-stats { display: flex; gap: 10px; margin-top: 10px; flex-wrap: wrap; }
    .history-stat { font-size: 11px; font-family: var(--font-mono); color: var(--chrome); }

    .divider { height: 1px; background: var(--border); margin: 14px 0; }

    /* QR box - punt 12 */
    .qr-box {
      background: var(--surface2);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 14px;
      text-align: center;
      margin-top: 14px;
    }
    .qr-label { font-size: 10px; font-family: var(--font-retro); letter-spacing: 2px; color: var(--muted); text-transform: uppercase; margin-bottom: 8px; }
    .qr-url { font-family: var(--font-mono); font-size: 12px; color: var(--neon); word-break: break-all; }
    #qr-canvas { margin: 10px auto; display: flex; align-items: center; justify-content: center; border-radius: 8px; background: white; padding: 8px; width: 176px; height: 176px; box-sizing: border-box; }

    /* Action strip */
    .action-strip { display: flex; gap: 7px; margin-top: 10px; }

    /* ══════════════════════════════════════════
       TAAL SELECTOR (punt 8)
    ══════════════════════════════════════════ */
    .lang-selector {
      display: flex;
      gap: 6px;
      flex-wrap: wrap;
      justify-content: center;
      margin-top: 16px;
    }
    .lang-btn {
      background: var(--surface2);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 5px 10px;
      font-size: 12px;
      font-family: var(--font-mono);
      color: var(--muted);
      cursor: pointer;
      transition: all 0.2s;
    }
    .lang-btn.active {
      border-color: var(--neon);
      color: var(--neon);
      background: rgba(255,107,0,0.1);
    }

    /* ══════════════════════════════════════════
       MIJN AANVRAGEN (punt 4)
    ══════════════════════════════════════════ */
    .my-request-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 10px 13px;
      margin-bottom: 7px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    /* ══════════════════════════════════════════
       NIEUWE GIG (punt 13)
    ══════════════════════════════════════════ */
    .new-gig-banner {
      background: linear-gradient(135deg, rgba(255,107,0,0.1), rgba(255,170,0,0.05));
      border: 1px solid rgba(255,107,0,0.3);
      border-radius: 12px;
      padding: 14px;
      margin-bottom: 14px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    /* ── App icon fix (punt 15) ── */

    /* ── VOTERS POPUP ── */
    .voters-popup {
      position: fixed;
      z-index: 300;
      background: var(--surface2);
      border: 1px solid var(--neon3);
      border-radius: 12px;
      padding: 12px 14px;
      min-width: 160px;
      max-width: 240px;
      box-shadow: 0 4px 24px rgba(0,0,0,0.6), 0 0 12px rgba(255,51,102,0.2);
      animation: slideUp 0.15s ease;
    }
    .voters-popup-title {
      font-family: var(--font-retro);
      font-size: 9px;
      letter-spacing: 3px;
      color: var(--neon3);
      text-transform: uppercase;
      margin-bottom: 8px;
    }
    .voters-popup-name {
      font-size: 13px;
      color: var(--text);
      padding: 3px 0;
      display: flex;
      align-items: center;
      gap: 7px;
    }
    .voters-popup-name::before {
      content: '❤';
      font-size: 10px;
      color: var(--neon3);
    }

    /* ── SONG CATEGORY SELECTOR ── */
    .cat-btn {
      display: inline-flex; align-items: center; justify-content: center;
      width: 34px; height: 34px; border-radius: 8px; border: 1px solid var(--border);
      background: var(--surface2); cursor: pointer; font-size: 16px;
      transition: all 0.15s; flex-shrink: 0;
    }
    .cat-btn:hover { border-color: var(--border2); transform: scale(1.1); }
    .cat-btn.active-core    { background: rgba(255,170,0,0.18); border-color: var(--neon2); box-shadow: 0 0 8px rgba(255,170,0,0.3); }
    .cat-btn.active-optional{ background: rgba(255,107,0,0.12); border-color: var(--neon);  box-shadow: 0 0 8px rgba(255,107,0,0.2); }
    .cat-btn.active-archived{ background: rgba(160,125,98,0.12); border-color: var(--muted); }

    /* ── REPERTOIRE MODE TOGGLE ── */
    .mode-toggle-wrap {
      display: flex; gap: 0; border: 1px solid var(--border); border-radius: 10px; overflow: hidden; margin-bottom: 14px;
    }
    .mode-btn {
      flex: 1; padding: 9px 6px; text-align: center; cursor: pointer;
      font-family: var(--font-retro); font-size: 11px; letter-spacing: 1px;
      color: var(--muted); background: var(--surface2); border: none;
      transition: all 0.2s; text-transform: uppercase;
    }
    .mode-btn.active { background: var(--neon); color: #000; font-weight: 700; }
    /* De apple-touch-icon SVG heeft een viewBox van 0 0 32 32 met padding inherent
       maar voor standalone app icoon gebruiken we een PNG-achtige aanpak */
