body {
  margin: 0;
  background: black;
  color: white;
  overflow-y: auto;

  /* 💥 THIS MAKES YOUR DOT THE ONLY CURSOR */
  cursor: none;
}

/* canvas */
canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* ================= CURSOR DOT ================= */
#cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 999;

  background: white;
  box-shadow: 0 0 10px white;
}

/* content */
.content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  text-align: center;
  max-width: 700px;
  z-index: 2;
}

/* TW */
#twScreen {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.box {
  border: 1px solid white;
  padding: 20px;
}

#enterBtn {
  margin-top: 10px;
  padding: 10px 20px;
  background: black;
  color: white;
  border: 1px solid white;
  cursor: pointer;
}

/* BUTTON */
.btn {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid white;
  color: white;
  text-decoration: none;
}
.scroll-box {
  height: 300px;
  overflow-y: auto; /* Only shows scrollbar when content exceeds height */
}

/* ================= FONTS ================= */
.font-quote { font-family: 'Lavishly Yours', cursive; }
.font-kings { font-family: 'Kings', serif; }
.font-gothic { font-family: 'Grenze Gotisch', serif; }
.font-sekuya { font-family: 'Sekuya', sans-serif; }
.font-stencil { font-family: 'Saira Stencil One', cursive; }

/* ================= RAINBOW TEXT ================= */
.rainbow-text {
  background: linear-gradient(
    90deg,
    #ff0000,
    #ff7a00,
    #ffee00,
    #00ff66,
    #00f0ff,
    #8a2be2,
    #ff0000
  );

  background-size: 300% 100%;
  animation: rainbowMove 6s linear infinite;

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@keyframes rainbowMove {
  0% { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}