:root {
  --bg: #191c24;
  --card: #262a34;
  --primary: #3cc7fa;
  --primary-light: #e6f9ff;
  --section: #22252e;
  --border: #2d3142;
  --yellow: #ffe57c;
  --red: #fc6262;
  --highlight: #b68bfa;
  --text: #e2e5ed;
  --text-muted: #a3a8b7;
  --accent: #5afea3;
  --radius: 1.15rem;
}

html, body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

.container {
  max-width: 950px;
  margin: 50px auto 0 auto;
  background: var(--section);
  border-radius: var(--radius);
  box-shadow: 0 2px 26px 0 #0c142033;
  padding: 40px 35px 30px 35px;
  display: flex;
  flex-direction: column;
}

header {
  margin-bottom: 34px;
  padding-bottom: 12px;
  border-bottom: 1.5px solid var(--border);
}
h1 {
  font-size: 2.05rem;
  font-weight: 700;
  margin-bottom: 3px;
  color: var(--primary);
  letter-spacing: -1.5px;
}
.subtitle {
  color: var(--text-muted);
  font-size: 1.15rem;
  font-weight: 400;
  margin-left: 1px;
  letter-spacing: .01em;
}

.project-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.project-link {
  display: flex;
  align-items: center;
  background: var(--card);
  border-radius: 13px;
  border: 1.5px solid var(--primary);
  box-shadow: 0 2px 21px 0 #5afea317;
  text-decoration: none;
  min-height: 88px;
  transition: border-color .12s, box-shadow .14s, transform .1s;
  padding: 0 14px 0 0;
}
.project-link:hover, .project-link:focus-visible {
  border-color: var(--highlight);
  box-shadow: 0 4px 32px 0 #3cc7fa26;
  transform: translateY(-3px) scale(1.012);
}
.project-thumb-wrap {
  width: 88px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #162432;
  border-radius: 14px;
  margin: 10px 24px 10px 18px;
  flex-shrink: 0;
}
.project-thumb {
  max-width: 74px;
  max-height: 74px;
  object-fit: contain;
  background: #12141b;
  border-radius: 10px;
  border: 1.5px solid var(--primary);
  box-shadow: 0 0 10px #aaffee13;
}
.project-info {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.project-title {
  font-size: 1.19em;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0;
}
.project-role {
  color: var(--highlight);
  font-size: 0.98em;
  font-weight: 400;
  letter-spacing: 0.01em;
}
.tech-icon {
  width: 32px;
  height: 32px;
  margin-left: auto;
  margin-right: 18px;
  opacity: 0.84;
  align-self: center;
  transition: opacity .12s;
  filter: drop-shadow(0 2px 8px #3cc7fa13);
}
.project-link:hover .tech-icon { opacity: 1; }
footer {
  margin-top: 44px;
  font-size: 0.96em;
  color: #8ea1b7;
  text-align: center;
}
footer a {
  color: var(--primary);
  text-decoration: none;
  border-bottom: 1.5px solid var(--primary-light);
  transition: color .12s, border-bottom .12s;
}
footer a:hover {
  color: var(--highlight);
  border-bottom: 1.5px solid var(--highlight);
}
@media (max-width: 700px) {
  .container {
    border-radius: 0;
    padding: 5vw 2vw 9vw 2vw;
    max-width: 100vw;
  }
  .project-thumb-wrap {
    width: 48px;
    height: 48px;
    margin: 10px 10px 10px 3px;
  }
  .project-thumb {
    max-width: 40px;
    max-height: 40px;
  }
  .tech-icon { width: 18px; height: 18px; margin-right: 4px; }
}
