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

body {
  margin: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: radial-gradient(circle at top, #0f0f1a, #000);
  font-family: 'Orbitron', sans-serif;
  color: #0ff;
  overflow: hidden;
}

.container {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

canvas {
  border: 3px solid #0ff;
  background: rgba(0,0,0,0.9);
  box-shadow: 0 0 20px #0ff, inset 0 0 20px #0ff;
}

.panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  border: 2px solid #0ff;
  border-radius: 10px;
  background: rgba(10,10,20,0.8);
  box-shadow: 0 0 15px #0ff;
}

.panel h1 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #f0f;
  text-shadow: 0 0 10px #f0f;
}

.stat {
  font-size: 18px;
  margin: 8px 0;
  text-shadow: 0 0 5px #0ff;
}

#next {
  margin-top: 20px;
  border: 2px solid #0ff;
  width: 120px;
  height: 120px;
  background: rgba(0,0,0,0.7);
}
