    /* === MOSAÏQUE SETS SUR PAGE DJ (desktop + mobile, on ajustera un peu via media) === */

    .sets-section {
        max-width: 1100px;
        margin: 0 auto 50px;
        padding: 0 16px;
    }

    .sets-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 20px;
        margin-top: 20px;
    }

    .set-card {
        display: flex;
        flex-direction: column;
        background: #181818;
        border-radius: 10px;
        overflow: hidden;
        text-decoration: none;
        color: #f3f3f3;
        border: 1px solid #242424;
        transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
    }

    .set-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.6);
        border-color: #00c9ff;
    }

    .set-thumb {
        position: relative;
        padding-top: 56.25%; /* 16:9 */
        overflow: hidden;
    }

    .set-thumb img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .set-info {
        padding: 10px 12px 12px;
    }

    .set-title {
        font-family: 'Genos', sans-serif;
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 6px;
    }

    .set-meta-line {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 13px;
        color: #aaa;
    }

    .set-location {
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 11px;
    }

    .set-date {
        font-size: 12px;
        color: #888;
    }

    .dj-tabs-container {
        width: 100%;
        display: flex;
        justify-content: center;
        margin: 30px 0 5px;
    }

    .dj-tabs-bar {
        position: relative;
        display: flex;
        gap: 55px;
        padding-bottom: 12px;
        border-bottom: 2px solid #333;
    }

    .dj-tab {
        background: none;
        border: none;
        color: #888;
        font-family: 'Genos', sans-serif;
        font-size: 26px;
        font-weight: 700;
        cursor: pointer;
        padding: 4px 0;
        transition: color 0.25s;
    }

    .dj-tab.active {
        color: #00c9ff;
    }

    .dj-tab:hover {
        color: #fff;
    }

    .dj-tab-underline {
        position: absolute;
        bottom: -2px;
        left: 0;
        height: 3px;
        width: 0;
        background: #00c9ff;
        transition: transform .3s ease, width .3s ease;
    }

    .dj-hero {
      position: relative;
      overflow: hidden;
      min-height: 420px;
    }

    .dj-hero-bg {
      position: absolute;
      inset: 0;
      z-index: -2;
      overflow: hidden;
    }

    .dj-hero-bg video {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .dj-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.35),
        rgba(0,0,0,0.6)
      );
    }

    .dj-hero-inner {
      position: relative;
      z-index: 1;
      max-width: 1100px;
      margin: 0 auto;
      padding: 40px 16px 60px;
      display: flex;
      align-items: center;
      gap: 30px;
    }

    .dj-photo {
      flex: 0 0 260px;
      max-width: 260px;
    }

    .dj-photo img {
      width: 100%;
      border-radius: 14px;
      object-fit: cover;
      display: block;
    }

    .dj-info {
      flex: 1;
      color: #fff;
    }

    .dj-info h1 {
      font-family: 'Genos', sans-serif;
      font-size: 42px;
      margin-bottom: 10px;
    }

    .dj-stats {
      color: #ccc;
      margin-bottom: 12px;
    }

    .dj-bio {
      color: #ddd;
      max-width: 650px;
      margin-bottom: 16px;
      line-height: 1.5;
    }

    .dj-socials a {
      color: #fff;
      margin-right: 12px;
      font-size: 20px;
      transition: color .2s;
    }

    .dj-socials a:hover {
      color: #00c9ff;
    }

    /* --- MOBILE HERO --- */
    @media (max-width: 768px) {

      /* On laisse .home-desktop géré par layout.css (display:none) */
      .dj-hero-inner {
        padding: 32px 16px 40px;
        flex-direction: row;
        align-items: center;
      }

      .dj-photo {
        flex: 0 0 120px;
        max-width: 120px;
      }

      .dj-info h1 {
        font-size: 28px;
      }

      .dj-bio {
        font-size: 0.9rem;
      }

      /* Hero mobile dédié (dans .home-mobile) */
      .dj-mobile-hero {
        position: relative;
        width: 100%;
        height: 80vh;
        overflow: hidden;
      }

      .dj-mobile-bg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(0.55);
      }

      .dj-mobile-overlay {
        position: absolute;
        inset: 0;
        padding: 24px 18px 32px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        color: #fff;
      }

      .dj-mobile-top {
        display: flex;
        gap: 16px;
        align-items: center;
        margin-bottom: 10px;
      }

      .dj-mobile-photo {
        width: 96px;
        height: 96px;
        border-radius: 16px;
        object-fit: cover;
        flex-shrink: 0;
        border: 2px solid rgba(0,201,255,0.7);
      }

      .dj-mobile-name {
        font-family: 'Genos', sans-serif;
        font-size: 28px;
        line-height: 1.1;
      }

      .dj-mobile-stats {
        font-size: 0.85rem;
        color: #d0e4ff;
        margin-bottom: 10px;
      }

      .dj-mobile-socials a {
        color: #fff;
        margin-right: 12px;
        font-size: 20px;
      }

      .dj-mobile-socials a:hover {
        color: #00c9ff;
      }

      .dj-mobile-bio {
        font-size: 0.85rem;
        color: #e1e5f0;
        margin-top: 8px;
      }

      .dj-mobile-section {
        padding: 18px 16px 6px;
      }

      .dj-mobile-section h2 {
        font-size: 1.1rem;
        color: #00c9ff;
        margin-bottom: 8px;
      }

      .dj-mobile-section p.section-sub {
        margin: 0 0 8px;
        color: #9aa6b8;
        font-size: 0.85rem;
      }

      .dj-mobile-set-list {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 0 16px 20px;
      }

      .dj-mobile-set-card {
        display: flex;
        gap: 10px;
        background: #161920;
        border-radius: 12px;
        padding: 8px;
        text-decoration: none;
        color: #f1f4f9;
        border: 1px solid #1f232b;
      }

      .dj-mobile-set-thumb {
        width: 38%;
        height: 90px;
        border-radius: 10px;
        overflow: hidden;
        flex-shrink: 0;
      }

      .dj-mobile-set-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      .dj-mobile-set-info h3 {
        font-size: 0.95rem;
        margin: 0 0 4px;
      }

      .dj-mobile-set-meta {
        font-size: 0.78rem;
        color: #9aa6b8;
      }

      .dj-mobile-clubs-grid {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 0 16px 30px;
      }

      .dj-mobile-club-card {
        display: flex;
        gap: 10px;
        background: #161920;
        border-radius: 12px;
        padding: 8px;
        text-decoration: none;
        color: #f1f4f9;
        border: 1px solid #1f232b;
      }

      .dj-mobile-club-thumb {
        width: 34%;
        height: 80px;
        border-radius: 10px;
        overflow: hidden;
        flex-shrink: 0;
      }

      .dj-mobile-club-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      .dj-mobile-club-info-title {
        font-size: 0.95rem;
        font-weight: 600;
        margin-bottom: 2px;
      }

      .dj-mobile-club-info-label {
        font-size: 0.78rem;
        color: #9aa6b8;
      }
    }
	
	@media (max-width: 768px) {
    .dj-photo,
    .dj-info,
    .dj-hero-inner {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    /* Et montrer la version mobile */
    .dj-mobile-hero {
        display: block !important;
    }
}

.dj-photo img {
    width: 210px;
    height: 210px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255,255,255,0.7);
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
}/* CSS Document */

