    /* === RESET GENERALE === */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html, body {
      height: 100%;
      font-family: 'Poppins', sans-serif;
      font-weight: 600;
      color: black;
      overflow-x: hidden;
    }

    /* === VIDEO DI SFONDO === */
    .bg-video {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      object-fit: cover;
      z-index: -1; /* va sotto tutto */
    }
    