
  * { margin: 0; padding: 0; box-sizing: border-box; }

  html, body {
    height: 100%;
    background: #f8f8ff;
    overflow: hidden;
  }

  /* Wrapper, der die Breite vorgibt (voll auf dem Handy, mit Rand auf grosseren Screens) */
  .phone {
    height: 100vh;
    width: 100%;
    margin: 0 auto;
  }

  /* Ausserer Container: vertikales Snap-Scrolling zwischen den Reihen */
  .rows {
    height: 100%;
    width: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
  }

  /* Jede Reihe: horizontales Snap-Scrolling zwischen den Videos */
  .row {
    height: 100%;
    width: 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;

    display: flex;
    overflow-x: scroll;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
  }

  .slide {
    flex: 0 0 100%;
    height: 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111;
  }
  
  .slide-white {
    flex: 0 0 100vw;
    height: 100vh;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    position: relative;
    display: flex;
    align-items: top;
    justify-content: left;
    padding: 2rem .5rem 0 1rem;
    background: #f8f8ff;
    color: black;
    font-size: 1.35rem;
    font-family: Abel;
  }

  /* Ab Tablet-/Desktop-Breite: Seite wie ein Handy-Bildschirm mittig mit Rand links/rechts */
  @media (min-width: 700px) {
    .phone {
      max-width: 100%; /*430px*/
      /*box-shadow: 0 0 60px rgba(0,0,0,0.5);*/
    }
  }

  .slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .label {
    position: absolute;
    bottom: 24px;
    left: 16px;
    color: #fff;
    font-family: Abel;
    font-size: 1.35rem;
  }
  
  .label-top {
    position: absolute;
    top: 3rem;
    left: 1rem;
    max-width: 90%;
    color: black;
    /*font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;*/
    font-family: Abel;
    font-size: 1.35rem;
  }

  .hint {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.7);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 12px;
    z-index: 10;
    pointer-events: none;
    text-align: center;
    line-height: 1.4;
  }

  /* Scrollbars ausblenden */
  .rows::-webkit-scrollbar,
  .row::-webkit-scrollbar { display: none; }
  .rows, .row { scrollbar-width: none; -ms-overflow-style: none; }










