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

:root {
  --bg: #000;
  --fg: #fff;
  --muted: #555;
  --hover: #aaa;
}

html, body {
  height: 100%;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes expandWidth {
  from { width: 0; }
  to   { width: 32px; }
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 300;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 2rem;
  overflow: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: radial-gradient(circle, #1c1c1c 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: '';
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.container {
  position: relative;
  width: 100%;
  max-width: 520px;
  z-index: 1;
}

.container::before {
  content: '';
  position: absolute;
  left: -2.5rem;
  top: 5%;
  height: 90%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, #2a2a2a 25%, #2a2a2a 75%, transparent);
}

.eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.75rem;
  animation: fadeUp 0.6s ease both;
  animation-delay: 0.05s;
}

.name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 11vw, 5rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.6s ease both;
  animation-delay: 0.15s;
}

.name-alt {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 0.7em;
  text-transform: uppercase;
}

.bio {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #bbb;
  margin-bottom: 3rem;
  max-width: 400px;
  animation: fadeUp 0.6s ease both;
  animation-delay: 0.3s;
}

.bio strong {
  color: var(--fg);
  font-weight: 400;
}

.divider {
  width: 0;
  height: 1px;
  background: var(--muted);
  margin-bottom: 2.5rem;
  animation: expandWidth 0.5s ease both;
  animation-delay: 0.45s;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.link-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: var(--fg);
  transition: color 0.2s ease;
  width: fit-content;
  opacity: 0;
  animation: fadeUp 0.5s ease forwards;
}

.links .link-row:nth-child(1) { animation-delay: 0.55s; }
.links .link-row:nth-child(2) { animation-delay: 0.65s; }
.links .link-row:nth-child(3) { animation-delay: 0.75s; }
.links .link-row:nth-child(4) { animation-delay: 0.85s; }
.links .link-row:nth-child(5) { animation-delay: 0.95s; }
.links .link-row:nth-child(6) { animation-delay: 1.05s; }

.link-row:hover .link-label,
.link-row:hover .link-icon {
  color: var(--hover);
  fill: var(--hover);
}

.link-platform {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  width: 100px;
  flex-shrink: 0;
  transition: color 0.2s ease;
}

.link-row:hover .link-platform {
  color: var(--hover);
}

.link-icon {
  width: 14px;
  height: 14px;
  fill: var(--muted);
  flex-shrink: 0;
  transition: fill 0.2s ease;
}

.link-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--fg);
  transition: color 0.2s ease;
}

.footer {
  margin-top: 4rem;
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  animation: fadeUp 0.5s ease both;
  animation-delay: 1.05s;
}

@media (max-width: 480px) {
  .container {
    max-width: 100%;
  }

  .container::before {
    display: none;
  }
}
