:root {
  --black: #0a0a0a;
  --white: #fafafa;
  --gray-1: #1a1a1a;
  --gray-2: #444444;
  --gray-3: #888888;
  --gray-4: #cccccc;
  --border: #2b2b2b;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-style: italic;
  letter-spacing: 0.01em;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 2rem;
}

.wrap {
  width: 100%;
  max-width: 640px;
}

.header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.header h1 {
  font-size: 2.75rem;
  font-weight: 400;
  margin: 0;
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--border);
  display: inline-block;
  padding-bottom: 0.5rem;
  opacity: 0;
  transform: translateY(14px);
  animation: reveal-up 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards;
}

.subtitle {
  color: var(--gray-3);
  margin-top: 0.75rem;
  font-size: 1rem;
  opacity: 0;
  transform: translateY(10px);
  animation: reveal-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.4s forwards;
}

.bio-card {
  border: 1px solid var(--border);
  padding: 1.75rem;
  border-radius: 3px;
  background: var(--gray-1);
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(18px);
  animation: reveal-up 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.65s forwards;
}

.bio-text {
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--white);
}

.gradient-link {
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.gradient-link:hover {
  transform: translateY(-1px);
  opacity: 0.9;
}

.link-mint {
  background: linear-gradient(120deg, #ffffff 0%, #a7f3d0 35%, #10b981 70%, #ffffff 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: #10b981;
  text-decoration-color: rgba(16, 185, 129, 0.6);
  animation: gradient-shift 3s ease infinite;
}

.link-dudesrc {
  background: linear-gradient(120deg, #fca5a5 0%, #ef4444 40%, #7f1d1d 80%, #fca5a5 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: #ef4444;
  text-decoration-color: rgba(239, 68, 68, 0.6);
  animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.socials-section {
  opacity: 0;
  transform: translateY(18px);
  animation: reveal-up 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.9s forwards;
}

.socials-intro {
  color: var(--gray-4);
  font-size: 1rem;
  margin: 0 0 1rem 0;
}

.socials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.social-card {
  border: 1px solid var(--border);
  background: var(--black);
  padding: 1.25rem 1.5rem;
  border-radius: 3px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  color: var(--white);
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.social-card:hover {
  border-color: var(--gray-4);
  background: var(--gray-1);
  transform: translateY(-2px);
}

.social-name {
  font-size: 1.05rem;
  font-weight: 400;
}

.social-link {
  color: var(--gray-3);
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.social-card:hover .social-link {
  color: var(--white);
}

.footer {
  text-align: center;
  margin-top: 3rem;
  color: var(--gray-2);
  font-size: 0.85rem;
  opacity: 0;
  animation: fade-in 0.8s ease 1.2s forwards;
}

@keyframes reveal-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in {
  to {
    opacity: 1;
  }
}

@media (max-width: 520px) {
  body {
    padding: 1.25rem;
  }

  .header h1 {
    font-size: 2.25rem;
  }

  .bio-card {
    padding: 1.25rem;
  }

  .socials-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-delay: 0ms !important;
    transition-duration: 0.01ms !important;
  }
}
