/* assets/less/main.less */
:root {
  color-scheme: dark;
}
/* Colors */
/* Surfaces */
/* Layout */
* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
img {
  max-width: 100%;
  height: auto;
}
body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(circle at 20% 10%, #20304a, #0b1020);
  color: #e9eef7;
  min-height: 100vh;
  display: block;
  place-items: center;
  padding: 24px;
}
h1 {
  margin: 0 0 10px;
  font-size: 2rem;
  letter-spacing: 0.2px;
}
p {
  margin: 0 0 20px;
  opacity: 0.9;
  line-height: 1.5;
}
code {
  background: rgba(255, 255, 255, 0.08);
  padding: 2px 6px;
  border-radius: 8px;
}
.wrap {
  max-width: 920px;
  width: 100%;
  margin: 0 auto;
}
.logo {
  text-align: center;
}
.grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
a.card {
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 16px;
  transition: transform 0.12s ease, background 0.12s ease, border-color 0.12s ease;
}
a.card:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
}
.title {
  font-weight: 700;
  margin-bottom: 6px;
}
.desc {
  opacity: 0.85;
  font-size: 0.95rem;
}
.footer {
  margin-top: 18px;
  opacity: 0.75;
  font-size: 0.9rem;
}
.toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  margin: 18px 0;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
}
.toolbar .left,
.toolbar .right {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.input {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: inherit;
  padding: 10px 12px;
  border-radius: 12px;
  min-width: 240px;
  outline: none;
}
.btn {
  cursor: pointer;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: inherit;
  padding: 10px 12px;
  border-radius: 12px;
  transition: transform 0.1s ease, background 0.1s ease;
}
.btn:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}
.muted {
  opacity: 0.75;
  font-size: 0.9rem;
}
.social {
  text-align: center;
  margin-top: 40px;
  opacity: 0.85;
  font-size: 0.85rem;
}
.social a {
  display: inline-flex;
  gap: 12px;
  align-items: center;
}
.social img {
  display: block;
}
.site-footer {
  text-align: center;
  margin-top: 40px;
  opacity: 0.6;
  font-size: 0.85rem;
}
.site-footer a {
  color: inherit;
  text-decoration: underline;
}
