:root {
  --bg: #0b0f0d;
  --bg2: #0f1512;
  --card: #121a16;
  --text: #e9f5ee;
  --sub: #9aa9a1;
  --line: #1f2a24;
  --accent: #2ecc71;
  --shadow: 0 10px 30px rgba(0, 0, 0, .4);
  --font: sans-serif;
}
*, *::before, *::after {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: var(--font);
  background: linear-gradient(180deg, var(--bg), var(--bg2));
  color: var(--text);
}
.top {
  position: sticky;
  top: 0;
  background: rgba(10, 14, 12, .8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  max-width: 1100px;
  margin: auto;
}
.logo {
  font-weight: 900;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: 26px;
  line-height: 1;
}
.logoImg {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: block;
}
.menu {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 15px;
}
.menu a {
  color: var(--sub);
  text-decoration: none;
  padding: 6px 4px;
}
.menu a:hover {
  color: var(--accent);
}
.menuBtn {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
}
.wrap {
  max-width: 1100px;
  margin: auto;
  padding: 30px 20px;
  min-height: calc(100vh - 80px);
  width: 100%;
  box-sizing: border-box;
}
.grid {
  display: grid;
  gap: 10px;
  width: 100%;
  box-sizing: border-box;
}
#search {
  width: 100%;
  padding: 16px 18px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--text);
  margin-bottom: 15px;
  box-sizing: border-box;
  display: block;
  font-size: 16px;
}
.cmd {
  background: var(--card);
  padding: 18px 24px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  cursor: pointer;
  font-size: 20px;
  width: 100%;
  box-sizing: border-box;
}
.cmdTop {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cmdArrow {
  color: var(--accent);
  font-size: 16px;
  transition: .2s;
  user-select: none;
  display: flex;
  align-items: center;
  line-height: 1;
}
.cmd h3 {
  margin: 0;
  color: var(--accent);
  font-size: 25px;
}
.cmdBody {
  max-height: 0;
  overflow: hidden;
  transition: .25s;
  opacity: 0;
}
.cmd.open .cmdBody {
  max-height: 200px;
  opacity: 1;
  margin-top: 10px;
}
.site-footer {
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
}.footer-inner {
  max-width: 1120px;
  margin: auto;
  padding: 0 24px;
}.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  padding: 52px 0 44px;
  flex-wrap: wrap;
}.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 19px;
  color: var(--green);
}.footer-brand img {
  width: 26px;
  height: 26px;
  border-radius: 6px;
}.footer-nav {
  display: flex;
  gap: 52px;
  flex-wrap: wrap;
}.footer-col {
  display: flex;
  flex-direction: column;
  gap: 11px;
}.footer-col span {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .9px;
  color: var(--muted);
  margin-bottom: 2px;
}.footer-col a {
  color: var(--faint);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color .2s;
}.footer-col a:hover {
  color: var(--green);
}.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 10px;
}.footer-bottom span {
  font-size: 13px;
  color: var(--faint);
}.footer-socials {
  display: flex;
  gap: 8px;
}.footer-socials a {
  width: 33px;
  height: 33px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  text-decoration: none;
  transition: border-color .2s, color .2s;
}.footer-socials a:hover {
  border-color: var(--green);
  color: var(--green);
}.footer-socials i {
  width: 15px;
  height: 15px;
}
pre {
  background: #0c120f;
  padding: 10px;
  border-radius: 8px;
  color: #b7c9bf;
  font-size: 17px;
  box-sizing: border-box;
  width: 100%;
  overflow-x: auto;
  white-space: pre-wrap;
  word-break: break-all;
}
.pageHead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.pageHead h1 {
  margin: 0;
  font-size: 28px;
  color: var(--text);
}
.cmdRight {
  display: flex;
  align-items: center;
  gap: 10px;
}
.tag {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.tag.everyone {
  background: rgba(46, 204, 113, .15);
  color: var(--accent);
  border: 1px solid rgba(46, 204, 113, .3);
}
.tag.mod {
  background: rgba(52, 152, 219, .15);
  color: #3498db;
  border: 1px solid rgba(52, 152, 219, .3);
}
.tag.admin {
  background: rgba(231, 76, 60, .15);
  color: #e74c3c;
  border: 1px solid rgba(231, 76, 60, .3);
}
.desc {
  margin: 0 0 10px 0;
  color: var(--sub);
  font-size: 14px;
}
.featBtn {
  background: var(--card);
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 10px 18px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: .2s;
}
.featBtn:hover {
  background: var(--accent);
  color: #000;
}
.preWrap {
  position: relative;
}
.copyBtn {
  position: absolute;
  top: 6px;
  right: 6px;
  background: var(--line);
  border: none;
  color: var(--sub);
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 11px;
  cursor: pointer;
}
.copyBtn:hover {
  background: var(--accent);
  color: #000;
}
@media (max-width: 700px) {
  .menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 10px;
    background: var(--card);
    padding: 10px;
    border-radius: 10px;
  }
  .menu.show {
    display: flex;
  }
  .menuBtn {
    display: block;
  }
}