* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
  background: #0e0e0e;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: 420px;
  padding: 24px;
  text-align: center;
}

h1 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 8px;
}

.tagline {
  font-size: 14px;
  color: #aaaaaa;
  margin-bottom: 24px;
}

.links a {
  display: block;
  background: #1a1a1a;
  color: #ffffff;
  padding: 16px;
  border-radius: 12px;
  text-decoration: none;
  margin-bottom: 14px;
  font-size: 16px;
  transition: background 0.2s ease;
}

.links a:hover {
  background: #262626;
}
