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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
  color: #e0e0e8;
  min-height: 100vh;
  padding: 2rem 1rem;
}

main {
  max-width: 640px;
  margin: 0 auto;
}

header {
  text-align: center;
  padding: 2rem 0 3rem;
}

.avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6af, #c66);
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
  box-shadow: 0 8px 24px rgba(102, 170, 255, 0.2);
}

h1 {
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}

.tagline {
  color: #888;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

section {
  margin-bottom: 2.5rem;
}

.links {
  display: grid;
  gap: 0.6rem;
}

.link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  text-decoration: none;
  color: #e0e0e8;
  transition: all 0.15s ease;
}

.link:hover {
  background: rgba(102, 170, 255, 0.08);
  border-color: rgba(102, 170, 255, 0.3);
  transform: translateX(2px);
}

.link .icon {
  color: #6af;
  font-size: 1.2rem;
  font-weight: 600;
}

.link .text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.link strong {
  font-size: 0.95rem;
  font-weight: 600;
}

.link em {
  font-style: normal;
  color: #888;
  font-size: 0.8rem;
  font-family: ui-monospace, monospace;
}

h2 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #888;
  margin-bottom: 1rem;
  font-weight: 500;
}

.project-card {
  display: block;
  padding: 1.4rem 1.4rem 1.2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: all 0.15s ease;
}

.project-card:hover {
  background: rgba(102, 170, 255, 0.06);
  border-color: rgba(102, 170, 255, 0.25);
}

.project-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #e0e0e8;
}

.project-card p {
  font-size: 0.88rem;
  line-height: 1.55;
  color: #aaa;
  margin-bottom: 0.8rem;
}

.project-link {
  font-size: 0.85rem;
  color: #6af;
  font-weight: 500;
}

footer {
  text-align: center;
  padding: 2rem 0 1rem;
  color: #555;
  font-size: 0.8rem;
}
