:root {
  --primary-glow: 0 12px 50px rgba(0, 150, 255, 0.18);
  --hover-glow: 0 12px 50px rgba(0, 150, 255, 0.25);
  --glass-bg: rgba(10, 15, 40, 0.35);
  --glass-border: rgba(255, 255, 255, 0.08);
  --text-primary: #e6f0ff;
  --text-secondary: #a3b5ff;
  --separator: #7a93ff;
}

html, body {
  height: 100%;
  margin: 0;
  background: #000;
  overflow: hidden;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: var(--text-primary);
}

#container {
  position: fixed;
  inset: 0;
}

#overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  text-shadow: 0 0 10px rgba(0, 120, 255, 0.3);
  overflow: hidden;
}

.countdown, .countdown * {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}