:root {
  /* Light splash variant */
  --bg: #2c2d32; /* requested dark background */
  --surface: transparent; /* no card */
  --text: #ffffff; /* white text */
  --muted: #4f5660; /* secondary text */
  --brand: #5865f2; /* Blurple */
  --brand-600: #4752c4;
  --brand-700: #3c45a5;
  --radius: 12px;
  --shadow: none;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Helvetica Neue, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.5;
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.card {
  width: 100%;
  max-width: 640px;
  background: var(--surface);
  border: none;
  border-radius: 0;
  padding: 40px 20px 24px;
  box-shadow: none;
  text-align: center;
}

.avatar {
  display: block;
  margin: 0 auto 12px;
}

.avatar img {
  width: 300px;
  height: auto;
}

h1 {
  margin: 8px 0 6px;
  font-size: clamp(1.75rem, 2.2vw + 1rem, 2.25rem);
  letter-spacing: 0.2px;
}

.tagline {
  margin: 0 auto 20px;
  color: var(--muted);
  max-width: 56ch;
}

.links { margin-top: 20px; }

.btn {
  --hpad: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 52px;
  padding: 0 var(--hpad);
  border-radius: 12px;
  border: 1px solid transparent;
  color: white;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease, border-color 0.12s ease;
}

.btn .icon { filter: grayscale(0); }
.btn .icon svg { display: block; width: 22px; height: 22px; }

.btn.primary {
  background: var(--brand);
  box-shadow: 0 8px 18px rgba(88,101,242,0.35);
}
.btn.primary:hover { background: var(--brand-600); transform: translateY(-1px); }
.btn.primary:active { transform: translateY(0); }

/* No secondary buttons now */

.foot {
  margin-top: 20px;
  color: var(--muted);
}

/* Single button layout, no grid breakpoint needed */

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}
