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

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #0f1117;
  color: #e8eaf0;
  font-family: 'Segoe UI', system-ui, sans-serif;
}

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

.subtitle {
  font-size: 0.95rem;
  color: #7b8096;
  margin-bottom: 3rem;
}

.projects {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 360px;
}

.project-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.4rem;
  background: #1a1d27;
  border: 1px solid #2a2d3a;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, background 0.2s;
}

.project-card:hover {
  border-color: #4f8aff;
  background: #1e2235;
}

.project-info .name {
  font-size: 1rem;
  font-weight: 500;
}

.project-info .desc {
  font-size: 0.8rem;
  color: #7b8096;
  margin-top: 0.2rem;
}

.arrow {
  font-size: 1.1rem;
  color: #4f8aff;
}

footer {
  position: absolute;
  bottom: 1.5rem;
  font-size: 0.78rem;
  color: #3a3d4d;
}
