body {
  margin: 0;
  font-family: "Courier New", monospace;
  background: #050505;
  color: #b8a9c9;
}

/* header */
header {
  padding: 20px;
  border-bottom: 1px solid #b8a9c9;
}

.logo {
  letter-spacing: 2px;
  font-size: 18px;
}

/* main section */
.illusion {
  text-align: center;
  padding: 100px 20px;
}

/* note display */
#note-display {
  margin: 40px auto;
  max-width: 800px;
  font-size: 14px;
  opacity: 0.8;
  word-break: break-word;
}

/* controls */
.controls {
  margin-top: 20px;
}

button {
  background: transparent;
  border: 1px solid #b8a9c9;
  color: #b8a9c9;
  padding: 6px 12px;
  margin: 0 5px;
  cursor: pointer;
}

/* scrollbar (optional but matches your style) */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #050505;
}

::-webkit-scrollbar-thumb {
  background: #b8a9c9;
  border-radius: 5px;
}

/* scanlines */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;

  background: repeating-linear-gradient(
    to bottom,
    rgba(184,169,201,0.05),
    rgba(184,169,201,0.05) 1px,
    transparent 1px,
    transparent 3px
  );

  z-index: 999;
}

* {
  cursor: none !important;
}

.custom-cursor {
  position: fixed;
  width: 16px;
  height: 16px;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 0 2px #000) drop-shadow(0 0 4px #b8a9c9);
}

.logo,
.logo:visited,
.logo:hover,
.logo:active {
  color: #b8a9c9;
  text-decoration: none;
}

.logo:hover {
  text-shadow: 0 0 10px #b8a9c9;
}

#note-display {
  white-space: pre-wrap;
}