:root {
  --bg: #0a0a0a;
  --text: #e0e0e0;
  --text-muted: #666;
  --accent: #3d5;
}

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

html,
body {
  height: 100%;
}

body {
  font-family: "JetBrains Mono", monospace;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

main {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  opacity: 0.7;
}

.name {
  font-size: clamp(2.5rem, 10vw, 5rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--text);
  display: flex;
  align-items: center;
}

.subname {
  font-size: 0.9rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

.links {
  display: flex;
  gap: 1.5rem;
}

.links a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.links a:hover img {
  filter: brightness(0) saturate(100%) invert(75%) sepia(50%) saturate(500%)
    hue-rotate(80deg);
}

.links a:hover span {
  color: var(--accent);
}

.links img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(0.4);
  transition: filter 0.2s ease;
}

.links span {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

@media (max-width: 480px) {
  .links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
  }

  .links img {
    width: 18px;
    height: 18px;
  }

  .links span {
    font-size: 0.6rem;
  }
}
