body {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin: 0;
  font-family: "Zalando Sans Expanded", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  background-color: #121212;
  color: #ffffff;
  user-select: none;
}

.container {
  text-align: center;
}

.cursor {
  border-right: 2px solid white;
  animation: blink 0.7s infinite;
}

@keyframes blink {
  0% { border-color: white; }
  50% { border-color: transparent; }
  100% { border-color: white; }
}

.container p {
  margin-top: 0;
  font-size: min(4rem, 5vw);
}

.title {
  margin-bottom: 10px;
  font-size: min(8rem, 10vw);
}

#text {
  background: linear-gradient(90deg,
  #ffd166,
  #ff9f1c,
  #ff6b00
);


  background-size: 200% 200%;

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  animation: gradientMove 3s ease infinite;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.buttons {
  margin-top: 30px;
  display: flex;
  gap: 20px;
  justify-content: center;
}


.buttons button {
  font-family: inherit;
  font-weight: 900;

  font-size: min(1.6rem, 3.5vw);
  padding: 14px 28px;

  background: transparent;
  color: white;

  border-color: transparent;

  cursor: pointer;
  transition: all 0.3s ease;
}

.buttons button:hover {
  border-color: transparent;

  background: linear-gradient(90deg,
    #ffd166,
    #ff9f1c,
    #ff6b00
  );
  background-size: 200% 200%;

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  animation: smoothHoverGradient 2s forwards;
}

@keyframes smoothHoverGradient {
  0% {
    background-position: 0% 50%;
  }
  20% {
    background-position: 100% 50%;
  }
  40% {
    background-position: 0% 50%;
  }
  60% {
    background-position: 100% 50%;
  }
  80% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 50% 50%;
  }
}

.TapeBG {
  position: fixed;
  inset: 0;
  overflow: hidden;
  background: #121212;
  z-index: -1;
  pointer-events: none; 
}

.row {
  position: absolute;
  left: 0;
  width: 100%;
  height: 80px;
  overflow: hidden;
}

.strip {
  position: absolute;
  top: 0;
  white-space: nowrap;
  font-size: 48px;
  font-weight: bold;
  line-height: 80px;
  color: #181818;
  user-select: none;
  will-change: transform;
  backface-visibility: hidden;
  transform: translate3d(0,0,0);
}

.promo-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #ff383860;
  color: #ffffff;
  text-align: center;
  padding: 10px 0;
  font-size: min(1.2rem, 3.5vw);
  font-weight: 900;
  text-decoration: none;
  z-index: 999;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.promo-header:hover {
  transform: scale(1.01);
  box-shadow: 0 0 20px #ff6a6a85;
}

