@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600&display=swap');
body {
  font-family: 'Orbitron', sans-serif;
}

body {
  margin: 0;
  font-family: 'Consolas', monospace;
  color: #0ff;
  background: radial-gradient(circle at center, #000010, #000000);
  overflow: hidden;
}

h1 {
  color: #ff9900;
  text-shadow: 0 0 15px #ff9900;
}


.hud {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 20px;
}

.clock-panel {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin: 20px 0;
}

.clock {
  background: rgba(0, 20, 40, 0.8);
  border: 1px solid #0ff;
  border-radius: 12px;
  padding: 20px 30px;
  box-shadow: 0 0 20px #0ff;
}

.clock h2 {
  margin-bottom: 10px;
  color: #fff;
  text-shadow: 0 0 8px #0ff;
}

.dial {
  display: block;
  margin: 0 auto 10px auto;
  background: #000;
  border-radius: 50%;
  box-shadow: 0 0 12px cyan;
}

.clock p {
  font-size: 1.5em;
  margin: 0;
  color: #0ff;
  text-shadow: 0 0 12px cyan;
}

.controls {
  margin-top: 20px;
}

input[type=range] {
  width: 300px;
}

button {
  margin: 10px;
  padding: 8px 16px;
  background: #022;
  color: #0ff;
  border: 1px solid #0ff;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.2s;
}
button:hover {
  background: #044;
  box-shadow: 0 0 10px #0ff;
}

#modeBtn {
  margin-bottom: 15px;
  background: #220044;
  border: 1px solid #a0f;
  color: #a0f;
}
#modeBtn:hover {
  background: #440088;
  box-shadow: 0 0 12px #a0f;
}

canvas#bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
