* { box-sizing: border-box; margin: 0; padding: 0; cursor: none !important; }

body {
  background: #020a0d;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    to bottom,
    rgba(0,59,78,0.04), rgba(0,59,78,0.04) 1px,
    transparent 1px, transparent 3px
  );
  z-index: 9000;
}

#start-screen {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  background: #020a0d;
  transition: opacity 2s ease;
}

#start-screen.hidden {
  opacity: 0;
  pointer-events: none;
}

#start-prompt {
  font-family: "Courier New", monospace;
  font-size: 18px;
  color: #1a4a55;
  letter-spacing: 4px;
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%,100% { opacity: 0.3; }
  50%      { opacity: 0.8; }
}

#bg {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
}

.custom-cursor {
  position: fixed;
  width: 14px; height: 14px;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  filter: drop-shadow(0 0 3px #003b4e);
}