* { margin:0; padding:0; box-sizing:border-box; }

    body {
      background: #0d0d0e;
      color: #e8e5df;
      font-family: 'Syne', sans-serif;
    }

    a { text-decoration: none; color: inherit; }

    /* NAV */
    .nav {
      padding: 20px 40px;
      border-bottom: 1px solid rgba(255,255,255,.1);
    }

    /* HERO */
    .hero {
      position: relative;
      height: 60vh;
      background: url('../assets/images/poster.png') center/cover no-repeat;
      display: flex;
      align-items: flex-end;
      padding: 40px;
    }

    .hero::after {
      content:'';
      position:absolute;
      inset:0;
      background: linear-gradient(to top, rgba(0,0,0,.9), transparent);
    }

    .hero-content {
      position: relative;
      z-index: 2;
    }

    .title {
      font-family: 'Bebas Neue', cursive;
      font-size: 80px;
    }

    .subtitle {
      opacity: .7;
      margin-top: 10px;
    }

    /* MAIN */
    .container {
      max-width: 1100px;
      margin: auto;
      padding: 40px;
    }

    .grid {
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 30px;
    }

    /* VIDEO */
   .video-link {
    display: block;
    width: 100%;
    max-width: 800px;
    height: 450px;
    margin: 0 auto;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 25px rgba(0,0,0,0.5);
    background: #000;
}

.video-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Garde les proportions du screenshot */
    transition: transform 0.4s ease;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3); /* Un voile sombre sur l'image */
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.video-link:hover .video-overlay {
    background: rgba(0, 0, 0, 0.1); /* L'image s'éclaircit au survol */
}

.video-link:hover .video-screenshot {
    transform: scale(1.05); /* Petit effet de zoom au survol */
}

.play-button {
    width: 80px;
    height: 80px;
    background: #ff3d3d; /* Votre rouge */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    padding-left: 5px;
    box-shadow: 0 0 20px rgba(255, 61, 61, 0.5);
}
    /* SIDE PANEL */
    .side {
      background: #161618;
      padding: 20px;
      border:1px solid rgba(255,255,255,.08);
    }

    .btn {
      display:block;
      text-align:center;
      padding: 14px;
      margin-top: 10px;
      font-family:'Space Mono', monospace;
      text-transform:uppercase;
      font-size:12px;
      letter-spacing:.1em;
    }

    .btn-primary {
      background:#ff3d3d;
      color:white;
    }

    .btn-ghost {
      border:1px solid rgba(255,255,255,.2);
    }

    /* DESCRIPTION */
    .desc {
      margin-top: 30px;
      line-height: 1.7;
      color: #aaa;
    }

    /* SCREENSHOTS */
    .screens {
      margin-top: 40px;
      display:grid;
      grid-template-columns: repeat(3,1fr);
      gap: 10px;
    }

    .screens img {
      width:100%;
      border-radius:4px;
      transition:.3s;
    }

    .screens img:hover {
      transform: scale(1.05);
    }