 /* --- HERO --- */
    .random-hero {
      position: relative;
      min-height: 55vh;
      display: grid;
      place-items: center;
      padding: 60px 20px;
      background:
        linear-gradient(135deg, rgba(0,0,0,.65), rgba(0,0,0,.35)),
        url('/Img/Random/1.webp');
      background-size: cover;
      background-position: center;
      border-bottom: 2px solid #00ccff55;
    }
    .random-hero .bg-slide {
      background-size: cover;
      background-position: center;
      position: absolute;
      inset: 0;
      z-index: 0;
    }

    .random-hero .inner {
      backdrop-filter: blur(6px);
      background: rgba(0,0,0,.45);
      padding: 28px 32px;
      border-radius: 16px;
      color: #e9eef5;
      text-align: center;
      box-shadow: 0 0 25px rgba(0,204,255,.2);
      max-width: 900px;
      position: relative;
      z-index: 1;
    }

    .random-hero img.logo {
      height: 90px;
      margin-bottom: 10px;
      filter: drop-shadow(0 0 12px rgba(0,204,255,.4));
    }

    .cta-bar {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      justify-content: center;
      margin: 26px 0 8px;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 10px 16px;
      background: linear-gradient(135deg, #00ccff, #00a9d8);
      color: #081018;
      border-radius: 10px;
      font-weight: 700;
      box-shadow: 0 5px 20px rgba(0,204,255,.35);
      text-decoration: none;
      transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
    }
    .btn:hover {
      transform: translateY(-2px);
      filter: brightness(1.05);
      box-shadow: 0 9px 30px rgba(0,204,255,.45);
    }

    /* --- CONTENU --- */
    .random-section {
      max-width: 1200px;
      margin: 50px auto;
      padding: 0 20px;
      display: grid;
      gap: 40px;
    }
    .random-card {
      background: rgba(15,15,20,.85);
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 0 20px rgba(0,204,255,.15);
      border: 1px solid rgba(0,204,255,.12);
    }
    .random-card img {
      width: 100%;
      height: auto;
      display: block;
    }
    .card-body {
      padding: 20px 24px;
      color: #dfe7ef;
    }
    .card-body h2 {
      color: #00ccff;
      margin-bottom: 10px;
    }
    .card-body p {
      color: #bfcad8;
      line-height: 1.6;
    }

    /* --- GALLERIE --- */
    .random-gallery {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 12px;
      padding: 10px 0 24px;
    }

    .random-gallery img {
      width: 100%;
      padding: 10px 0 24px;
      aspect-ratio: 16/9;
      object-fit: cover;
      border-radius: 10px;
      box-shadow: 0 0 14px rgba(0,0,0,.5);
      transition: transform .25s ease, box-shadow .25s ease;
      background: #0b0f16;
    }
    .random-gallery img:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 32px rgba(0,204,255,.22);
    }

    .random-membre {
      text-align: center;
      padding: 30px 15px;
      background: rgba(0,0,0,.3);
      border-radius: 16px;
      border: 1px solid rgba(0,204,255,.15);
    }
    .random-membre img {
      max-width: 280px;
      margin-top: 16px;
      border-radius: 8px;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

    .membre-list {
      text-align: left;
      max-width: 720px;
      margin: 20px auto;
      padding-left: 0;
      list-style: none;
    }
    .membre-list li {
      background: rgba(0,204,255,0.08);
      border: 1px solid rgba(0,204,255,0.15);
      border-radius: 8px;
      margin: 8px 0;
      padding: 10px 14px;
      color: #cfe3ef;
      font-size: 0.95rem;
      transition: background 0.25s ease, transform 0.25s ease;
    }
    .membre-list li:hover {
      background: rgba(0,204,255,0.18);
      transform: translateX(4px);
    }

    footer.site-footer {
      text-align: center;
      color: #9eb0c0;
      opacity: .85;
      padding: 28px 10px 46px;
    }