* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --bg: #1c1c1e;
  --fg: #ededed;
  --fg-2: #888;
  --fg-3: #444;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.09;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  z-index: 999;
}
body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Space Mono', monospace;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 100svh;
}
main {
  width: 100%;
  max-width: 640px;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  cursor: default;
}
.sub {
  font-size: 0.875rem;
  color: var(--fg-2);
  margin-top: 4px;
  cursor: default;
}
.label {
  font-size: 0.7rem;
  color: var(--fg-3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--fg-2);
  cursor: default;
}
ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
li {
  font-size: 0.875rem;
  line-height: 1.4;
  color: var(--fg-2);
  padding-left: 20px;
  position: relative;
  cursor: default;
}
li::before {
  content: '>';
  position: absolute;
  left: 0;
  color: var(--fg-3);
}
a {
  color: var(--fg-2);
  text-decoration: none;
  position: relative;
  display: inline-block;
  transition: color 0.15s;
}
a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--fg);
  transition: width 0.2s ease;
}
a:hover {
  color: var(--fg);
}
a:hover::after {
  width: 100%;
}
.arrow {
  font-size: 0.75em;
  margin-left: 3px;
  color: var(--fg-3);
  display: inline-block;
}
a:hover .arrow {
  color: var(--fg-2);
}
.projects {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.project {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.project-name {
  color: var(--fg);
  font-size: 0.9rem;
  font-weight: 700;
}
.project-desc {
  font-size: 0.875rem;
  color: var(--fg-2);
}
.project a {
  align-self: flex-start;
  font-size: 0.8rem;
  margin-top: 2px;
}
.bottom-row {
  display: flex;
  gap: 4rem;
  flex-wrap: wrap;
}
.col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-top: 8px;
}
@media (max-width: 480px) {
  h1 {
    font-size: 2.2rem;
  }
  .bottom-row {
    gap: 2rem;
  }
}
footer {
  margin-top: auto;
  text-align: center;
  font-size: 0.7rem;
  color: var(--fg-3);
  padding: 2rem 0 1rem;
}
.changelog-scroll {
  height: 140px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--fg-3) transparent;
}
.changelog-scroll::-webkit-scrollbar {
  width: 3px;
}
.changelog-scroll::-webkit-scrollbar-thumb {
  background: var(--fg-3);
}
.changelog-entry {
  margin-bottom: 16px;
}
.changelog-date {
  font-size: 0.7rem;
  color: var(--fg-3);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.changelog-entry ul {
  margin-top: 4px;
}
.counter-wrap {
  font-size: 0.875rem;
  color: var(--fg-3);
  user-select: none;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
#counter {
  padding: 0.5rem 1rem;
  margin: -0.5rem -1rem;
  cursor: pointer;
  transition: color 0.15s;
}
#counter:hover {
  color: var(--fg-2);
}
