html,
body {
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
  background: #070007;
  cursor: auto;
  overflow: hidden;
  user-select: none;
  -webkit-user-select: none;
  overscroll-behavior: none;
  touch-action: none;
}

svg {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}

svg text {
  font-size: 15vw;
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  line-height: 0.9;
}

svg .text {
  fill: #0f0710;
  stroke: #270a3f;
  stroke-width: 2px;
}

svg .overlay {
  fill: #0f0710;
  mix-blend-mode: overlay;
}

.cursor {
  position: fixed;
  top: -0.5vw;
  left: -0.5vw;
  z-index: 2;
  width: 1vw;
  height: 1vw;
  background: #bbb;
  border-radius: 50%;
  mix-blend-mode: color-dodge;
  transform: translate3d(var(--x), var(--y), 0);
}

.nav-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  gap: 10px;
}

.nav-btn {
  width: 40px;
  height: 40px;
  background: white;
  color: #333;
  border-radius: 50%;
  text-decoration: none;
  font-family: sans-serif;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s, background 0.2s;
  cursor: pointer;
}

.nav-btn:hover {
  transform: scale(1.1);
  background: #f0f0f0;
}