body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, sans-serif;
  background: white;
  color: #0D00FF;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  text-align: center;
  max-width: 400px;
  padding: 40px 20px;
}

h1 {
  font-size: 3.5rem;
  margin: 0 0 8px;
  font-weight: bold;
  letter-spacing: -1px;
}

.tagline {
  font-size: 1.3rem;
  margin: 0 0 40px;
  opacity: 0.9;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;
  color: #0D00FF;
  border: 2px solid #0D00FF;
  border-radius: 12px;
  padding: 16px 24px;
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.2s;
}

.button:hover {
  background: #0D00FF;
  color: white;
}

.button i {
  font-size: 1.4rem;
  margin-right: 12px;
}

footer {
  margin-top: 60px;
  font-size: 0.9rem;
  opacity: 0.7;
}
