:root {
  --bg: #120f14;
  --panel: rgba(255,255,255,.06);
  --line: rgba(255,255,255,.12);
  --text: #f4efe8;
  --muted: rgba(244,239,232,.65);
  --amber: #f5b45a;
  --cyan: #77e7ff;
  --pink: #ff8ec2;
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }
body {
  font-family: Inter, "PingFang SC", sans-serif;
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
.icon-link {
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  color: var(--text);
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: .2s ease;
  font: inherit;
}

button:hover,
.icon-link:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,.09);
}

.icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
}

.icon-link svg {
  width: 20px;
  height: 20px;
}
