@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Noto+Sans+JP:wght@400;600;700&display=swap');

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

body {
  background: #0a0a0f;
  color: #e0e0e8;
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  text-align: center;
  padding: 40px 24px;
  max-width: 420px;
  width: 100%;
}

.name {
  font-size: 40px;
  font-weight: 700;
  color: #c080f0;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.subtitle {
  font-size: 14px;
  color: #505068;
  margin-bottom: 36px;
}

.bio {
  font-size: 14px;
  color: #808098;
  line-height: 1.8;
  margin-bottom: 36px;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

.links a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.2s;
}

.link-x {
  background: #1a1a2e;
  color: #e0e0e8;
  border: 1px solid #2a2a3a;
}
.link-x:hover {
  background: #222240;
  border-color: #404060;
}

.link-discord {
  background: #1a1a2e;
  color: #7289da;
  border: 1px solid #2a2a3a;
}
.link-discord:hover {
  background: #222240;
  border-color: #7289da40;
}

.link-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  object-fit: contain;
}

.link-icon-discord {
  width: 22px;
}

.cli-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #505068;
  font-size: 13px;
  text-decoration: none;
  transition: color 0.2s;
  border-bottom: 1px dotted #505068;
  padding-bottom: 1px;
}
.cli-link:hover {
  color: #c080f0;
  border-bottom-color: #c080f0;
}
