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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #1a1a1a;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

main {
  max-width: 720px;
  margin: 0 0 0 15%;
  padding: 60px 24px;
}

h1 {
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.name-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.github-link {
  color: #1a1a1a;
  display: inline-flex;
}

.github-link:visited {
  color: #1a1a1a;
}

.github-link:hover {
  color: #1a1a1a;
  opacity: 1;
}

.status {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 20px;
}

.status-dot {
  display: inline-block;
  vertical-align: middle;
  margin-right: 6px;
}

.status strong {
  color: #1a1a1a;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.bio {
  font-size: 1.05rem;
  color: #333;
  margin-bottom: 36px;
  line-height: 1.7;
}

h2 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.tools {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}

.tools a {
  text-decoration: none;
}

.tool {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  background: #f0f0f0;
  color: #1a1a1a;
  transition: background 0.15s ease;
}

.tools a:hover .tool {
  background: #e0e0e0;
}

.status a {
  color: #1a1a1a;
  text-decoration: none;
}

.status a:hover {
  text-decoration: underline;
}

.projects {
  list-style: disc;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.projects li::marker {
  color: #1a1a1a;
}

.projects a {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.project-name {
  font-size: 0.9rem;
  font-weight: 600;
  background: #f0f0f0;
  padding: 4px 10px;
  border-radius: 6px;
  color: #1a1a1a;
  transition: background 0.15s ease;
}

.projects a:hover .project-name {
  background: #e0e0e0;
}

.project-desc {
  display: block;
  font-size: 0.85rem;
  color: #777;
  margin-top: 2px;
}

.blog-hint {
  font-size: 0.95rem;
  color: #777;
  margin-bottom: 12px;
}

.blog-list {
  list-style: none;
  margin-bottom: 36px;
}

.blog-list a {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a1a1a;
  text-decoration: none;
}

.blog-list a:hover {
  text-decoration: underline;
}

.back a {
  font-size: 0.9rem;
  color: #777;
  text-decoration: none;
}

.back a:hover {
  color: #1a1a1a;
}

.back {
  margin-bottom: 32px;
}

.post {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #eee;
}

.post:last-child {
  border-bottom: none;
}

.post time {
  font-size: 0.85rem;
  color: #999;
}

.post-title {
  font-size: 1.2rem;
  margin-top: 4px;
  margin-bottom: 8px;
}

.post p {
  font-size: 1rem;
  color: #444;
  line-height: 1.7;
}

.skills-heading {
  margin-top: 36px;
  margin-bottom: 8px;
}

.skills {
  font-size: 0.9rem;
  color: #777;
  line-height: 1.7;
}

@media (max-width: 480px) {
  main {
    margin: 0;
    padding: 40px 20px;
  }

  h1 {
    font-size: 2.5rem;
  }

}
