:root {
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  background: #0f1115;
  color: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card {
  width: min(720px, 92vw);
  background: #161a22;
  border: 1px solid #222734;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  display: grid;
  gap: 24px;
}

h1 {
  margin: 0;
  font-size: 28px;
  letter-spacing: 0.3px;
}

p {
  margin: 0;
  color: #9ca3af;
  line-height: 1.6;
}

.actions {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.actions a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 18px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  color: #0b0d12;
  background: #f3f4f6;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.actions a.secondary {
  background: transparent;
  color: #f3f4f6;
  border: 1px solid #2c3445;
}

.actions a:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}
