/* Import a sci-fi terminal-style font */
@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');

body {
  margin: 0;
  padding: 0;
  font-family: 'Share Tech Mono', monospace;
  background: radial-gradient(circle at center, #0a0a0a 0%, #000000 100%);
  color: #00ffea;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
}

.container {
  padding: 2rem;
}

h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.highlight {
  color: #ff007f;
  text-shadow: 0 0 10px #ff007f;
}

.glow {
  text-shadow: 0 0 5px #00ffea, 0 0 10px #00ffea, 0 0 20px #00ffea;
}

.tagline {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #b3faff;
}

.btn {
  background: #000;
  border: 2px solid #00ffea;
  color: #00ffea;
  padding: 0.75rem 2rem;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px #00ffea;
}

.btn:hover {
  background: #00ffea;
  color: #000;
  box-shadow: 0 0 20px #00ffea;
}

footer {
  position: absolute;
  bottom: 20px;
  font-size: 0.8rem;
  color: #444;
}