:root {
  --accent: #69d7f2;
  --bg: #0a0a0a;
  --text: #f0f0f0;
  --text-muted: #a0a0a0;
  --button-bg: rgba(255, 255, 255, 0.08);
  --button-border: rgba(255, 255, 255, 0.12);
  --button-hover-bg: rgba(255, 255, 255, 0.14);
}

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

body {
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  background: var(--bg);
  color: var(--text);
  min-height: 100dvh;
  display: flex;
  justify-content: center;
  -webkit-font-smoothing: antialiased;
}

/* ---- Mesh gradient ---- */

.mesh-background {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 75% 75% at 50% 0%, rgba(105, 215, 242, 0.15), transparent),
    radial-gradient(ellipse 50% 50% at 50% 0%, rgba(105, 215, 242, 0.1), transparent),
    radial-gradient(ellipse 25% 25% at 50% 0%, rgba(105, 215, 242, 0.08), transparent);
  pointer-events: none;
}

/* ---- Container ---- */

.container {
  width: 100%;
  max-width: 480px;
  padding: 3rem 1.25rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

/* ---- Profile ---- */

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

.avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--button-border);
}

.name {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.bio {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* ---- Link buttons ---- */

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

.link-button {
  display: block;
  width: 100%;
  padding: 0.9rem 1.25rem;
  text-align: center;
  text-decoration: none;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
  background: var(--button-bg);
  border: 1px solid var(--button-border);
  border-radius: 12px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.2s, transform 0.2s;
}

.link-button:hover {
  background: var(--button-hover-bg);
  transform: scale(1.02);
}

.link-button:active {
  transform: scale(0.98);
}

/* ---- Social icons ---- */

.socials {
  display: flex;
  flex-direction: column;
  gap: 1rem 1.25rem;
  justify-content: center;
  align-items: center;
  padding-top: 0.5rem;
}

.social-rows {
  display: flex;
  flex-direction: row;
  gap: 1rem 1.25rem;
  justify-content: center;
  align-items: center;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--button-bg);
  border: 1px solid var(--button-border);
  color: var(--text);
  transition: background 0.2s, transform 0.2s;
}

.social-icon:hover {
  background: var(--button-hover-bg);
  transform: scale(1.1);
}

.social-icon:active {
  transform: scale(0.95);
}

.social-icon img,
.social-icon svg {
  width: 30px;
  height: 30px;
  display: block;
}
