@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;700&display=swap');

body {
  background: #ffffff;
  font-family: sans-serif;
  margin: 0;
  padding: 2rem;
}

.video-grid {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 700px;
}

.video-wrap {
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.video-wrap.visible {
  opacity: 1;
  transform: translateY(0);
}

.video-title {
  text-align: center;
  font-size: 0.6rem;
  font-weight: bold;
  font-family: 'Roboto Mono', monospace;
  margin-bottom: 0.5rem;
  color: #39ff14;
}

.video-title span {
  background: rgba(3, 16, 25, 0.85);
  padding: 2px 8px;
  display: inline-block;
}

video {
  width: 100%;
  height: auto;
  display: block;
  outline: none;
  cursor: pointer;
  background: transparent;
}