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

body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Orbitron', sans-serif;
  background: radial-gradient(circle at 20% 30%, #1e1e3f, #0d0d1d 90%);
  color: #ffffff;
  overflow: hidden;
}

.space-bg {
  text-align: center;
  padding: 30px 20px;
  position: relative;
}

.logo {
  width: 100px;
  border-radius: 50%;
  margin-bottom: 10px;
  filter: drop-shadow(0 0 8px #00ffff);
}

.title {
  font-size: 32px;
  margin: 0;
  color: #7df9ff;
  text-shadow: 0 0 10px #7df9ff;
}

.subtitle {
  font-size: 16px;
  color: #a0aec0;
  margin-bottom: 30px;
}

#inputBlock p {
  margin-bottom: 8px;
}

input {
  padding: 12px 18px;
  font-size: 18px;
  border: none;
  border-radius: 10px;
  background: #232340;
  color: #fff;
  margin-bottom: 12px;
  box-shadow: 0 0 10px rgba(0,255,255,0.1);
}

button {
  padding: 12px 24px;
  font-size: 16px;
  border: none;
  border-radius: 25px;
  background: linear-gradient(to right, #00f2fe, #4facfe);
  color: white;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(0,255,255,0.4);
  transition: 0.3s ease;
}

button:hover {
  transform: scale(1.05);
}

#timerContainer {
  margin-top: 40px;
}

#userLabel {
  font-size: 24px;
  margin-bottom: 10px;
  color: #00ffff;
  text-shadow: 0 0 6px #00ffff;
}

.timer-label {
  font-size: 16px;
  color: #ccc;
  margin-bottom: 8px;
}

#timer {
  font-size: 64px;
  font-weight: bold;
  background: linear-gradient(to right, #ffffff, #a1ecff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 20px rgba(129, 255, 255, 0.3);
}
