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

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #1c2127;
  color: #f6f7f9;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 540px;
  width: 100%;
  text-align: center;
}

.icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  opacity: 0.7;
  user-select: none;
}

h1 {
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.tagline {
  font-size: 0.9rem;
  color: #738091;
  margin-bottom: 2rem;
}

.card {
  background: #252a31;
  border: 1px solid #404854;
  border-radius: 8px;
  padding: 1.75rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.card p {
  color: #abb3bf;
  font-size: 0.875rem;
  line-height: 1.65;
}

.links {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.links a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #abb3bf;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border: 1px solid #404854;
  border-radius: 6px;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
  background: #252a31;
}

.links a:hover {
  color: #f6f7f9;
  border-color: #738091;
  background: #2f343c;
}

.links a svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.footer {
  margin-top: 3rem;
  font-size: 0.75rem;
  color: #5f6b7c;
}

.footer a {
  color: #738091;
  text-decoration: none;
}

.footer a:hover {
  color: #abb3bf;
}
