    /* ── Variables nouvelles ── */
    :root {
      --ink:          #0a0a0a;
      --ink-soft:     #111111;
      --surface:      #141414;
      --surface-2:    #1a1a1a;
      --muted:        #888070;
      --muted-2:      #5a5550;
      --font-display: 'Playfair Display', Georgia, serif;
      --font-body:    'DM Sans', sans-serif;

      /* Couleurs par catégorie */
      --cat-concert:   #ce492a;
      --cat-festival:  #9b59b6;
      --cat-soiree:    #2980b9;
      --cat-theatre:   #27ae60;
      --cat-sport:     #e67e22;
      --cat-culture:   #c0392b;
    }

    /* ── Base overrides page sombre ── */
    body {
      font-family: var(--font-body);
      background: var(--ink);
      color: var(--white);
    }

    /* ── Header sombre ── */
    .header .header-blur {
      background: rgba(10,10,10,0.85) !important;
      backdrop-filter: blur(20px) !important;
      -webkit-backdrop-filter: blur(20px) !important;
      border-bottom-color: rgba(255,255,255,0.06) !important;
      box-shadow: none !important;
    }
    .header.scrolled .header-blur {
      background: rgba(10,10,10,0.95) !important;
      box-shadow: 0 1px 0 rgba(255,255,255,0.05) !important;
    }
    .header .logo-img       { filter: brightness(0) invert(1) !important; }
    .header .nav-link       { color: rgba(255,255,255,0.6) !important; }
    .header .nav-link:hover { color: #fff !important; background: rgba(255,255,255,0.07) !important; }
    .header .nav-link-auth  { color: rgba(255,255,255,0.7) !important; }
    .header .nav-link-auth:hover { color: #fff !important; }
    .header .search-trigger {
      background: rgba(255,255,255,0.08) !important;
      color: rgba(255,255,255,0.5) !important;
      border-color: transparent !important;
    }
    .header .search-trigger:hover { background: rgba(255,255,255,0.13) !important; color:#fff !important; }
    .header .search-trigger kbd {
      background: rgba(255,255,255,0.06) !important;
      border-color: rgba(255,255,255,0.12) !important;
      color: rgba(255,255,255,0.3) !important;
    }
    .header .mobile-toggle span { background: #fff !important; }

    /* ── HERO COMPACT ── */
    .events-hero {
      position: relative;
      padding: calc(72px + 4rem) 0 3rem;
      overflow: hidden;
    }

    .events-hero-bg {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 80% 60% at 60% 40%, rgba(206,73,42,0.07) 0%, transparent 70%),
        radial-gradient(ellipse 50% 40% at 20% 80%, rgba(155,89,182,0.05) 0%, transparent 60%);
    }

    /* Grille décorative en fond */
    .events-hero-grid {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
      background-size: 60px 60px;
      mask-image: linear-gradient(to bottom, transparent, rgba(0,0,0,0.4) 30%, rgba(0,0,0,0.4) 70%, transparent);
    }

    .events-hero-content {
      position: relative;
      z-index: 1;
    }

    .hero-eyebrow {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.6875rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--primary);
      margin-bottom: 1rem;
    }

    .hero-eyebrow::before {
      content: '';
      width: 20px;
      height: 1px;
      background: var(--primary);
    }

    .events-hero-title {
      font-family: var(--font-display);
      font-size: clamp(2rem, 4.5vw, 3.75rem);
      font-weight: 900;
      line-height: 1.05;
      letter-spacing: -0.02em;
      margin-bottom: 1.25rem;
    }

    .events-hero-title em {
      font-style: italic;
      color: var(--primary);
    }

    .events-hero-sub {
      font-size: 1rem;
      color: rgba(255,255,255,0.45);
      max-width: 520px;
      line-height: 1.7;
    }

    /* Compteur live */
    .events-count-bar {
      display: flex;
      align-items: center;
      gap: 2rem;
      margin-top: 2rem;
      padding-top: 2rem;
      border-top: 1px solid rgba(255,255,255,0.06);
    }

    .count-item { display: flex; align-items: baseline; gap: 0.5rem; }

    .count-num {
      font-family: var(--font-display);
      font-size: 1.75rem;
      font-weight: 700;
      color: var(--white);
    }

    .count-label {
      font-size: 0.8125rem;
      color: var(--muted);
    }

    .count-sep {
      width: 1px;
      height: 28px;
      background: rgba(255,255,255,0.08);
    }

    /* ── LAYOUT PRINCIPAL ── */
    .events-layout {
      padding: 3rem 0 6rem;
    }

    /* ── ZONE EVENTS ── */
    .events-main { min-width: 0; }

    /* Barre de résultats */
    .results-bar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 1.5rem;
      gap: 1rem;
    }

    .results-count {
      font-size: 0.875rem;
      color: var(--muted);
    }

    .results-count strong { color: var(--white); }

    .view-toggle {
      display: flex;
      gap: 0.25rem;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 8px;
      padding: 0.25rem;
    }

    .view-btn {
      width: 30px;
      height: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 6px;
      background: none;
      border: none;
      color: rgba(255,255,255,0.35);
      cursor: pointer;
      font-size: 0.8125rem;
      transition: all 0.15s;
    }

    .view-btn.active  { background: rgba(255,255,255,0.1); color: var(--white); }
    .view-btn:hover:not(.active) { color: rgba(255,255,255,0.7); }

    /* ── CARTES ÉVÉNEMENTS ÉDITORIALES ── */
    .events-list { display: flex; flex-direction: column; gap: 1px; }

    /* La "signature" unique de ces cartes :
       horizontales, avec accent coloré à gauche, détails riches */
    .event-card-h {
      display: grid;
      grid-template-columns: 280px 1fr;
      background: var(--surface);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 14px;
      overflow: hidden;
      position: relative;
      transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
      animation: cardIn 0.4s both;
      margin-bottom: 2rem;
    }

    .event-card-h:hover {
      border-color: rgba(255,255,255,0.14);
      transform: translateY(-2px);
      box-shadow: 0 12px 40px rgba(0,0,0,0.45);
    }

    @keyframes cardIn {
      from { opacity: 0; transform: translateY(16px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* Délai en cascade pour les cartes */
    .event-card-h:nth-child(1) { animation-delay: 0.05s; }
    .event-card-h:nth-child(2) { animation-delay: 0.1s; }
    .event-card-h:nth-child(3) { animation-delay: 0.15s; }
    .event-card-h:nth-child(4) { animation-delay: 0.2s; }
    .event-card-h:nth-child(5) { animation-delay: 0.25s; }
    .event-card-h:nth-child(6) { animation-delay: 0.3s; }

    /* Ligne d'accent catégorie à gauche */
    .event-card-h::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 3px;
      background: var(--cat-color, var(--primary));
      border-radius: 3px 0 0 3px;
    }

    /* Image */
    .ecard-img {
      position: relative;
      overflow: hidden;
    }

    .ecard-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .event-card-h:hover .ecard-img img { transform: scale(1.06); }

    /* Overlay catégorie */
    .ecard-cat-badge {
      position: absolute;
      top: 0.875rem;
      left: 0.875rem;
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      padding: 0.3rem 0.7rem;
      background: rgba(10,10,10,0.75);
      backdrop-filter: blur(8px);
      border-radius: 6px;
      font-size: 0.6875rem;
      font-weight: 600;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      color: var(--white);
      border: 1px solid rgba(255,255,255,0.1);
    }

    .ecard-cat-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--cat-color, var(--primary));
    }

    /* Badge "En vedette" ou "Populaire" */
    .ecard-featured {
      position: absolute;
      bottom: 0.875rem;
      left: 0.875rem;
      display: inline-flex;
      align-items: center;
      gap: 0.3rem;
      padding: 0.25rem 0.6rem;
      background: rgba(var(--primary-rgb),0.9);
      border-radius: 5px;
      font-size: 0.625rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #fff;
    }

    /* Overlay hover → bouton voir */
    .ecard-img-overlay {
      position: absolute;
      inset: 0;
      background: rgba(10,10,10,0.6);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.25s;
    }

    .event-card-h:hover .ecard-img-overlay { opacity: 1; }

    .ecard-see-btn {
      padding: 0.625rem 1.25rem;
      background: var(--white);
      color: var(--ink);
      border-radius: 8px;
      font-size: 0.875rem;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 0.4rem;
      transform: translateY(6px);
      transition: transform 0.25s;
    }

    .event-card-h:hover .ecard-see-btn { transform: translateY(0); }

    /* Contenu */
    .ecard-content {
      padding: 1.375rem 1.5rem 1.375rem 1.375rem;
      display: flex;
      flex-direction: column;
      gap: 0;
      min-width: 0;
    }

    /* Ligne du haut : date + vues */
    .ecard-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 0.625rem;
    }

    .ecard-date-chip {
      display: flex;
      align-items: center;
      gap: 0.4rem;
      font-size: 0.75rem;
      color: var(--muted);
    }

    .ecard-date-chip i { color: var(--primary); font-size: 0.6875rem; }

    .ecard-views {
      display: flex;
      align-items: center;
      gap: 0.3rem;
      font-size: 0.6875rem;
      color: var(--muted-2);
    }

    .ecard-views i { font-size: 0.625rem; }

    /* Titre */
    .ecard-title {
      font-family: var(--font-display);
      font-size: 1.1875rem;
      font-weight: 700;
      line-height: 1.25;
      letter-spacing: -0.01em;
      color: var(--white);
      margin-bottom: 0.5rem;
      /* Tronque à 2 lignes */
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .ecard-desc {
      font-size: 0.8125rem;
      color: rgba(255,255,255,0.4);
      line-height: 1.6;
      margin-bottom: 1rem;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    /* Infos chips en ligne */
    .ecard-chips {
      display: flex;
      align-items: center;
      gap: 0.625rem;
      flex-wrap: wrap;
      margin-bottom: 1rem;
    }

    .ecard-chip {
      display: flex;
      align-items: center;
      gap: 0.35rem;
      padding: 0.25rem 0.6rem;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 5px;
      font-size: 0.75rem;
      color: rgba(255,255,255,0.5);
    }

    .ecard-chip i { font-size: 0.625rem; color: var(--muted); }

    /* Footer de la carte : capacité + (prix + bouton) */
    .ecard-footer {
      margin-top: auto;
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 1rem;
    }

    .ecard-capacity-block { flex: 1; min-width: 0; }

    /* Wrapper prix + bouton, alignés côte à côte en desktop aussi */
    .ecard-footer-bottom {
      display: flex;
      align-items: center;
      gap: 0.875rem;
      flex-shrink: 0;
    }

    .ecard-capacity-label {
      display: flex;
      justify-content: space-between;
      font-size: 0.6875rem;
      color: var(--muted-2);
      margin-bottom: 0.375rem;
    }

    .ecard-capacity-label .remaining {
      font-weight: 600;
      color: var(--capacity-color, #4ade80);
    }

    .capacity-bar {
      height: 3px;
      background: rgba(255,255,255,0.07);
      border-radius: 2px;
      overflow: hidden;
    }

    .capacity-fill {
      height: 100%;
      border-radius: 2px;
      background: var(--capacity-color, #4ade80);
      transition: width 0.6s ease;
    }

    .ecard-price-block { text-align: right; flex-shrink: 0; }

    .ecard-price-from {
      font-size: 0.625rem;
      color: var(--muted-2);
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    .ecard-price {
      font-family: var(--font-display);
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--white);
      line-height: 1.1;
    }

    .ecard-reserve-btn {
      padding: 0.5625rem 1.125rem;
      background: var(--primary);
      color: #fff;
      border: none;
      border-radius: 40px;
      font-family: var(--font-body);
      font-size: 0.8125rem;
      font-weight: 600;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 0.375rem;
      white-space: nowrap;
      transition: all 0.15s;
      flex-shrink: 0;
      text-decoration: none;
      max-width: 125px;
    }

    .ecard-reserve-btn:hover {
      background: var(--primary-dark);
      transform: translateY(-1px);
      box-shadow: 0 6px 20px rgba(var(--primary-rgb),0.35);
    }

    /* ── PAGINATION ── */
    .pagination {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.375rem;
      margin-top: 2.5rem;
      padding-top: 2.5rem;
      border-top: 1px solid rgba(255,255,255,0.06);
    }

    .page-btn {
      min-width: 38px;
      height: 38px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 8px;
      border: 1px solid rgba(255,255,255,0.08);
      background: none;
      color: rgba(255,255,255,0.45);
      font-family: var(--font-body);
      font-size: 0.875rem;
      cursor: pointer;
      transition: all 0.15s;
      padding: 0 0.625rem;
    }

    .page-btn:hover:not(:disabled):not(.active) {
      border-color: rgba(255,255,255,0.2);
      color: var(--white);
      background: rgba(255,255,255,0.05);
    }

    .page-btn.active {
      background: var(--primary);
      border-color: var(--primary);
      color: #fff;
      font-weight: 600;
    }

    .page-btn:disabled { opacity: 0.25; cursor: not-allowed; }

    .page-dots {
      color: rgba(255,255,255,0.2);
      font-size: 0.875rem;
      padding: 0 0.25rem;
    }

    /* ── EMPTY STATE ── */
    .empty-state {
      display: none;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 5rem 2rem;
      text-align: center;
      gap: 1rem;
    }

    .empty-state.visible { display: flex; }

    .empty-icon {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      color: var(--muted);
    }

    .empty-state h3 {
      font-family: var(--font-display);
      font-size: 1.25rem;
      font-weight: 700;
    }

    .empty-state p { font-size: 0.9rem; color: var(--muted); }

    /* ── FOOTER ── */
    .footer { position: relative; z-index: 1; }

    /* ── RESPONSIVE ── */
    @media (max-width: 768px) {
      .events-hero { padding-top: calc(72px + 2.5rem); }
      .events-count-bar { gap: 1.25rem; }
      .count-num { font-size: 1.375rem; }

      .event-card-h { grid-template-columns: 1fr; }
      .ecard-img    { aspect-ratio: 16/9; }
    }

    @media (max-width: 540px) {
      /* Description masquée pour gagner de l'espace */
      .ecard-desc { display: none; }

      /* Footer : capacité pleine largeur, puis prix + bouton côte à côte */
      .ecard-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 0.875rem;
      }

      .ecard-capacity-block { width: 100%; }

      /* Prix et bouton sur la même ligne */
      .ecard-footer-bottom {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.75rem;
      }

      .ecard-price-block { text-align: left; }

      .ecard-reserve-btn {
        flex: 1;
        justify-content: center;
      }
    }