body {
  margin: 0;
  padding: 0;
  height: 100vh;
  background-image: url('/download.jpg');
  background-size: 100px;
  background-repeat: repeat;
  animation: scrollDiagonal 2s linear infinite;
}

@keyframes scrollDiagonal {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 100px -100px;
  }
}

.text-container {
  position: fixed;
  left: 20px;
  top: 20px;
  color: white;
  font-size: 24px;
  max-width: 300px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.watch-link {
  color: #ff0;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s;
}

.watch-link:hover {
  color: #f00;
}