/* ═══════════════════════════════════════
   MNL — mnl.html styles
   Swap this file for mnl-pride.css
   to enable Pride Month design.
═══════════════════════════════════════ */

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root { --p:#b44fff; --c:#00f5ff; --bg:#04040f; }

    html { background: var(--bg); color: #dde; font-family: 'Share Tech Mono', monospace; }
    body { min-height: 100vh; overflow-x: hidden; }

    canvas { position: fixed; inset: 0; z-index: 0; }
    .scan {
      position: fixed; inset: 0; z-index: 1; pointer-events: none;
      background: repeating-linear-gradient(0deg, transparent, transparent 3px,
        rgba(0,0,0,0.04) 3px, rgba(0,0,0,0.04) 4px);
    }
    .vignette {
      position: fixed; inset: 0; z-index: 2; pointer-events: none;
      background: radial-gradient(ellipse 80% 80% at 50% 50%,
        transparent 30%, rgba(4,4,15,0.85) 100%);
    }

    .stage {
      position: relative; z-index: 10;
      min-height: 100vh; display: grid; place-items: center;
      padding: 3rem 1.2rem 4rem;
    }
    .card {
      width: min(440px, 100%);
      display: flex; flex-direction: column; align-items: center; gap: 1.8rem;
    }

    /* ── Lien retour ── */
    .back-link {
      align-self: flex-start; font-size: .6rem; letter-spacing: .2em;
      color: rgba(0,245,255,0.80); text-decoration: none; transition: color .2s;
    }
    .back-link:hover { color: var(--c); }

    /* ── Logo ── */
    .logo-block { text-align: center; }
    .logo-name {
      font-family: 'Orbitron', monospace;
      font-size: clamp(2.4rem, 10vw, 3.4rem); font-weight: 900;
      letter-spacing: .3em; color: #fff;
      text-shadow: 0 0 18px var(--p), 0 0 60px rgba(180,79,255,0.25);
      animation: glitch 11s infinite;
    }
    .logo-icon { font-family: 'Share Tech Mono', monospace; font-size: .85em; opacity: .88; letter-spacing: 0; margin-right: .1em; }
    @keyframes glitch {
      0%,88%,100%{text-shadow:0 0 18px var(--p),0 0 60px rgba(180,79,255,0.25);clip-path:none}
      89%{text-shadow:-3px 0 var(--c),3px 0 var(--p);transform:skewX(-2deg);clip-path:inset(20% 0 40% 0)}
      90%{text-shadow:3px 0 var(--c),-3px 0 var(--p);transform:skewX(2deg);clip-path:inset(55% 0 15% 0)}
      91%{text-shadow:0 0 18px var(--p),0 0 60px rgba(180,79,255,0.25);transform:none;clip-path:none}
    }
    .logo-tag { display: block; margin-top: .4rem; font-size: .6rem; letter-spacing: .45em; color: var(--p); opacity: .80; text-transform: uppercase; }

    /* ── Panneau verre ── */
    .glass {
      width: 100%; background: rgba(255,255,255,0.032);
      border: 1px solid rgba(180,79,255,0.18); border-radius: 14px;
      padding: 1.4rem; backdrop-filter: blur(20px);
      box-shadow: 0 0 60px rgba(180,79,255,0.05), inset 0 1px 0 rgba(255,255,255,0.04);
    }
    .panel-label {
      font-size: .6rem; letter-spacing: .3em; color: var(--p); opacity: .80;
      margin-bottom: 1rem; display: flex; align-items: center; gap: .6rem;
    }
    .panel-label::after { content: ''; flex: 1; height: 1px; background: linear-gradient(90deg, rgba(180,79,255,0.25), transparent); }

    /* ── Event à venir ── */
    .event-empty { font-size: .72rem; letter-spacing: .08em; color: rgba(200,180,240,0.43); text-align: center; padding: .3rem 0; }
    .event-title { font-family: 'Orbitron', monospace; font-size: .95rem; font-weight: 700; letter-spacing: .15em; color: #d0b0ff; text-shadow: 0 0 10px rgba(180,79,255,0.3); margin-bottom: .5rem; }
    .event-date  { font-size: .65rem; letter-spacing: .15em; color: var(--p); opacity: .88; margin-bottom: .8rem; }
    .event-desc  { font-size: .72rem; line-height: 1.75; letter-spacing: .05em; color: rgba(215,195,252,0.80); border-left: 1px solid rgba(180,79,255,0.2); padding-left: .8rem; margin-bottom: 1rem; }
    .event-btn {
      display: inline-flex; align-items: center; gap: .5rem;
      padding: .55rem 1rem; text-decoration: none;
      font-size: .65rem; letter-spacing: .12em; color: rgba(215,195,252,0.85);
      background: rgba(180,79,255,0.05); border: 1px solid rgba(180,79,255,0.18);
      border-radius: 8px; transition: all .2s;
    }
    .event-btn:hover { color: #e0d0ff; border-color: rgba(180,79,255,0.58); box-shadow: 0 0 14px rgba(180,79,255,0.1); transform: translateY(-1px); }

    /* ── Events passés ── */
    /* ── Past events accordion ── */
    .past-list { display: flex; flex-direction: column; gap: .4rem; }

    .past-item {
      border: 1px solid rgba(255,255,255,.05);
      border-radius: 10px;
      overflow: hidden;
      transition: border-color .25s;
      cursor: pointer;
    }
    .past-item:hover,
    .past-item.expanded {
      border-color: rgba(180,79,255,.22);
    }

    /* Collapsed header row */
    .past-item-header {
      display: flex; align-items: center; justify-content: space-between;
      gap: .8rem; padding: .6rem .85rem;
      user-select: none;
    }
    .past-item-left { display: flex; align-items: center; gap: .65rem; min-width: 0; }
    .past-item-title {
      font-size: .7rem; letter-spacing: .07em;
      color: rgba(215,195,252,.78);
      white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
      transition: color .2s;
    }
    .past-item:hover .past-item-title,
    .past-item.expanded .past-item-title { color: rgba(210,185,255,.75); }

    .past-item-date { font-size: .58rem; letter-spacing: .07em; color: rgba(180,79,255,.62); white-space: nowrap; flex-shrink: 0; }

    /* Chevron */
    .past-chevron {
      font-size: .65rem; color: rgba(180,79,255,.58);
      transition: transform .3s ease, color .2s;
      flex-shrink: 0;
    }
    .past-item.expanded .past-chevron {
      transform: rotate(90deg); color: rgba(180,79,255,.6);
    }

    /* Expandable details */
    .past-item-details {
      max-height: 0; overflow: hidden;
      transition: max-height .4s ease, opacity .3s ease, padding .3s ease;
      opacity: 0;
      padding: 0 .85rem;
    }
    .past-item.expanded .past-item-details {
      max-height: 600px; opacity: 1;
      padding: 0 .85rem .85rem;
    }

    /* Details inner content */
    .past-detail-date {
      font-size: .65rem; letter-spacing: .1em;
      color: var(--p); opacity: .85;
      margin-bottom: .7rem;
      padding-top: .1rem;
      border-top: 1px solid rgba(180,79,255,.08);
      padding-top: .65rem;
    }
    .past-detail-desc {
      font-size: .7rem; line-height: 1.75; letter-spacing: .05em;
      color: rgba(215,198,235,.75);
      border-left: 1px solid rgba(180,79,255,.15);
      padding-left: .7rem;
      margin-bottom: .8rem;
    }

    /* Past lineup */
    .past-lineup-label {
      font-size: .55rem; letter-spacing: .3em;
      color: rgba(180,79,255,.65);
      margin-bottom: .5rem; text-transform: uppercase;
    }
    .past-lineup-row {
      display: flex; gap: .8rem; align-items: baseline;
      padding: .3rem 0;
      border-bottom: 1px solid rgba(180,79,255,.05);
    }
    .past-lineup-row:last-child { border-bottom: none; }
    .past-lineup-time {
      font-size: .7rem; color: rgba(180,79,255,.78);
      min-width: 3.2rem; flex-shrink: 0;
      font-variant-numeric: tabular-nums;
    }
    .past-lineup-artist {
      font-size: .7rem; color: rgba(215,192,252,.82);
    }

    /* Past event link */
    .past-detail-link {
      display: inline-flex; align-items: center; gap: .4rem;
      margin-top: .75rem;
      font-size: .62rem; letter-spacing: .1em;
      color: rgba(180,79,255,.65); text-decoration: none;
      transition: color .2s;
    }
    .past-detail-link:hover { color: var(--p); }

    /* ── Lineup ── */
    .lineup-block { width: 100%; }

    /* Timezone switcher */
    .tz-row {
      display: flex; gap: .35rem; flex-wrap: wrap;
      margin-bottom: 1rem;
    }
    .tz-btn {
      font-family: 'Share Tech Mono', monospace;
      font-size: .58rem; letter-spacing: .12em; padding: 4px 10px;
      background: none; border: 1px solid rgba(180,79,255,.15);
      border-radius: 5px; color: rgba(180,79,255,.68);
      cursor: pointer; transition: all .2s;
    }
    .tz-btn:hover { color: #d0b0ff; border-color: rgba(180,79,255,.65); }
    .tz-btn.active {
      background: rgba(180,79,255,.12); border-color: rgba(180,79,255,.68);
      color: #d0b0ff; box-shadow: 0 0 10px rgba(180,79,255,.1);
    }
    .tz-label {
      font-size: .55rem; letter-spacing: .2em;
      color: rgba(180,79,255,.58); margin-bottom: .6rem;
    }

    /* Lineup rows */
    .lineup-row {
      display: flex; align-items: baseline; gap: .8rem;
      padding: .45rem 0;
      border-bottom: 1px solid rgba(180,79,255,.06);
    }
    .lineup-row:last-child { border-bottom: none; }
    .lineup-time {
      font-size: .75rem; letter-spacing: .05em;
      color: var(--p); opacity: .90; min-width: 3.5rem;
      flex-shrink: 0; font-variant-numeric: tabular-nums;
    }
    .lineup-artist {
      font-size: .75rem; letter-spacing: .07em; color: #d0b0ff;
    }
    .lineup-empty {
      font-size: .65rem; letter-spacing: .08em;
      color: rgba(180,79,255,.25); text-align: center; padding: .3rem 0;
    }

    /* ── Bio ── */

    .bio { width: 100%; text-align: center; }
    .bio p { font-size: .72rem; line-height: 1.85; letter-spacing: .06em; color: rgba(210,198,232,0.78); }
    .bio p::before { content: '— '; color: var(--p); opacity: .4; }
    .bio p::after  { content: ' —'; color: var(--p); opacity: .4; }

    /* ── Liens ── */
    .mnl-links { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; width: 100%; }
    .mnl-link {
      display: flex; align-items: center; gap: .5rem;
      padding: .6rem .9rem; text-decoration: none;
      font-size: .7rem; letter-spacing: .08em; color: rgba(215,195,252,0.80);
      background: rgba(180,79,255,0.03); border: 1px solid rgba(180,79,255,0.1);
      border-radius: 8px; transition: all .2s;
    }
    .mnl-link:hover { color: #e0d0ff; border-color: rgba(180,79,255,0.51); box-shadow: 0 0 14px rgba(180,79,255,0.1); transform: translateY(-1px); }
    .mnl-link svg { width: 14px; height: 14px; flex-shrink: 0; opacity: .88; }

    /* ── Timezone cycle badge ── */
    .tz-cycle {
      cursor: pointer;
      border-bottom: 1px dashed rgba(180,79,255,.35);
      transition: color .15s, border-color .15s;
      white-space: nowrap;
    }
    .tz-cycle:hover { color: var(--p); border-color: var(--p); }

    /* ── Artist links in lineup ── */
    /* Explicit metrics to match plain text — prevents browser bold/size overrides */
    .lineup-artist-link {
      font-family: 'Share Tech Mono', monospace;
      font-size: .75rem; font-weight: 400;
      color: #d0b0ff; text-decoration: none;
      border-bottom: 1px dashed rgba(180,79,255,.38);
      transition: color .15s, border-color .15s; cursor: pointer;
    }
    .lineup-artist-link:hover { color: #fff; border-color: var(--p); }
    .past-lineup-artist-link {
      font-family: 'Share Tech Mono', monospace;
      font-size: .7rem; font-weight: 400;
      color: rgba(215,192,252,.82); text-decoration: none;
      border-bottom: 1px dashed rgba(180,79,255,.22);
      transition: color .15s, border-color .15s; cursor: pointer;
    }
    .past-lineup-artist-link:hover { color: #d0b0ff; border-color: rgba(180,79,255,.5); }

    /* ── DJ link popup menu ── */
    .dj-menu {
      position: fixed; z-index: 999;
      background: rgba(4,4,15,.97);
      border: 1px solid rgba(180,79,255,.42);
      border-radius: 11px; padding: .7rem .8rem;
      backdrop-filter: blur(24px);
      box-shadow: 0 0 32px rgba(180,79,255,.18), 0 8px 32px rgba(0,0,0,.6);
      min-width: 160px;
      animation: menuIn .15s ease;
    }
    @keyframes menuIn {
      from { opacity:0; transform:translateY(-6px) scale(.97); }
      to   { opacity:1; transform:translateY(0)    scale(1);   }
    }
    .dj-menu-title {
      font-family: 'Orbitron', monospace;
      font-size: .62rem; letter-spacing: .12em;
      color: #d0b0ff; margin-bottom: .5rem;
      padding-bottom: .4rem;
      border-bottom: 1px solid rgba(180,79,255,.18);
    }
    .dj-menu-link {
      display: block; font-family: 'Share Tech Mono', monospace;
      font-size: .68rem; font-weight: 400; letter-spacing: .07em;
      color: rgba(215,192,252,.78); text-decoration: none;
      padding: .28rem .1rem; transition: color .14s;
    }
    .dj-menu-link:hover { color: #fff; }


    /* ── Stats ── */
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: .5rem;
      width: 100%;
    }
    .stat-cell {
      background: rgba(180,79,255,.04);
      border: 1px solid rgba(180,79,255,.12);
      border-radius: 10px;
      padding: .65rem .5rem;
      text-align: center;
    }
    .stat-num {
      font-family: 'Orbitron', monospace;
      font-size: .95rem; font-weight: 700;
      letter-spacing: .05em;
      color: #d0b0ff;
      text-shadow: 0 0 10px rgba(180,79,255,.3);
      display: block; margin-bottom: .2rem;
    }
    .stat-lbl {
      font-size: 0.60rem; letter-spacing: .15em;
      color: rgba(180,79,255,.55);
      text-transform: uppercase;
    }
    .stat-cell.wide {
      grid-column: span 3;
      display: flex; align-items: center; justify-content: center; gap: 1.2rem;
    }
    .stat-cell.wide .stat-num { font-size: .78rem; }

    /* ── Lineup set link ── */
    .lineup-set-link, .past-set-link {
      font-size: .65rem; color: rgba(0,245,255,.5);
      text-decoration: none; flex-shrink: 0;
      border: 1px solid rgba(0,245,255,.15);
      border-radius: 4px; padding: 1px 6px;
      transition: all .15s; letter-spacing: .05em;
    }
    .lineup-set-link:hover, .past-set-link:hover {
      color: var(--c); border-color: rgba(0,245,255,.4);
    }
    /* ── Footer ── */
    .foot { font-size: .55rem; letter-spacing: .3em; color: rgba(255,255,255,0.42); text-align: center; }
    .foot a { color: rgba(0,245,255,0.52); text-decoration: none; }
    .admin-link { color: rgba(255,255,255,.05) !important; font-size: .5rem; transition: color .4s; }
    .admin-link:hover { color: rgba(180,79,255,.3) !important; }
    .foot a:hover { color: var(--c); }

    /* ── Animations ── */
    .card > * { opacity: 0; animation: up .7s ease forwards; }
    .card > *:nth-child(1) { animation-delay: .05s; }
    .card > *:nth-child(2) { animation-delay: .18s; }
    .card > *:nth-child(3) { animation-delay: .30s; }
    .card > *:nth-child(4) { animation-delay: .40s; }
    .card > *:nth-child(5) { animation-delay: .50s; }
    .card > *:nth-child(6) { animation-delay: .58s; }
    .card > *:nth-child(7) { animation-delay: .64s; }
    @keyframes up { from { opacity:0; transform:translateY(22px); } to { opacity:1; transform:translateY(0); } }

    @media (max-width: 380px) {
      .logo-name  { font-size: 2rem; }
      .mnl-links  { grid-template-columns: 1fr; }
      .glass      { padding: 1rem; }
    }
  