/* Aurora Strings — vertical light strings that respond to the cursor */
:root {
  --bg-0: #06070d;
  --bg-1: #0c1126;
  --ink:  #e8e6f5;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 50% 100%, #131a3a 0%, var(--bg-1) 35%, var(--bg-0) 80%);
  color: var(--ink);
  font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  cursor: crosshair;
}

#aurora {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  touch-action: none;
}

.hint {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 22px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(232, 230, 245, 0.6);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  pointer-events: none;
  user-select: none;
  transition: opacity 1.6s ease 1.2s;
}

.hint.hidden { opacity: 0; }

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #b8e0ff;
  box-shadow: 0 0 12px rgba(184, 224, 255, 0.8);
  animation: pulse 2.6s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.45; transform: scale(0.85); }
  50%      { opacity: 1;    transform: scale(1.15); }
}
