:root {
  --bg: #050506;
  --panel: rgba(16, 16, 20, 0.82);
  --text: #ffffff;
  --muted: #a9a9b4;
  --line: rgba(255, 255, 255, 0.14);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top, rgba(255,255,255,0.10), transparent 34%),
    linear-gradient(135deg, #050506, #101014 45%, #000000);
  color: var(--text);
}

.link-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 16px;
}

.profile-card {
  width: min(480px, 100%);
  padding: 34px 22px;
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(18px);
  border-radius: 32px;
  box-shadow: 0 28px 90px rgba(0,0,0,0.55);
  text-align: center;
}

.logo {
  width: 112px;
  height: auto;
  margin-bottom: 18px;
  filter: drop-shadow(0 14px 30px rgba(255,255,255,0.13));
}

h1 {
  margin: 0;
  font-size: 2.8rem;
  letter-spacing: -0.06em;
}

p {
  margin: 10px 0 24px;
  color: var(--muted);
  line-height: 1.6;
}

.links {
  display: grid;
  gap: 12px;
}

.link {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  color: var(--text);
  text-decoration: none;
  font-weight: 900;
  background: rgba(255,255,255,0.055);
  transition: transform 180ms ease, background 180ms ease;
}

.link:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.10);
}

.link.primary {
  background: #ffffff;
  color: #08080b;
}

.link.disabled {
  opacity: 0.45;
  pointer-events: none;
}

.small {
  font-size: 0.85rem;
  margin-bottom: 0;
}
