@font-face {
  font-family: 'Inter Display';
  src: url('assets/fonts/InterDisplay-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Inter Display';
  src: url('assets/fonts/InterDisplay-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

:root {
  --bg: #FAFAFA;
  --text: #282828;
  --text-muted: #565656;
  --border: #EAEAEA;
  --icon-bg: #EAEAEA;
}

[data-theme="dark"] {
  --bg: #1D1D1E;
  --text: #E8E8E8;
  --text-muted: #9C9C9C;
  --border: #292929;
  --icon-bg: #292929;
}

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

body {
  font-family: 'Inter Display', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.025em;
  background-color: var(--bg);
  color: var(--text);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 100px 0;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 64px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.name {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.025em;
}

.updated {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
  margin-top: 2px;
  line-height: 1.5;
  letter-spacing: 0.025em;
}

.header-right {
  display: flex;
  gap: 8px;
}

.icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 100%;
  background: var(--icon-bg);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.bio {
  margin-bottom: 64px;
}

.bio p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.025em;
  color: var(--text);
}

.bio p + p {
  margin-top: 16px;
}

.bio a {
  color: var(--text);
  text-decoration: underline;
}

.bio a:hover {
  opacity: 0.6;
}

.projects {
  display: flex;
  flex-direction: column;
}

.project-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  text-decoration: none;
  color: var(--text);
}

.project-row:last-child {
  border-bottom: 1px solid var(--border);
}

.project-row:hover {
  opacity: 0.6;
}

.project-name {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.025em;
}

.project-meta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.project-date,
.dot,
.project-type {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.5;
  letter-spacing: 0.025em;
}

@media (max-width: 1080px) {
  .container {
    padding: 100px 200px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 48px 20px;
  }

  .project-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .project-meta {
    flex-wrap: wrap;
  }
}

.arrow-icon {
  display: inline;
  vertical-align: middle;
  margin-left: 0px;
}