  * { margin: 0; padding: 0; box-sizing: border-box; }
  :root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #14141c;
    --bg-card: #1a1a24;
    --bg-elevated: #22222e;
    --color-violet: #833AB4;
    --color-pink: #E1306C;
    --color-cyan: #00e5ff;
    --color-yellow: #FFDC5C;
    --gradient-primary: linear-gradient(135deg, #833AB4 0%, #E1306C 100%);
    --gradient-glow: radial-gradient(circle at 50% 50%, rgba(225,48,108,0.4) 0%, rgba(131,58,180,0.2) 40%, transparent 70%);
    --text-primary: #ffffff;
    --text-secondary: rgba(255,255,255,0.7);
    --text-muted: rgba(255,255,255,0.4);
    --border-subtle: rgba(255,255,255,0.08);
    --border-medium: rgba(255,255,255,0.15);
  }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
  }
  body.modal-open { overflow: hidden; }

  /* ===== NAV ===== */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 16px 40px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px;
    background: rgba(10,10,15,0.7); backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
  }
  .logo {
    display: flex; align-items: center; gap: 12px;
    font-family: 'Anton', sans-serif; font-size: 20px;
    text-decoration: none; color: var(--text-primary);
    letter-spacing: 0.05em; flex-shrink: 0;
  }
  .logo-icon {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--gradient-primary);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Anton', sans-serif; font-size: 18px; color: white;
    box-shadow: 0 0 25px rgba(225,48,108,0.5);
  }
  .nav-right { display: flex; align-items: center; gap: 24px; }
  .nav-links { display: flex; gap: 28px; align-items: center; list-style: none; }
  .nav-links a {
    color: var(--text-secondary); text-decoration: none;
    font-size: 13px; font-weight: 500; letter-spacing: 0.06em;
    text-transform: uppercase; transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--text-primary); }
  .nav-social {
    display: flex; align-items: center; gap: 8px;
    padding: 0 14px;
    border-left: 1px solid var(--border-subtle);
    border-right: 1px solid var(--border-subtle);
  }
  .nav-social a {
    width: 34px; height: 34px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-secondary);
    background: rgba(255,255,255,0.04);
    transition: all 0.25s ease;
    text-decoration: none;
  }
  .nav-social a svg { width: 16px; height: 16px; fill: currentColor; }
  .nav-social a:hover {
    background: var(--gradient-primary); color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(225,48,108,0.4);
  }
  .lang-switcher {
    display: flex; gap: 4px; padding: 5px;
    background: rgba(255,255,255,0.05); border-radius: 99px;
    border: 1px solid var(--border-subtle);
  }
  .lang-switcher a {
    background: transparent; border: 0; padding: 5px 11px;
    color: var(--text-muted); font-weight: 600; font-size: 12px;
    cursor: pointer; border-radius: 99px; transition: all 0.2s;
    text-decoration: none; display: inline-block; line-height: 1;
  }
  .lang-switcher a:hover { color: white; background: rgba(255,255,255,0.08); }
  .lang-switcher a.active { background: var(--gradient-primary); color: white; }
  .burger {
    display: none; background: transparent; border: 0; cursor: pointer;
    width: 36px; height: 36px;
    flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  }
  .burger span { display: block; width: 22px; height: 2px; background: var(--text-primary); border-radius: 2px; }

  .mobile-drawer {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: 280px; max-width: 85vw;
    background: var(--bg-secondary);
    border-left: 1px solid var(--border-subtle);
    padding: 80px 28px 32px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 99;
    display: flex; flex-direction: column; gap: 24px;
  }
  .mobile-drawer.open { transform: translateX(0); }
  .mobile-drawer ul { list-style: none; display: flex; flex-direction: column; gap: 18px; }
  .mobile-drawer a {
    color: var(--text-secondary); text-decoration: none;
    font-size: 15px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase;
  }
  .mobile-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.6);
    z-index: 98; opacity: 0; pointer-events: none; transition: opacity 0.3s;
  }
  .mobile-overlay.open { opacity: 1; pointer-events: auto; }

  /* ===== HERO ===== */
  .hero {
    min-height: 100vh; position: relative;
    display: flex; align-items: center; justify-content: center;
    padding: 120px 48px 80px; overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background: var(--gradient-glow);
    opacity: 0.7;
    animation: pulse-bg 8s ease-in-out infinite;
    pointer-events: none;
  }
  .hero-bg::before {
    content: ''; position: absolute; inset: 0;
    background:
      radial-gradient(circle at 20% 30%, rgba(131,58,180,0.3) 0%, transparent 50%),
      radial-gradient(circle at 80% 70%, rgba(225,48,108,0.3) 0%, transparent 50%);
    animation: float-bg 12s ease-in-out infinite;
  }
  @keyframes pulse-bg { 0%,100% { opacity: 0.5; } 50% { opacity: 0.8; } }
  @keyframes float-bg { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-30px); } }

  .hero-content { position: relative; z-index: 2; text-align: center; max-width: 1100px; width: 100%; }
  .live-badge {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 8px 18px; border-radius: 99px;
    background: rgba(225,48,108,0.15); border: 1px solid rgba(225,48,108,0.4);
    font-size: 12px; font-weight: 700; letter-spacing: 0.15em;
    text-transform: uppercase; margin-bottom: 32px;
  }
  .live-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #ff3366; box-shadow: 0 0 12px #ff3366;
    animation: live-pulse 1.5s ease-in-out infinite;
  }
  @keyframes live-pulse {
    0%,100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
  }
  .hero h1 {
    font-family: 'Anton', sans-serif;
    font-size: clamp(54px, 10vw, 140px);
    line-height: 0.9; letter-spacing: 0; margin-bottom: 24px;
    color: #fff;
  }
  .hero h1 .white,
  .hero h1 .accent {
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;
    padding-right: 0.08em;
    margin-right: -0.08em;
  }
  .hero h1 .white {
    background-image: linear-gradient(180deg, #fff 0%, #fff 50%, rgba(255,255,255,0.6) 100%);
  }
  .hero h1 .accent {
    background-image: var(--gradient-primary);
  }
  .hero .tagline {
    font-size: clamp(14px, 1.5vw, 20px);
    color: var(--text-secondary);
    font-weight: 400; letter-spacing: 0.1em;
    text-transform: uppercase; margin-bottom: 56px;
  }

  .player-card {
    max-width: 720px; margin: 0 auto;
    padding: 24px;
    background: rgba(26,26,36,0.6); backdrop-filter: blur(20px);
    border: 1px solid var(--border-medium); border-radius: 24px;
    display: grid; grid-template-columns: auto 1fr auto; gap: 24px; align-items: center;
  }
  .now-cover {
    width: 80px; height: 80px; border-radius: 12px;
    background: var(--gradient-primary);
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
  }
  .now-info { text-align: left; min-width: 0; }
  .now-label {
    font-size: 11px; color: var(--color-pink);
    font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
    margin-bottom: 4px;
  }
  .now-title { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
  .now-dj { font-size: 14px; color: var(--text-secondary); }
  .play-btn {
    width: 80px; height: 80px; border-radius: 50%; border: 0;
    background: var(--gradient-primary);
    display: flex; align-items: center; justify-content: center; cursor: pointer;
    box-shadow: 0 0 40px rgba(225,48,108,0.5);
    transition: transform 0.2s; position: relative;
  }
  .play-btn::before {
    content: ''; position: absolute; inset: -8px;
    border-radius: 50%; border: 2px solid rgba(225,48,108,0.4);
    animation: ring-pulse 2s ease-out infinite;
  }
  @keyframes ring-pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.4); opacity: 0; }
  }
  .play-btn:hover { transform: scale(1.05); }
  .play-icon {
    width: 0; height: 0; margin-left: 6px;
    border-left: 24px solid white;
    border-top: 14px solid transparent; border-bottom: 14px solid transparent;
  }
  .equalizer { display: flex; align-items: flex-end; justify-content: center; gap: 4px; height: 50px; }
  .equalizer span { width: 4px; background: white; border-radius: 2px; animation: eq 1.2s ease-in-out infinite; }
  .equalizer span:nth-child(1) { animation-delay: 0s; height: 30%; }
  .equalizer span:nth-child(2) { animation-delay: 0.2s; height: 80%; }
  .equalizer span:nth-child(3) { animation-delay: 0.4s; height: 50%; }
  .equalizer span:nth-child(4) { animation-delay: 0.6s; height: 100%; }
  .equalizer span:nth-child(5) { animation-delay: 0.3s; height: 60%; }
  .equalizer span:nth-child(6) { animation-delay: 0.5s; height: 40%; }
  .equalizer span:nth-child(7) { animation-delay: 0.7s; height: 90%; }
  @keyframes eq { 0%, 100% { transform: scaleY(0.3); } 50% { transform: scaleY(1); } }

  /* ===== SECTIONS ===== */
  section { padding: 100px 48px; position: relative; }
  .section-header { text-align: center; margin-bottom: 56px; }
  .section-eyebrow {
    display: inline-block;
    font-size: 12px; font-weight: 700; letter-spacing: 0.25em;
    text-transform: uppercase;
    background: var(--gradient-primary);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    margin-bottom: 16px;
  }
  .section-title {
    font-family: 'Anton', sans-serif;
    font-size: clamp(36px, 5vw, 72px);
    line-height: 1; letter-spacing: -0.01em; margin-bottom: 16px;
  }
  .section-subtitle { font-size: 16px; color: var(--text-secondary); max-width: 680px; margin: 0 auto; }

  /* ===== SHOWS ===== */
  .shows-section { background: var(--bg-secondary); }
  .shows-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px; max-width: 1280px; margin: 0 auto;
  }
  .show-card {
    background: var(--bg-card);
    border-radius: 16px; overflow: hidden;
    transition: all 0.3s;
    border: 1px solid var(--border-subtle);
    cursor: pointer; position: relative;
  }
  .show-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-pink);
    box-shadow: 0 20px 40px rgba(225,48,108,0.2);
  }
  .show-cover {
    aspect-ratio: 1;
    background: var(--gradient-primary);
    position: relative; overflow: hidden;
    display: flex; align-items: flex-end; padding: 16px;
  }
  .show-cover::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.7) 100%);
  }
  .show-cover.show-cover--clean::before {
    display: none;
  }
  .show-cover-text {
    position: relative; z-index: 1;
    font-family: 'Anton', sans-serif;
    font-size: 28px; line-height: 1; color: white;
  }
  /* Type badge */
  .card-type-badge {
    position: absolute; top: 12px; left: 12px;
    padding: 5px 10px; border-radius: 99px;
    font-size: 9px; font-weight: 700; letter-spacing: 0.15em;
    text-transform: uppercase; backdrop-filter: blur(10px);
    z-index: 2;
  }
  .show-info .card-type-badge {
    position: static;
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 10px;
    z-index: auto;
    top: auto;
    left: auto;
  }
  .badge-set-dj {
    background: rgba(225,48,108,0.85); color: white;
    border: 1px solid rgba(255,255,255,0.2);
  }
  .badge-musicale {
    background: rgba(0,229,255,0.18); color: var(--color-cyan);
    border: 1px solid rgba(0,229,255,0.5);
  }
  /* Cover gradient variants */
  .cv-1 { background: linear-gradient(135deg, #833AB4 0%, #E1306C 100%); }
  .cv-2 { background: linear-gradient(135deg, #00e5ff 0%, #833AB4 100%); }
  .cv-3 { background: linear-gradient(135deg, #E1306C 0%, #FFDC5C 100%); }
  .cv-4 { background: linear-gradient(135deg, #1a1a24 0%, #833AB4 100%); }
  .cv-5 { background: linear-gradient(135deg, #00e5ff 0%, #E1306C 100%); }
  .cv-6 { background: linear-gradient(135deg, #FFDC5C 0%, #E1306C 50%, #833AB4 100%); }
  .cv-7 { background: linear-gradient(135deg, #0a0a0f 0%, #833AB4 50%, #00e5ff 100%); }
  .cv-8 { background: linear-gradient(135deg, #FFDC5C 0%, #833AB4 100%); }

  .show-info { padding: 20px; }
  .show-meta {
    font-size: 11px; font-weight: 700; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--color-pink); margin-bottom: 8px;
  }
  .show-title { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
  .show-dj { font-size: 14px; color: var(--text-secondary); }
  .show-dj--rotation { display: inline-flex; align-items: center; gap: 5px; color: var(--color-pink); font-weight: 600; }
  .show-style {
    font-size: 13px; color: var(--text-secondary);
    display: inline-flex; align-items: center; gap: 6px;
  }
  .show-style svg { width: 12px; height: 12px; fill: var(--color-cyan); }

  /* Créneau de diffusion (calculé depuis la grille horaire) */
  .show-slot, .dj-slot {
    display: inline-flex; align-items: center; gap: 6px;
    margin-top: 8px;
    padding: 4px 10px;
    background: rgba(0,229,255,0.08);
    border: 1px solid rgba(0,229,255,0.25);
    border-radius: 99px;
    font-size: 11px; font-weight: 600;
    color: var(--color-cyan);
    letter-spacing: 0.02em;
  }
  .show-slot svg, .dj-slot svg {
    width: 11px; height: 11px;
    fill: var(--color-cyan);
    flex-shrink: 0;
  }
  .dj-card .dj-slot {
    margin: 8px auto 0;
    font-size: 10px;
    padding: 3px 8px;
  }

  /* Slot dans le modal détail DJ */
  .modal-dj .dj-modal-slot {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 14px;
    background: rgba(0,229,255,0.1);
    border: 1px solid rgba(0,229,255,0.3);
    border-radius: 99px;
    font-size: 13px; font-weight: 600;
    color: var(--color-cyan);
    margin-bottom: 20px;
  }
  .modal-dj .dj-modal-slot svg {
    width: 14px; height: 14px;
    fill: var(--color-cyan);
  }

  /* ===== EVENTS CAROUSEL ===== */
  .events-section { background: var(--bg-primary); padding: 80px 0; position: relative; }
  .events-section .section-header { padding: 0 48px; }
  .events-track-wrapper {
    overflow: hidden; padding: 0 48px 8px; position: relative;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 40px, #000 calc(100% - 40px), transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0, #000 40px, #000 calc(100% - 40px), transparent 100%);
  }
  .events-track {
    display: flex; gap: 24px; overflow-x: auto;
    scroll-snap-type: x mandatory; scrollbar-width: none; padding-bottom: 8px;
  }
  .events-track::-webkit-scrollbar { display: none; }
  .event-card {
    flex: 0 0 320px; scroll-snap-align: start;
    background: var(--bg-card); border: 1px solid var(--border-subtle);
    border-radius: 18px; overflow: hidden; cursor: pointer;
    transition: all 0.3s; position: relative;
  }
  .event-card:hover {
    transform: translateY(-6px); border-color: var(--color-pink);
    box-shadow: 0 20px 40px rgba(225,48,108,0.18);
  }
  .event-flyer {
    aspect-ratio: 4 / 5; position: relative; overflow: hidden;
    display: flex; flex-direction: column; justify-content: space-between;
    padding: 20px;
  }
  .event-flyer::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.85) 100%);
    z-index: 1;
  }
  .event-flyer-1 { background: linear-gradient(135deg, #FFDC5C 0%, #E1306C 50%, #833AB4 100%); }
  .event-flyer-2 { background: linear-gradient(135deg, #00e5ff 0%, #833AB4 50%, #0a0a0f 100%); }
  .event-flyer-3 { background: linear-gradient(135deg, #E1306C 0%, #1a1a24 100%); }
  .event-date-tag {
    position: relative; z-index: 2; align-self: flex-start;
    background: rgba(0,0,0,0.55); backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15); border-radius: 12px;
    padding: 8px 14px; text-align: center; color: white; line-height: 1;
  }
  .event-date-day { font-family: 'Anton', sans-serif; font-size: 24px; }
  .event-date-month { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; margin-top: 2px; opacity: 0.85; }
  .event-flyer-content { position: relative; z-index: 2; color: white; }
  .event-flyer-title { font-family: 'Anton', sans-serif; font-size: 26px; line-height: 1; margin-bottom: 6px; text-shadow: 0 2px 12px rgba(0,0,0,0.5); }
  .event-flyer-place { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.9; }
  .event-info { padding: 16px 20px; }
  .event-partner { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-pink); margin-bottom: 4px; }
  .event-title { font-size: 16px; font-weight: 700; }
  .events-arrows {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 100%; left: 0; right: 0;
    display: flex; justify-content: space-between;
    padding: 0 12px; pointer-events: none; z-index: 5;
  }
  .events-arrow {
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(20,20,28,0.85); backdrop-filter: blur(8px);
    border: 1px solid var(--border-medium);
    color: white; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    pointer-events: auto; transition: all 0.2s;
  }
  .events-arrow:hover { background: var(--gradient-primary); border-color: transparent; transform: scale(1.05); }
  .events-arrow svg { width: 18px; height: 18px; }

  /* ===== DJs ===== */
  .djs-section { background: var(--bg-secondary); }
  .djs-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 22px; max-width: 1280px; margin: 0 auto;
  }
  .dj-card {
    background: var(--bg-card); border: 1px solid var(--border-subtle);
    border-radius: 18px; overflow: hidden; cursor: pointer;
    transition: all 0.3s; text-align: center;
  }
  .dj-card:hover {
    transform: translateY(-6px); border-color: var(--color-pink);
    box-shadow: 0 20px 40px rgba(225,48,108,0.18);
  }
  .dj-portrait {
    aspect-ratio: 1; position: relative; overflow: hidden;
    background: var(--gradient-primary);
  }
  .dj-portrait img {
    width: 100%; height: 100%; object-fit: cover;
    filter: saturate(1.05) contrast(1.05);
  }
  .dj-portrait::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.4) 100%);
  }
  .dj-portrait-fallback {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    background: radial-gradient(circle at 30% 30%, #E1306C 0%, #833AB4 60%, #1a1a24 100%);
    font-family: 'Anton', sans-serif;
    font-size: 72px; color: rgba(255,255,255,0.85);
  }
  .dj-info { padding: 18px 14px; }
  .dj-name { font-family: 'Anton', sans-serif; font-size: 20px; letter-spacing: 0.03em; margin-bottom: 6px; }
  .dj-style { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-pink); }
  .djs-cta { text-align: center; margin-top: 48px; }

  /* ===== BUTTONS ===== */
  .btn-cta {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 28px;
    background: var(--gradient-primary); color: white; text-decoration: none;
    font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; font-size: 13px;
    border-radius: 99px; border: 0; cursor: pointer;
    box-shadow: 0 8px 24px rgba(225,48,108,0.35);
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .btn-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(225,48,108,0.5); }
  .btn-ghost {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 28px;
    background: transparent; color: white; text-decoration: none;
    font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; font-size: 13px;
    border-radius: 99px; border: 1px solid var(--border-medium);
    cursor: pointer; transition: all 0.2s;
  }
  .btn-ghost:hover { border-color: var(--color-pink); color: var(--color-pink); }

  /* ===== APPS / SOCIAL / SCHEDULE ===== */
  .apps-section { background: var(--bg-primary); }
  .apps-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 980px; margin: 0 auto; }
  .app-card {
    padding: 36px;
    background: var(--bg-card); border: 1px solid var(--border-subtle);
    border-radius: 24px;
    display: flex; align-items: center; gap: 24px;
    transition: all 0.3s; cursor: pointer; position: relative; overflow: hidden;
  }
  .app-card::before { content: ''; position: absolute; inset: 0; background: var(--gradient-primary); opacity: 0; transition: opacity 0.3s; }
  .app-card:hover { transform: translateY(-4px); border-color: var(--color-pink); }
  .app-card:hover::before { opacity: 0.05; }
  .app-icon {
    width: 72px; height: 72px; border-radius: 18px;
    background: var(--gradient-primary);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; position: relative; z-index: 1;
  }
  .app-icon svg { width: 36px; height: 36px; fill: white; }
  .app-content { position: relative; z-index: 1; min-width: 0; }
  .app-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-pink); margin-bottom: 4px; }
  .app-title { font-size: 20px; font-weight: 700; margin-bottom: 6px; }
  .app-desc { font-size: 14px; color: var(--text-secondary); }

  .social-section { background: var(--bg-secondary); padding: 80px 48px; }
  .social-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 720px; margin: 0 auto; }
  .social-card {
    padding: 30px; border-radius: 20px;
    display: flex; align-items: center; gap: 20px;
    cursor: pointer; transition: transform 0.3s; text-decoration: none; color: white;
  }
  .social-card:hover { transform: translateY(-4px); }
  .social-card.facebook { background: linear-gradient(135deg, #1877f2 0%, #0d5cb5 100%); }
  .social-card.instagram { background: linear-gradient(135deg, #833AB4 0%, #E1306C 50%, #FCAF45 100%); }
  .social-card svg { width: 44px; height: 44px; fill: white; flex-shrink: 0; }
  .social-info-title { font-size: 16px; font-weight: 700; margin-bottom: 2px; }
  .social-info-handle { font-size: 13px; opacity: 0.85; }

  .schedule-section { background: var(--bg-primary); }
  .schedule-list {
    max-width: 800px; margin: 0 auto 36px;
    background: var(--bg-card); border: 1px solid var(--border-subtle);
    border-radius: 20px; overflow: hidden;
  }
  .schedule-item {
    display: grid; grid-template-columns: 100px 1fr auto; gap: 24px; align-items: center;
    padding: 18px 28px;
    border-bottom: 1px solid var(--border-subtle);
    transition: background 0.2s;
  }
  .schedule-item:last-child { border-bottom: 0; }
  .schedule-item:hover { background: var(--bg-elevated); }
  .schedule-item.now {
    background: linear-gradient(90deg, rgba(225,48,108,0.18) 0%, rgba(131,58,180,0.08) 60%, transparent 100%);
    box-shadow: inset 4px 0 0 var(--color-pink);
  }
  .schedule-time { font-family: 'Anton', sans-serif; font-size: 22px; letter-spacing: 0.05em; }
  .schedule-item.now .schedule-time {
    background: var(--gradient-primary);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  }
  .schedule-name { font-weight: 600; font-size: 15px; }
  .schedule-dj { font-size: 13px; color: var(--text-secondary); margin-top: 2px; }
  .schedule-status {
    padding: 5px 12px; border-radius: 99px;
    font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  }
  .status-now { background: rgba(225,48,108,0.25); color: #ff5e8a; }
  .status-next { background: rgba(255,255,255,0.08); color: var(--text-muted); }
  .schedule-cta { text-align: center; }

  /* ===== FOOTER ===== */
  footer { background: #050507; padding: 80px 48px 32px; border-top: 1px solid var(--border-subtle); }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; max-width: 1280px; margin: 0 auto 48px; }
  .footer-brand { max-width: 320px; }
  .footer-brand .logo { margin-bottom: 16px; }
  .footer-brand p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
  .footer-col h4 { font-family: 'Anton', sans-serif; font-size: 14px; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 20px; color: var(--text-secondary); }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 10px; }
  .footer-col a { font-size: 14px; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
  .footer-col a:hover { color: var(--color-pink); }
  .footer-bottom { max-width: 1280px; margin: 0 auto; padding-top: 32px; border-top: 1px solid var(--border-subtle); display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: var(--text-muted); }
  .footer-social { display: flex; gap: 12px; }
  .footer-social a {
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-secondary); transition: all 0.2s;
  }
  .footer-social a:hover { background: var(--gradient-primary); color: white; transform: translateY(-2px); }
  .footer-social svg { width: 18px; height: 18px; fill: currentColor; }

  /* ===== MODALS ===== */
  .modal-overlay {
    position: fixed; inset: 0;
    background: rgba(5,5,7,0.85); backdrop-filter: blur(8px);
    z-index: 200;
    display: flex; align-items: flex-start; justify-content: center;
    padding: 60px 20px; overflow-y: auto;
    opacity: 0; pointer-events: none; transition: opacity 0.25s;
  }
  .modal-overlay.open { opacity: 1; pointer-events: auto; }
  .modal {
    background: var(--bg-card); border: 1px solid var(--border-medium);
    border-radius: 22px; width: 100%; max-width: 920px;
    overflow: hidden; transform: translateY(20px) scale(0.98);
    transition: transform 0.3s ease; position: relative;
  }
  .modal-overlay.open .modal { transform: translateY(0) scale(1); }
  .modal-close {
    position: absolute; top: 16px; right: 16px;
    width: 38px; height: 38px; border-radius: 50%;
    background: rgba(0,0,0,0.4); backdrop-filter: blur(8px);
    border: 1px solid var(--border-medium);
    color: white; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    z-index: 10; transition: all 0.2s;
  }
  .modal-close:hover { background: var(--color-pink); border-color: transparent; transform: rotate(90deg); }

  .modal-show .modal-hero {
    aspect-ratio: 16/7; position: relative; overflow: hidden;
    display: flex; align-items: flex-end; padding: 32px 40px;
  }
  .modal-show .modal-hero::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.85) 100%);
  }
  .modal-hero-content { position: relative; z-index: 1; }
  .modal-hero-eyebrow {
    font-size: 11px; font-weight: 700; letter-spacing: 0.25em;
    text-transform: uppercase; color: white; opacity: 0.9; margin-bottom: 8px;
  }
  .modal-hero-title { font-family: 'Anton', sans-serif; font-size: clamp(34px, 5vw, 56px); line-height: 1; color: white; }
  .modal-body { padding: 32px 40px 40px; }
  .modal-meta {
    display: flex; flex-wrap: wrap; gap: 24px;
    padding-bottom: 24px; margin-bottom: 24px;
    border-bottom: 1px solid var(--border-subtle);
  }
  .modal-meta-item .label { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; }
  .modal-meta-item .value { font-size: 15px; font-weight: 600; color: var(--text-primary); }
  .modal-description { font-size: 15px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 28px; }
  .modal-description p { margin: 0 0 0.85em; }
  .modal-description p:last-child { margin-bottom: 0; }
  .modal-actions { display: flex; flex-wrap: wrap; gap: 12px; }

  .modal-dj .modal-grid { display: grid; grid-template-columns: 280px 1fr; gap: 0; }
  .modal-dj .dj-portrait-large {
    aspect-ratio: 1; position: relative; overflow: hidden;
    background: var(--gradient-primary);
  }
  .modal-dj .dj-portrait-large img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top; /* garde la tête en haut, jamais coupée */
    display: block;
  }

  /* ===== Modal Émission (cover carrée à gauche, comme modal DJ) ===== */
  .modal-em .modal-grid { display: grid; grid-template-columns: 320px 1fr; gap: 0; }
  .modal-em .em-cover-large {
    aspect-ratio: 1;
    position: relative; overflow: hidden;
    background: var(--gradient-primary);
    display: flex; align-items: center; justify-content: center;
  }
  .modal-em .em-cover-large img {
    width: 100%; height: 100%;
    object-fit: cover; /* cover 1:1 pleine, jamais déformée */
    display: block;
  }
  .modal-em .em-cover-fallback {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    background: inherit;
  }
  .modal-em .modal-body { padding: 32px 36px; }
  .modal-em .em-modal-title {
    font-family: 'Anton', sans-serif;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1; margin-bottom: 20px;
  }
  .modal-em .modal-hero-eyebrow {
    font-size: 11px; font-weight: 700; letter-spacing: 0.25em;
    text-transform: uppercase; color: var(--color-pink); margin-bottom: 8px;
  }
  .modal-dj .modal-body { padding: 32px 36px; }
  .modal-dj .dj-modal-name { font-family: 'Anton', sans-serif; font-size: 38px; line-height: 1; margin-bottom: 8px; }
  /* Lien discret sur le nom DJ — rendu identique au texte */
  .dj-modal-name-link {
    text-decoration: none;
    color: inherit;      /* hérite du blanc parent — pas de bleu navigateur */
    font: inherit;       /* hérite Anton 38px — pas de reset navigateur */
    line-height: inherit;
    display: inline;
  }
  .dj-modal-name-link[href]:hover { opacity: 0.85; } /* discret, aucun changement visuel perceptible */
  .modal-dj .dj-modal-style { font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-pink); margin-bottom: 20px; }
  .modal-dj .dj-modal-bio { font-size: 15px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 24px; }
  .modal-dj .dj-modal-bio p { margin: 0 0 0.85em; }
  .modal-dj .dj-modal-bio p:last-child { margin-bottom: 0; }
  .modal-dj .dj-shows-list { background: var(--bg-elevated); border-radius: 12px; padding: 16px 20px; margin-bottom: 20px; }
  .modal-dj .dj-shows-list h5 { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 10px; }
  .modal-dj .dj-shows-list ul { list-style: none; }
  .modal-dj .dj-shows-list li { padding: 6px 0; display: flex; justify-content: space-between; gap: 16px; font-size: 14px; }
  .modal-dj .dj-shows-list li span { color: var(--color-pink); font-weight: 600; }

  .modal-epg { max-width: 1200px; }
  .modal-epg .modal-body { padding: 32px 32px 40px; }
  .modal-epg-header { margin-bottom: 24px; text-align: center; }
  .modal-epg-title { font-family: 'Anton', sans-serif; font-size: clamp(30px, 4vw, 48px); line-height: 1; margin-bottom: 8px; }
  .modal-epg-subtitle { font-size: 14px; color: var(--text-secondary); }
  .epg-wrapper { overflow-x: auto; border-radius: 14px; border: 1px solid var(--border-subtle); }
  .epg-grid {
    display: grid;
    grid-template-columns: 80px repeat(7, minmax(110px, 1fr));
    min-width: 880px;
    background: var(--bg-elevated);
  }
  .epg-cell {
    padding: 10px 8px;
    border-right: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    font-size: 12px; min-height: 56px;
    display: flex; flex-direction: column; justify-content: center;
  }
  .epg-cell:last-child { border-right: 0; }
  .epg-header { background: var(--bg-secondary); font-family: 'Anton', sans-serif; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; text-align: center; }
  .epg-time { background: var(--bg-secondary); font-family: 'Anton', sans-serif; font-size: 12px; text-align: center; }
  .epg-show { cursor: pointer; transition: background 0.2s; }
  .epg-show:hover { background: rgba(225,48,108,0.08); }
  .epg-show.musicale {
    background: rgba(0,229,255,0.05);
    border-left: 2px solid rgba(0,229,255,0.4);
  }
  .epg-show.live {
    background: linear-gradient(135deg, rgba(225,48,108,0.4) 0%, rgba(131,58,180,0.3) 100%);
    box-shadow: inset 0 0 0 2px var(--color-pink);
    position: relative;
  }
  .epg-show.live::after {
    content: 'LIVE';
    position: absolute; top: 4px; right: 4px;
    font-size: 8px; font-weight: 700; letter-spacing: 0.15em;
    background: var(--color-pink); color: white;
    padding: 2px 5px; border-radius: 4px;
  }
  .epg-show .name { font-weight: 700; font-size: 11px; line-height: 1.2; margin-bottom: 2px; color: white; }
  .epg-show .who { font-size: 10px; color: var(--text-secondary); line-height: 1.2; }
  .epg-legend {
    display: flex; flex-wrap: wrap; gap: 18px; justify-content: center;
    margin-top: 18px; font-size: 11px; color: var(--text-secondary);
  }
  .epg-legend-item { display: inline-flex; align-items: center; gap: 8px; }
  .epg-legend-dot { width: 12px; height: 12px; border-radius: 3px; }
  .epg-legend-dj { background: var(--bg-elevated); border: 1px solid var(--border-subtle); }
  .epg-legend-musicale { background: rgba(0,229,255,0.18); border: 1px solid rgba(0,229,255,0.5); }
  .epg-legend-live { background: var(--gradient-primary); }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 1024px) {
    nav { padding: 14px 28px; }
    .nav-links { gap: 22px; }
    .nav-links a { font-size: 12px; }
    .nav-social { padding: 0 10px; }
    section { padding: 80px 32px; }
    footer { padding: 64px 32px 28px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .modal-dj .modal-grid { grid-template-columns: 220px 1fr; }
  }
  @media (max-width: 768px) {
    nav { padding: 12px 16px; gap: 12px; }
    .nav-links { display: none; }
    .burger { display: flex; }
    .nav-social { padding: 0 6px; gap: 6px; border-left: 0; border-right: 0; }
    .nav-social a { width: 30px; height: 30px; }
    .nav-social a svg { width: 14px; height: 14px; }
    .lang-switcher { padding: 4px; }
    .lang-switcher a { padding: 4px 9px; font-size: 11px; }
    .logo { font-size: 17px; }
    .logo-icon { width: 32px; height: 32px; font-size: 16px; }

    .hero { padding: 100px 18px 60px; min-height: auto; }
    .hero h1 { margin-bottom: 16px; }
    .hero .tagline { margin-bottom: 36px; }

    section { padding: 56px 18px; }
    .section-header { margin-bottom: 36px; }

    .player-card { grid-template-columns: 1fr; gap: 16px; text-align: center; padding: 20px; }
    .now-cover, .play-btn { margin: 0 auto; }
    .now-info { text-align: center; }

    .shows-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .show-cover-text { font-size: 22px; }
    .show-info { padding: 14px; }
    .show-title { font-size: 15px; }
    .show-info .card-type-badge { font-size: 8px; padding: 4px 8px; margin-bottom: 8px; }

    .events-section { padding: 60px 0; }
    .events-section .section-header { padding: 0 18px; }
    .events-track-wrapper { padding: 0 18px 8px; -webkit-mask-image: none; mask-image: none; }
    .event-card { flex: 0 0 260px; }
    .events-arrows { display: none; }

    .djs-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .dj-name { font-size: 17px; }

    .apps-grid { grid-template-columns: 1fr; }
    .app-card { padding: 24px; gap: 16px; }
    .app-icon { width: 56px; height: 56px; }
    .app-icon svg { width: 28px; height: 28px; }
    .app-title { font-size: 17px; }

    .social-section { padding: 60px 18px; }
    .social-grid { grid-template-columns: 1fr; }

    .schedule-item { grid-template-columns: 70px 1fr; gap: 12px; padding: 14px 16px; }
    .schedule-status { grid-column: 1 / -1; justify-self: start; margin-top: 4px; }
    .schedule-time { font-size: 18px; }

    footer { padding: 48px 20px 24px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; margin-bottom: 32px; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }

    .modal-overlay { padding: 0; align-items: stretch; }
    .modal { border-radius: 0; min-height: 100vh; }
    .modal-show .modal-hero { aspect-ratio: 16/9; padding: 24px 20px; }
    .modal-body { padding: 24px 20px 32px; }
    .modal-dj .modal-grid,
    .modal-em .modal-grid { grid-template-columns: 1fr; }
    /* Cover 1:1 conservée même sur mobile (plus de déformation 16/10) */
    .modal-dj .dj-portrait-large,
    .modal-em .em-cover-large { aspect-ratio: 1; max-height: 60vh; }
    .modal-epg .modal-body { padding: 24px 16px 32px; }
    .epg-grid { grid-template-columns: 60px repeat(7, minmax(90px, 1fr)); min-width: 700px; }
    .epg-cell { padding: 6px 4px; min-height: 48px; font-size: 11px; }
    .epg-show .name { font-size: 10px; }
    .epg-show .who { font-size: 9px; }
  }
  @media (max-width: 380px) {
    .hero h1 { font-size: 48px; }
    .shows-grid { grid-template-columns: 1fr; }
    .djs-grid { grid-template-columns: 1fr; }
    .player-card { padding: 16px; }
    .now-cover, .play-btn { width: 64px; height: 64px; }
    .now-cover { border-radius: 10px; }
    .play-icon { border-left-width: 18px; border-top-width: 11px; border-bottom-width: 11px; }
  }

  /* ===== LOGO IMAGE (override du placeholder "T") ===== */
  .logo-icon-wrap {
    width: 36px; height: 36px;
    border-radius: 50%;
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    background: var(--gradient-primary);
    box-shadow: 0 0 25px rgba(225,48,108,0.5);
  }
  .logo-img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
  }
  .footer-brand .logo-icon-wrap { width: 36px; height: 36px; }

  @media (max-width: 768px) {
    .logo-icon-wrap { width: 32px; height: 32px; }
  }

  /* ===== Compatibilité menu WordPress (wp_nav_menu) ===== */
  .nav-links li.menu-item { margin: 0; padding: 0; }
  .nav-links li.menu-item > a { padding: 0; }

  /* ===== Menu compact, jamais sur 2 lignes ===== */
  .nav-links a { white-space: nowrap; }

  /* ===== Burger affiché dès 1100px (laptop 13") ===== */
  @media (max-width: 1100px) {
    .nav-links { display: none; }
    .burger { display: flex; }
    nav { padding: 14px 24px; gap: 16px; }
    .nav-social { padding: 0 10px; }
  }


  /* ===== Très petit smartphone (≤ 480px) : on masque les icônes sociales pour ne pas écraser le logo ===== */
  @media (max-width: 480px) {
    .nav-social { display: none; }
    .logo { font-size: 15px; }
    nav { gap: 8px; }
  }

  /* ===== Animation burger : 3 traits → croix X ===== */
  .burger { position: relative; cursor: pointer; }
  .burger span {
    transition: transform 0.3s ease, opacity 0.2s ease;
    transform-origin: center;
  }
  .burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .burger.open span:nth-child(2) { transform: scaleX(0); opacity: 0; }
  .burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ===== STICKY PLAYER (livraison 4) ===== */
  body { padding-bottom: 80px; }
  .sticky-player {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 95;
    background: rgba(10,10,15,0.96); backdrop-filter: blur(24px);
    border-top: 1px solid var(--border-medium);
    padding: 12px 24px;
    display: flex; align-items: center; gap: 16px;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 -8px 30px rgba(0,0,0,0.4);
  }
  .sticky-player.active { transform: translateY(0); }
  .sp-play {
    width: 48px; height: 48px; flex-shrink: 0;
    border-radius: 50%; border: 0; cursor: pointer;
    background: var(--gradient-primary);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 14px rgba(225,48,108,0.4);
    transition: transform 0.2s;
  }
  .sp-play:hover { transform: scale(1.05); }
  .sp-cover {
    width: 48px; height: 48px; flex-shrink: 0;
    border-radius: 8px; overflow: hidden;
    background: var(--gradient-primary);
    display: flex; align-items: center; justify-content: center;
  }
  .sp-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .equalizer-mini {
    display: flex; gap: 2px; align-items: flex-end; height: 22px;
  }
  .equalizer-mini span {
    width: 3px; background: white; border-radius: 1px;
    animation: eq 1.2s ease-in-out infinite;
  }
  .equalizer-mini span:nth-child(1) { height: 60%; animation-delay: 0s; }
  .equalizer-mini span:nth-child(2) { height: 90%; animation-delay: 0.2s; }
  .equalizer-mini span:nth-child(3) { height: 50%; animation-delay: 0.4s; }
  .equalizer-mini span:nth-child(4) { height: 80%; animation-delay: 0.6s; }
  .sp-info { flex: 1; min-width: 0; }
  .sp-label {
    font-size: 10px; color: var(--color-pink);
    font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
    display: inline-flex; align-items: center; gap: 6px; margin-bottom: 2px;
  }
  .sp-label .live-dot { width: 6px; height: 6px; }
  .sp-title { font-size: 14px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .sp-artist { font-size: 12px; color: var(--text-secondary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .sp-mute {
    width: 36px; height: 36px; flex-shrink: 0;
    background: transparent; border: 0; color: var(--text-secondary);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; transition: all 0.2s;
  }
  .sp-mute:hover { background: rgba(255,255,255,0.06); color: var(--text-primary); }
  .sp-volume {
    width: 100px; flex-shrink: 0;
    -webkit-appearance: none; appearance: none;
    height: 4px; background: rgba(255,255,255,0.15); border-radius: 2px;
    cursor: pointer;
  }
  .sp-volume::-webkit-slider-thumb {
    -webkit-appearance: none; appearance: none;
    width: 14px; height: 14px; border-radius: 50%;
    background: var(--gradient-primary); cursor: pointer;
    box-shadow: 0 0 8px rgba(225,48,108,0.5);
  }
  .sp-volume::-moz-range-thumb {
    width: 14px; height: 14px; border-radius: 50%;
    background: #E1306C; border: 0; cursor: pointer;
  }
  @media (max-width: 768px) {
    body { padding-bottom: 70px; }
    .sticky-player { padding: 10px 12px; gap: 10px; }
    .sp-volume, .sp-mute { display: none; }
    .sp-cover, .sp-play { width: 40px; height: 40px; }
    .sp-title { font-size: 13px; }
    .sp-artist { font-size: 11px; }
  }

  /* ===== Carrousels Émissions + Deejay's (livraison 4b) ===== */
  .shows-section .section-header,
  .djs-section .section-header { padding: 0 48px; }
  .shows-section, .djs-section { padding: 100px 0; }

  .shows-track-wrapper, .djs-track-wrapper {
    overflow: hidden;
    padding: 0 48px 8px;
    position: relative;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 40px, #000 calc(100% - 40px), transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0, #000 40px, #000 calc(100% - 40px), transparent 100%);
  }
  .shows-track, .djs-track {
    display: flex; gap: 24px; overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 8px;
  }
  .shows-track::-webkit-scrollbar,
  .djs-track::-webkit-scrollbar { display: none; }

  /* Cartes : largeur fixe pour le carrousel */
  .shows-track .show-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
  }
  .djs-track .dj-card {
    flex: 0 0 220px;
    scroll-snap-align: start;
  }

  /* Flèches (réutilise le style events-arrow déjà défini) */
  .shows-arrows, .djs-arrows {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 100%; left: 0; right: 0;
    display: flex; justify-content: space-between;
    padding: 0 12px; pointer-events: none;
    z-index: 5;
  }

  /* Les sections shows et djs doivent être en position relative pour que les arrows absolus fonctionnent */
  .shows-section, .djs-section { position: relative; }

  /* CTA djs reste centré */
  .djs-cta { text-align: center; margin-top: 48px; padding: 0 48px; }

  @media (max-width: 768px) {
    .shows-section, .djs-section { padding: 60px 0; }
    .shows-section .section-header,
    .djs-section .section-header { padding: 0 18px; }
    .shows-track-wrapper, .djs-track-wrapper { padding: 0 18px 8px; -webkit-mask-image: none; mask-image: none; }
    .shows-track .show-card { flex: 0 0 220px; }
    .djs-track .dj-card { flex: 0 0 170px; }
    .shows-arrows, .djs-arrows { display: none; }
  }

  /* ===== Modals plein écran (Tous DJs / Toutes émissions) ===== */
  /* L'overlay ne scroll PAS, c'est le modal interne qui scroll */
  .modal-fullscreen {
    display: block !important;
    padding: 0 !important;
    align-items: initial !important;
    overflow: hidden !important;
  }
  .modal-fullscreen .modal-fullscreen-inner {
    width: 100%;
    max-width: 100%;
    height: 100vh;
    height: 100dvh;
    border-radius: 0;
    border: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .modal-fullscreen .modal-body {
    padding: 80px 32px 60px;
    max-width: 1280px;
    margin: 0 auto;
  }
  .modal-fullscreen .djs-grid,
  .modal-fullscreen .shows-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 22px;
  }
  .modal-fullscreen .show-card { flex: none; }
  /* Le bouton fermer reste fixe en haut à droite du viewport pour qu'il ne défile pas */
  .modal-fullscreen .modal-close {
    position: fixed;
    top: 16px; right: 16px;
    z-index: 11;
  }
  @media (max-width: 768px) {
    .modal-fullscreen .modal-body { padding: 70px 16px 40px; }
    .modal-fullscreen .djs-grid,
    .modal-fullscreen .shows-grid {
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 14px;
    }
  }

  /* ===== Fix scroll iOS landscape (modal grille notamment) ===== */
  .modal-overlay {
    -webkit-overflow-scrolling: touch;
    /* dvh prend en compte la hauteur dynamique iOS (barre URL qui apparaît/disparaît) */
    height: 100vh;
    height: 100dvh;
  }
  @supports (height: 100dvh) {
    .modal-overlay { height: 100dvh; }
  }


  /* ===== Fix scroll modal grille (notamment en paysage iOS) ===== */
  /* Le modal-epg scroll en interne pour que tout le contenu soit accessible */
  #modal-epg.modal-overlay {
    align-items: flex-start;
  }
  #modal-epg .modal {
    max-height: calc(100vh - 80px);
    max-height: calc(100dvh - 80px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  @media (max-width: 768px) {
    #modal-epg .modal {
      max-height: 100vh;
      max-height: 100dvh;
      border-radius: 0;
    }
  }
  /* Sur tous les modals : fluidifier le scroll iOS */
  .modal-overlay { -webkit-overflow-scrolling: touch; }
  .modal { -webkit-overflow-scrolling: touch; }

  /* ===== Z-index : les modals "détail" passent au-dessus des modals "liste" ===== */
  /* Modals liste (épg, tous DJs, toutes émissions) : niveau 200 (par défaut) */
  /* Modals détail : niveau 220 pour s'afficher par-dessus */
  #modal-dj.modal-overlay,
  #modal-show-dj.modal-overlay,
  #modal-show-musicale.modal-overlay,
  #modal-event.modal-overlay {
    z-index: 220;
  }

  /* ===== Fix scroll iOS sur les modals détail (DJ, Émission, Événement) ===== */
  /* On fait scroller le modal interne au lieu de l'overlay (overlay scroll buggy sur iOS Safari fixed) */
  #modal-dj .modal,
  #modal-show-dj .modal,
  #modal-show-musicale .modal,
  #modal-event .modal {
    max-height: calc(100vh - 80px);
    max-height: calc(100dvh - 80px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  @media (max-width: 768px) {
    #modal-dj .modal,
    #modal-show-dj .modal,
    #modal-show-musicale .modal,
    #modal-event .modal {
      max-height: 100vh;
      max-height: 100dvh;
      border-radius: 0;
    }
  }

  /* ===== Fix scroll mobile — Modale Partenaire ===== */
  /* Même pattern que les modales DJ/Émission/Événement. Manquait dans la liste initiale. */
  #modal-partner .modal {
    max-height: calc(100vh - 80px);
    max-height: calc(100dvh - 80px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  @media (max-width: 768px) {
    #modal-partner .modal {
      max-height: 100vh;
      max-height: 100dvh;
      border-radius: 0;
    }
  }

  /* ===== Modal Événement : layout 2 colonnes (flyer gauche, contenu droite) ===== */
  /* Modale élargie (1080px) + colonne flyer 400px + image en ratio naturel (pas de crop).
     L'image est rendue en width:100%/height:auto — le flyer portrait s'affiche entièrement.
     Le fond sombre (#0a0a0e) comble l'espace éventuel sous l'image si le contenu est plus haut. */
  .modal-event { max-width: 1080px; }
  .modal-event .modal-grid { display: grid; grid-template-columns: 400px 1fr; gap: 0; }
  .modal-event .evt-flyer-col {
    position: relative;
    background: #0a0a0e;
    display: flex; align-items: flex-start;
    min-height: 300px;
  }
  .modal-event .evt-flyer-col img {
    width: 100%; height: auto;
    display: block; flex-shrink: 0;
    position: relative; z-index: 1; /* au-dessus du fallback gradient */
  }
  .modal-event .evt-flyer-fallback {
    position: absolute; inset: 0; z-index: 0;
    background: var(--gradient-primary);
  }
  .modal-event .modal-body { padding: 32px 36px; }
  .modal-event .evt-modal-title {
    font-family: 'Anton', sans-serif;
    font-size: clamp(26px, 3.5vw, 42px);
    line-height: 1; margin-bottom: 20px;
  }
  .modal-event .modal-hero-eyebrow { margin-bottom: 12px; }
  @media (max-width: 768px) {
    /* Mobile validé en 1.6.0 — conservé à l'identique */
    .modal-event { max-width: 100%; }
    .modal-event .modal-grid { grid-template-columns: 1fr; }
    .modal-event .evt-flyer-col {
      min-height: 0;
      aspect-ratio: 4 / 5;
      max-height: 55vh;
      overflow: hidden;
    }
    .modal-event .evt-flyer-col img {
      height: 100%;                    /* remplit le conteneur aspect-ratio */
      object-fit: cover; object-position: top center;
    }
    .modal-event .modal-body { padding: 24px 20px 32px; }
  }

  /* ===== Nouvelle grille EPG dynamique (.epg-grid-pro) ===== */
  .epg-grid-pro {
    display: grid;
    grid-template-columns: 70px repeat(7, minmax(110px, 1fr));
    grid-auto-rows: 56px;
    background: var(--bg-elevated);
    min-width: 880px;
    border-radius: 14px;
    overflow: hidden;
  }
  .epg-grid-pro .epg-cell {
    padding: 8px 6px;
    border-right: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    font-size: 12px;
    display: flex; flex-direction: column; justify-content: center;
  }
  .epg-grid-pro .epg-corner { background: var(--bg-secondary); }
  .epg-grid-pro .epg-empty {
    background: rgba(255,255,255,0.02);
    border-right: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
  }
  @media (max-width: 768px) {
    .epg-grid-pro {
      grid-template-columns: 50px repeat(7, minmax(90px, 1fr));
      grid-auto-rows: 50px;
      min-width: 700px;
    }
    .epg-grid-pro .epg-cell { padding: 6px 4px; font-size: 11px; }
  }

  /* ===== Super Event popup ===== */
  .super-event-popup {
    position: fixed; inset: 0;
    background: rgba(5,5,7,0.85); backdrop-filter: blur(10px);
    z-index: 300;
    display: flex; align-items: center; justify-content: center;
    padding: 24px;
    animation: tgrSeFadeIn 0.4s ease;
  }
  @keyframes tgrSeFadeIn { from { opacity: 0; } to { opacity: 1; } }
  .super-event-popup.closing { animation: tgrSeFadeOut 0.3s ease forwards; }
  @keyframes tgrSeFadeOut { from { opacity: 1; } to { opacity: 0; } }
  .super-event-popup .se-content {
    position: relative;
    width: 100%; max-width: 480px;
    aspect-ratio: 4 / 5;
    background: var(--gradient-primary);
    border-radius: 22px;
    overflow: hidden;
    padding: 32px 28px 32px;
    display: flex; flex-direction: column; justify-content: flex-end;
    color: white;
    box-shadow: 0 30px 80px rgba(225,48,108,0.4);
  }
  .super-event-popup .se-close {
    position: absolute; top: 14px; right: 14px;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(0,0,0,0.5); backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    color: white; cursor: pointer;
    font-size: 22px; line-height: 1;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s;
    z-index: 2;
  }
  .super-event-popup .se-close:hover { background: var(--color-pink); transform: rotate(90deg); }
  .super-event-popup .se-eyebrow {
    font-size: 12px; font-weight: 700; letter-spacing: 0.25em;
    text-transform: uppercase; color: white;
    background: rgba(0,0,0,0.5); backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.25);
    padding: 6px 12px; border-radius: 99px;
    align-self: flex-start; margin-bottom: 12px;
    position: relative; z-index: 1;
  }
  .super-event-popup .se-title {
    font-family: 'Anton', sans-serif;
    font-size: clamp(28px, 6vw, 48px);
    line-height: 1; margin-bottom: 10px;
    text-shadow: 0 2px 16px rgba(0,0,0,0.5);
    position: relative; z-index: 1;
  }
  .super-event-popup .se-meta {
    font-size: 14px; opacity: 0.95; margin-bottom: 20px;
    position: relative; z-index: 1;
  }
  .super-event-popup .se-cta {
    display: inline-flex; align-self: flex-start;
    padding: 14px 28px;
    background: white; color: #E1306C;
    border-radius: 99px; text-decoration: none;
    font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
    font-size: 13px;
    position: relative; z-index: 1;
    transition: transform 0.2s;
  }
  .super-event-popup .se-cta:hover { transform: scale(1.05); }
  @media (max-width: 480px) {
    .super-event-popup .se-content { aspect-ratio: 3 / 4; max-width: 360px; }
  }

  /* ===== App Download popup (mobile) ===== */
  /* Bottom-sheet slide-up, z-index 250 (Super Event = 300 > App popup = 250 > modales = 200) */
  .tgr-app-popup {
    position: fixed; inset: 0;
    background: rgba(5, 5, 7, 0.72);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 250;
    display: flex; align-items: flex-end; justify-content: center;
    opacity: 0; pointer-events: none;
    transition: opacity 0.35s ease;
  }
  .tgr-app-popup.tap-visible {
    opacity: 1; pointer-events: auto;
  }
  .tap-card {
    position: relative;
    width: 100%; max-width: 520px;
    background: linear-gradient(160deg, #1c0d22 0%, #0d0d14 100%);
    border: 1px solid rgba(225, 48, 108, 0.32);
    border-bottom: none;
    border-radius: 24px 24px 0 0;
    padding: 12px 24px 44px;
    color: #fff;
    box-shadow: 0 -8px 52px rgba(225, 48, 108, 0.22), 0 -1px 0 rgba(225, 48, 108, 0.55);
    transform: translateY(100%);
    transition: transform 0.42s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
  }
  .tgr-app-popup.tap-visible .tap-card {
    transform: translateY(0);
  }
  .tap-handle {
    width: 40px; height: 4px;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 99px;
    margin: 0 auto 22px;
  }
  .tap-close {
    position: absolute; top: 16px; right: 16px;
    width: 32px; height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.65);
    cursor: pointer;
    font-size: 20px; line-height: 1;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s, color 0.2s;
    z-index: 1;
  }
  .tap-close:hover { background: var(--color-pink, #e1306c); color: #fff; border-color: transparent; }
  .tap-eyebrow {
    font-size: 11px; font-weight: 700; letter-spacing: 0.22em;
    text-transform: uppercase; color: var(--color-pink, #e1306c);
    margin-bottom: 10px;
  }
  .tap-title {
    font-family: 'Anton', sans-serif;
    font-size: clamp(26px, 7vw, 34px);
    line-height: 1.05; margin-bottom: 10px;
    color: #fff;
  }
  .tap-text {
    font-size: 14px; line-height: 1.58;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 22px;
  }
  .tap-cta {
    display: inline-flex; align-items: center;
    padding: 14px 30px;
    background: linear-gradient(135deg, #e1306c 0%, #9b1248 100%);
    color: #fff; text-decoration: none;
    border-radius: 99px;
    font-weight: 700; font-size: 15px; letter-spacing: 0.04em;
    box-shadow: 0 4px 22px rgba(225, 48, 108, 0.45);
    transition: transform 0.2s, box-shadow 0.2s;
    margin-bottom: 14px;
  }
  .tap-cta:hover, .tap-cta:focus {
    transform: scale(1.04);
    box-shadow: 0 6px 30px rgba(225, 48, 108, 0.62);
    color: #fff;
  }
  .tap-store-badge {
    font-size: 11px; letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
  }

  /* ===== Section Partenaires ===== */
  .partners-section { background: var(--bg-secondary); padding: 80px 48px; }
  .partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
  }
  .partner-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    padding: 28px 20px;
    height: 100px;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  .partner-card:hover {
    background: rgba(255,255,255,0.07);
    border-color: var(--color-pink);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(225,48,108,0.15);
  }
  .partner-card img {
    max-width: 100%; max-height: 60px;
    object-fit: contain;
    opacity: 0.95;
    transition: opacity 0.3s;
  }
  .partner-card:hover img { opacity: 1; }
  .partner-name-fallback {
    font-family: 'Anton', sans-serif;
    font-size: 20px; color: var(--text-secondary);
    text-align: center; letter-spacing: 0.05em;
  }
  @media (max-width: 768px) {
    .partners-section { padding: 60px 18px; }
    .partners-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .partner-card { height: 80px; padding: 18px 12px; }
  }

  /* ===== Modal Partenaire ===== */
  #modal-partner .partner-modal-logo {
    background: white;
    padding: 40px;
    display: flex; align-items: center; justify-content: center;
    min-height: 180px;
  }
  #modal-partner .partner-modal-logo img {
    max-width: 70%; max-height: 140px;
    object-fit: contain;
  }
  #modal-partner .modal-body {
    text-align: center;
  }
  #modal-partner .dj-modal-name {
    margin-bottom: 16px;
  }
  #modal-partner .modal-description {
    text-align: left;
    margin-bottom: 24px;
  }
  #modal-partner .modal-actions {
    justify-content: center;
  }

  /* Curseur pointer + accessibilité clavier sur les cartes partenaire */
  .partner-card { cursor: pointer; }
  .partner-card:focus { outline: 2px solid var(--color-pink); outline-offset: 4px; }

  /* ==========================================================================
     PAGE CONTACT
     ========================================================================== */
  .contact-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 24px 120px;
  }
  .contact-hero {
    text-align: center;
    margin-bottom: 48px;
  }
  .contact-hero .section-title {
    margin-top: 8px;
    margin-bottom: 16px;
  }
  .contact-intro {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.6;
    max-width: 640px;
    margin: 0 auto;
  }
  .contact-intro p { margin: 0; }

  .contact-alert {
    max-width: 720px;
    margin: 0 auto 32px;
    padding: 18px 22px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.5;
    border: 1px solid var(--border-subtle);
  }
  .contact-alert strong {
    display: block;
    margin-bottom: 4px;
    font-weight: 700;
    letter-spacing: 0.04em;
  }
  .contact-alert--success {
    background: rgba(0, 229, 255, 0.08);
    border-color: rgba(0, 229, 255, 0.4);
    color: var(--color-cyan);
  }
  .contact-alert--error {
    background: rgba(225, 48, 108, 0.08);
    border-color: rgba(225, 48, 108, 0.45);
    color: var(--color-pink);
  }

  .contact-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 32px;
    align-items: start;
  }

  .contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  .contact-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .contact-row label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
  }
  .contact-row label .req {
    color: var(--color-pink);
  }
  .contact-row input,
  .contact-row textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    color: #fff;
    font-family: inherit;
    font-size: 15px;
    padding: 14px 16px;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  }
  .contact-row input:hover,
  .contact-row textarea:hover {
    border-color: rgba(255, 255, 255, 0.18);
  }
  .contact-row input:focus,
  .contact-row textarea:focus {
    outline: none;
    border-color: var(--color-pink);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 0 3px rgba(225, 48, 108, 0.15);
  }
  .contact-row textarea {
    resize: vertical;
    min-height: 160px;
    line-height: 1.5;
  }
  .contact-row .has-error {
    border-color: rgba(225, 48, 108, 0.55);
    background: rgba(225, 48, 108, 0.05);
  }
  .contact-hint {
    font-size: 12px;
    color: var(--text-muted);
  }

  .contact-actions {
    margin-top: 8px;
    align-items: flex-start;
    gap: 12px;
  }
  .contact-submit {
    align-self: flex-start;
    padding: 14px 28px;
    border: none;
    border-radius: 999px;
    background: var(--color-pink);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  }
  .contact-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(225, 48, 108, 0.35);
  }
  .contact-submit:active { transform: translateY(0); }
  .contact-legal {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
  }
  .contact-legal a {
    color: var(--color-cyan);
    text-decoration: underline;
  }

  .contact-aside .contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 32px;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
  }
  .contact-aside h3 {
    margin: 0 0 6px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.04em;
  }
  .contact-aside h4 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
  }
  .contact-aside p { margin: 0 0 4px; }
  .contact-card-divider {
    height: 1px;
    background: var(--border-subtle);
    margin: 24px 0;
  }
  .contact-socials {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .contact-socials a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.2s;
  }
  .contact-socials a svg { fill: currentColor; width: 20px; height: 20px; flex-shrink: 0; }
  .contact-socials a:hover { color: var(--color-pink); }

  @media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; }
  }
  @media (max-width: 600px) {
    .contact-page { padding: 56px 16px 80px; }
    .contact-form,
    .contact-aside .contact-card { padding: 22px; border-radius: 14px; }
    .contact-submit { width: 100%; text-align: center; }
  }

  /* ==========================================================================
     MODAL CONTACT (superposition, ne coupe pas le sticky player)
     ========================================================================== */
  .modal-contact {
    width: min(960px, 100%);
    max-width: 960px;
    padding: 0;
    overflow: hidden;
  }
  .contact-modal-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    min-height: 0;
  }
  .contact-modal-form-col {
    padding: 36px 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-height: 80vh;
    overflow-y: auto;
  }
  .contact-modal-header { margin-bottom: 4px; }
  .contact-modal-header .section-eyebrow {
    margin-bottom: 8px;
  }
  .contact-modal-title {
    margin: 0 0 6px;
    font-family: 'Anton', 'Inter', sans-serif;
    font-size: 36px;
    line-height: 1;
    letter-spacing: 0.01em;
    color: #fff;
    text-transform: uppercase;
  }
  .contact-modal-subtitle {
    margin: 0;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.5;
  }

  .contact-modal-alert {
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.5;
    border: 1px solid var(--border-subtle);
  }
  .contact-modal-alert strong {
    display: inline-block;
    margin-right: 4px;
    font-weight: 700;
  }
  .contact-modal-alert--success {
    background: rgba(0, 229, 255, 0.08);
    border-color: rgba(0, 229, 255, 0.4);
    color: var(--color-cyan);
  }
  .contact-modal-alert--error {
    background: rgba(225, 48, 108, 0.08);
    border-color: rgba(225, 48, 108, 0.45);
    color: var(--color-pink);
  }
  .contact-modal-alert ul { color: inherit; }

  .contact-form--modal {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
  }

  .contact-modal-aside {
    background: rgba(255, 255, 255, 0.02);
    border-left: 1px solid var(--border-subtle);
    padding: 36px 32px;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
  }
  .contact-modal-aside h4 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
  }
  .contact-modal-aside h4:first-of-type {
    margin-top: 0;
  }
  .contact-modal-aside p { margin: 0 0 4px; }

  /* Spinner sur le bouton pendant l'envoi */
  .contact-submit { position: relative; }
  .contact-submit-spinner {
    position: absolute;
    top: 50%; left: 50%;
    width: 18px; height: 18px;
    margin: -9px 0 0 -9px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-top-color: #fff;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.15s, transform 0.15s;
    animation: tgr-spin 0.8s linear infinite;
    pointer-events: none;
  }
  .contact-submit.is-loading { color: transparent; }
  .contact-submit.is-loading .contact-submit-spinner {
    opacity: 1;
    transform: scale(1);
  }
  .contact-submit:disabled {
    cursor: wait;
    transform: none;
    box-shadow: none;
  }
  @keyframes tgr-spin {
    to { transform: rotate(360deg); }
  }

  @media (max-width: 820px) {
    .modal-contact { width: 100%; max-width: 100%; max-height: 100vh; overflow-y: auto; -webkit-overflow-scrolling: touch; border-radius: 16px; }
    .contact-modal-grid { grid-template-columns: 1fr; }
    .contact-modal-form-col {
      max-height: none;
      padding: 28px 22px 24px;
      gap: 16px;
    }
    .contact-modal-aside {
      border-left: none;
      border-top: 1px solid var(--border-subtle);
      padding: 22px 22px 26px;
      order: 2;
    }
    .contact-modal-title { font-size: 30px; }
    .contact-form--modal .contact-row textarea { min-height: 120px; }
    .contact-form--modal .contact-submit { width: 100%; text-align: center; }
  }
  @media (max-width: 480px) {
    .contact-modal-form-col { padding: 24px 18px 20px; }
    .contact-modal-aside { padding: 20px 18px 24px; }
    .contact-modal-title { font-size: 26px; }
  }

  /* ==========================================================================
     OVERLAY LÉGAL DYNAMIQUE — v1.3.0 (pages WordPress + REST API fetch)
     ========================================================================== */

  /* Panneau centré, plus large qu'une modale standard */
  .modal.modal-legal {
    width: min(760px, 100%);
    max-width: 760px;
    max-height: 92vh;
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }

  /* Bouton fermeture */
  .modal-legal .modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 10;
  }

  /* ——— État : chargement ——— */
  .legal-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 240px;
    padding: 40px;
  }
  .legal-spinner {
    width: 36px;
    height: 36px;
    border: 3px solid rgba(255, 255, 255, 0.08);
    border-top-color: var(--color-pink);
    border-radius: 50%;
    animation: tgr-spin 0.75s linear infinite;
  }
  @keyframes tgr-spin { to { transform: rotate(360deg); } }

  /* ——— État : pages non configurées ——— */
  .legal-unconfigured {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 240px;
    padding: 40px;
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
  }
  .legal-unconfigured a {
    color: var(--color-cyan);
    text-decoration: underline;
    display: inline-block;
    margin-top: 8px;
  }

  /* ——— Zone de défilement du contenu ——— */
  .legal-modal-scroll {
    padding: 36px 44px 36px;
    overflow-y: auto;
    flex: 1;
    min-height: 0;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
  }

  /* Titre de la page légale */
  .legal-modal-title {
    margin: 0 48px 20px 0;
    font-family: 'Anton', 'Inter', sans-serif;
    font-size: clamp(22px, 4vw, 32px);
    line-height: 1.12;
    letter-spacing: 0.02em;
    color: #fff;
    text-transform: none;
  }

  /* ——— Corps du contenu WordPress ——— */
  .legal-modal-body {
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
    line-height: 1.7;
  }
  /* Titres générés par l'éditeur WP */
  .legal-modal-body h1,
  .legal-modal-body h2 {
    margin: 28px 0 10px;
    font-size: clamp(17px, 2.5vw, 20px);
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.01em;
  }
  .legal-modal-body h3 {
    margin: 22px 0 8px;
    font-size: 15px;
    font-weight: 700;
    color: var(--color-cyan);
    letter-spacing: 0.02em;
  }
  .legal-modal-body h4,
  .legal-modal-body h5,
  .legal-modal-body h6 {
    margin: 16px 0 6px;
    font-size: 14px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.75);
  }
  .legal-modal-body p { margin: 0 0 12px; }
  .legal-modal-body ul,
  .legal-modal-body ol {
    margin: 0 0 14px;
    padding-left: 1.4em;
  }
  .legal-modal-body li { margin-bottom: 6px; }
  .legal-modal-body a {
    color: var(--color-cyan);
    text-decoration: underline;
  }
  .legal-modal-body strong { color: rgba(255, 255, 255, 0.95); }
  .legal-modal-body em { font-style: italic; }
  .legal-modal-body hr {
    border: none;
    border-top: 1px solid var(--border-subtle);
    margin: 24px 0;
  }

  /* Blocks Gutenberg courants dans le contenu légal */
  .legal-modal-body .wp-block-group,
  .legal-modal-body .wp-block-column { margin-bottom: 14px; }
  .legal-modal-body figure { margin: 0 0 16px; }

  /* ——— Bloc SGAE (visible seulement pour copyright) ——— */
  .legal-sgae-wrap {
    display: none; /* masqué par défaut ; affiché via data-legal-type="copyright" */
    margin: 0 0 24px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    text-align: center;
  }
  #modal-legal[data-legal-type="copyright"] .legal-sgae-wrap { display: block; }
  .legal-sgae-logo {
    max-width: 220px;
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: inline-block;
  }
  .legal-sgae-placeholder {
    font-size: 13px;
    color: var(--color-pink);
    margin: 0 0 16px;
    line-height: 1.45;
  }

  /* ——— Contact legal link ——— */
  .contact-page .contact-legal a {
    color: var(--color-cyan);
    text-decoration: underline;
    cursor: pointer;
  }

  /* ——— Responsive ——— */
  @media (max-width: 600px) {
    .legal-modal-scroll { padding: 24px 20px 28px; }
    .legal-modal-title { margin-right: 44px; font-size: 22px; }
  }

  /* ——— Rotation DJs — cartes et modales émissions (Phase 2B) ——— */
  .modal-rotation-item { width: 100%; flex-basis: 100%; }
  .modal-rotation-item .value { font-size: 14px; font-weight: 400; padding-top: 2px; }
  .em-rotation-row {
    display: flex; align-items: center; gap: 14px;
    padding: 6px 0; border-bottom: 1px solid var(--border-subtle);
  }
  .em-rotation-row:last-child { border-bottom: none; }
  .em-rotation-day {
    min-width: 92px; font-size: 11px; font-weight: 700;
    letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted);
  }
  .em-rotation-dj { font-size: 14px; font-weight: 600; color: var(--text-primary); }
  @media (max-width: 600px) {
    .em-rotation-day { min-width: 72px; font-size: 10px; }
    .em-rotation-dj { font-size: 13px; }
  }

/* ============================================================
   SINGLE DJ — Page individuelle /deejays/{slug}/   (v1.6.5)
   Aligné sur le modal DJ existant
   ============================================================ */

/* Wrapper page — clearance nav fixe */
.single-dj-main {
  background: var(--bg-primary);
  min-height: 100vh;
  padding-top: 102px; /* nav ≈70px + 32px marge */
}

/* Barre admin WP (body.admin-bar) — desktop ≥600px */
.admin-bar .single-dj-main { padding-top: 134px; }

/* Centrage + marge intérieure */
.single-dj-page-wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

/* ── Fil d'ariane discret (au-dessus de la carte) ──
   Reset complet des styles hérités de la règle globale `nav { position: fixed… }` */
.single-dj-breadcrumb {
  position: static;           /* ← CAUSE DU BUG : nav global = fixed; on remet en flux normal */
  top: auto; left: auto; right: auto;
  z-index: auto;
  background: transparent;    /* annule le fond sombre du header nav */
  backdrop-filter: none;      /* annule le blur du header nav */
  -webkit-backdrop-filter: none;
  border-bottom: none;        /* annule la bordure du header nav */
  display: block;             /* annule le display:flex du header nav */
  padding: 0 0 16px;
  gap: normal;
}

.breadcrumb-list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
}

.breadcrumb-list a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb-list a:hover         { color: var(--color-pink); }
.breadcrumb-list [aria-current="page"] { color: var(--text-secondary); }
.breadcrumb-sep { color: var(--text-muted); user-select: none; }

/* ── Carte principale — style .modal-dj ── */
.single-dj-card {
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: 22px;
  overflow: hidden;
}

/* Grille — identique à .modal-dj .modal-grid */
.single-dj-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
}

/* Portrait — identique à .modal-dj .dj-portrait-large */
.single-dj-portrait-wrap {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  background: var(--gradient-primary);
}

.single-dj-portrait {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.single-dj-portrait-fallback {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Anton', sans-serif;
  font-size: 80px;
  color: rgba(255, 255, 255, 0.9);
}

/* Corps — identique à .modal-dj .modal-body */
.single-dj-body { padding: 32px 36px; }

/* Style musical — identique à .modal-dj .dj-modal-style */
.single-dj-style {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--color-pink);
  margin-bottom: 20px;
}

/* H1 — identique à .modal-dj .dj-modal-name */
.single-dj-name {
  font-family: 'Anton', sans-serif;
  font-size: 38px; line-height: 1;
  color: var(--text-primary);
  margin: 0 0 8px;
}

/* Créneaux */
.single-dj-slots {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text-muted);
  margin-bottom: 20px;
}

.single-dj-slots .slot-icon {
  width: 14px; height: 14px;
  fill: var(--text-muted); flex-shrink: 0;
}

/* Bio — identique à .modal-dj .dj-modal-bio */
.single-dj-bio {
  font-size: 15px; color: var(--text-secondary);
  line-height: 1.7; margin-bottom: 24px;
}

.single-dj-bio p { margin: 0 0 0.85em; }
.single-dj-bio p:last-child { margin-bottom: 0; }

/* Réseaux sociaux — identique à .modal-actions */
.single-dj-social {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-bottom: 20px;
}

.single-dj-social .btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
}

.social-icon {
  width: 15px; height: 15px;
  fill: currentColor; flex-shrink: 0;
}

/* Bouton retour */
.single-dj-back .btn-back {
  font-size: 13px; opacity: 0.6; transition: opacity 0.2s;
}

.single-dj-back .btn-back:hover { opacity: 1; }

/* ── Responsive 1024px — identique à .modal-dj ── */
@media (max-width: 1024px) {
  .single-dj-grid { grid-template-columns: 220px 1fr; }
}

/* ── Responsive 768px ── */
@media (max-width: 768px) {
  .single-dj-main            { padding-top: 90px; }
  .admin-bar .single-dj-main { padding-top: 122px; }
  .single-dj-page-wrap       { padding: 0 0 64px; }
  /* Carte pleine largeur sans border-radius — identique à .modal sur mobile */
  .single-dj-card            { border-radius: 0; border-left: 0; border-right: 0; }
  .single-dj-grid            { grid-template-columns: 1fr; }
  /* Portrait hauteur limitée — identique à .modal-dj .dj-portrait-large mobile */
  .single-dj-portrait-wrap   { aspect-ratio: 1; max-height: 60vh; }
  .single-dj-body            { padding: 24px 20px 32px; }
  .single-dj-name            { font-size: 32px; }
  .single-dj-breadcrumb      { padding: 0 16px 14px; }
}

/* ── Admin bar mobile ≤600px : barre admin = 46px ── */
@media (max-width: 600px) {
  .admin-bar .single-dj-main { padding-top: 136px; }
}
