* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #f8fafc;
  --hero-image: radial-gradient(circle at top, #1a1f35 0%, #040713 65%, #010104 100%);
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 16px 48px;
  position: relative;
  overflow: hidden;
}

/* Tinted shadow layers over the wallpaper */
body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  background: rgba(0, 0, 0, 0.4);
  box-shadow: inset 0 0 180px rgba(0, 0, 0, 0.7);
}

body::after {
  box-shadow: inset 0 0 220px rgba(0, 0, 0, 0.9);
  background: radial-gradient(circle at 30% 10%, rgba(1, 4, 9, 0.35), transparent 55%);
}

a {
  color: inherit;
  text-decoration: none;
}

[data-animate] {
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate].up {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.hero {
  width: min(420px, 100%);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px 22px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  position: relative;
  z-index: 1;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 20px;
  pointer-events: none;
}

.avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 8px;
  box-shadow: 0 15px 45px rgba(2, 6, 23, 0.9);
}

.title {
  margin: 0;
  font-size: 1.8rem;
  letter-spacing: 0.08em;
}

.subtitle {
  margin: 0;
  color: #c7d2fe;
  font-size: 0.92rem;
}

.quote {
  margin: 0;
  font-size: 0.95rem;
  color: #f1f5f9;
}

.quote strong {
  color: #a5b4fc;
}

.links,
.social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 6px 0 0;
}

.pill {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
  transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.pill:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.2);
}

.credit {
  position: fixed;
  right: 24px;
  bottom: 20px;
  margin: 0;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  background: rgba(2, 6, 23, 0.7);
  font-size: 0.78rem;
  color: #cbd5f5;
  text-align: right;
  backdrop-filter: blur(18px);
  z-index: 1;
}

.credit a {
  color: #fefefe;
}

@media (max-width: 600px) {
  body {
    padding: 24px 12px 40px;
  }

  .hero {
    padding: 24px 18px;
  }

  .credit {
    position: static;
    margin-top: 24px;
    text-align: center;
  }
}