@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');

body {
  margin: 0;
  background: linear-gradient(145deg, #1c1c1c, #2b2b2b);
  overflow: hidden;
  font-family: 'Segoe UI', sans-serif;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.background {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, #444 0%, #111 100%);
  z-index: -1;
  animation: backgroundPulse 10s infinite alternate;
}

@keyframes backgroundPulse {
  0% { filter: brightness(1); }
  100% { filter: brightness(1.1); }
}

.compass-container {
  position: relative;
  width: 350px;
  height: 350px;
}

#dial, #needle {
  position: absolute;
  width: 100%;
  height: 100%;
  transform-origin: center;
}

#needle {
  z-index: 2;
  pointer-events: none;
}

.numeric-display {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 36px;
  color: #f2e6c8;
  font-family: 'Orbitron', sans-serif;
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.3);
  opacity: 1;
  transition: transform 0.3s ease;
}

.cardinal-display {
  position: absolute;
  bottom: -20px;  /* moved 2x lower as requested */
  left: 50%;
  transform: translateX(-50%);
  font-size: 20px;
  letter-spacing: 4px;
  color: #e0d7b5;
  font-family: 'Orbitron', sans-serif;
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.2);
  opacity: 1;
  transition: transform 0.3s ease;
}

.tap-msg {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  color: #bbb;
  font-size: 14px;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
  opacity: 0.7;
}