/** { outline: 1px solid red; }*/


    .glitch-wrapper {
      position: absolute;
      width: 305px;
      height: 127px;
      top: 280px;
      left: calc(50% - 79px - 114px - 305px);
      overflow: hidden;
      z-index: 3;
    }

    .glitch-layer {
      position: absolute;
      width: 100%;
      height: 100%;
      background: url('../assets/DANCEWITHTHEDEVIL.svg') no-repeat center;
      background-size: contain;
      mix-blend-mode: difference;
      opacity: 1;
    }

    .top {
      clip-path: inset(0 0 66% 0);
      animation: glitchTop 3s infinite;
    }
    .middle {
      clip-path: inset(33% 0 33% 0);
      animation: glitchMiddle 3s infinite;
    }
    .bottom {
      clip-path: inset(66% 0 0 0);
      animation: glitchBottom 3s infinite;
    }

    @keyframes glitchTop {
      0%, 90%, 100% { transform: translateX(0); }
      5%  { transform: translateX(-3px); }
      7%  { transform: translateX(2px); }
    }
    @keyframes glitchMiddle {
      0%, 90%, 100% { transform: translateX(0); }
      4%  { transform: translateX(4px); }
      6%  { transform: translateX(-2px); }
    }
    @keyframes glitchBottom {
      0%, 90%, 100% { transform: translateX(0); }
      6%  { transform: translateX(-4px); }
      8%  { transform: translateX(3px); }
    }

    .logo-container {
      position: absolute; /* statt relative */
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 158px;
      height: 800px;
      background: white;
      font-family: 'PT Mono', monospace;
    }

    .circle {
    position: absolute;
    top: 270px;
    left: 48%;
    width: 158px;
    height: 158px;
    background: black;
    border-radius: 50%;
    transform: translateX(-50%) scale(1);
    animation: pulse 3s infinite;
    animation-timing-function: ease-in-out;
  }

  @keyframes pulse {
    0%   { transform: translateX(-50%) scale(1);   background: black; }

    10%  { transform: translateX(-50%) scale(1.05); background: #FF1E22; } /* Puls 1 hoch + Farbe */
    20%  { transform: translateX(-50%) scale(1);    background: black; }   /* Zurück */

    30%  { transform: translateX(-50%) scale(1.1);  background: #FF1E22; } /* Puls 2 hoch + Farbe */
    60%  { transform: translateX(-50%) scale(1.06); background: black; }   /* Nachglühen */

    100% { transform: translateX(-50%) scale(1);    background: black; }   /* Ruhephase */
  }

    .binary-column {
      position: absolute;
      font-size: 18px;
      line-height: 18px;
      mix-blend-mode: difference;
      color: #fff;
      z-index: 2;
    }

    .col1 { left: 47px; top: 0; }
    .col2 { left: 63px; top: 88px; }
    .col3 { left: 79px; top: 176px; }
    .col4 { left: 95px; top: 0; }

    .bit {
      display: block;
    }



@media (max-width: 810px) {
    .glitch-wrapper {
      position: absolute;
      width: 305px;
      height: 127px;
      top: 280px;
      left: calc(260% - 79px - 114px - 305px);
      overflow: hidden;
      z-index: 3;
    }
}