@keyframes cursor-blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
@keyframes fade-in-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade-in-scale {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes slide-in-left {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slide-in-right {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes typewriter {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@keyframes terminal-boot {
  0% {
    opacity: 0;
    transform: scaleY(0.02);
    filter: brightness(3);
  }
  20% {
    opacity: 1;
    transform: scaleY(1);
    filter: brightness(2);
  }
  80% {
    opacity: 1;
    transform: scaleY(1);
    filter: brightness(1);
  }
  100% {
    opacity: 0;
    transform: scaleY(1);
    filter: brightness(1);
  }
}
@keyframes boot-text {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes glow-pulse {
  0%,
  100% {
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.8), 0 0 20px rgba(0, 255, 65, 0.4);
  }
  50% {
    text-shadow: 0 0 30px rgba(0, 255, 65, 0.8), 0 0 60px rgba(0, 255, 65, 0.6), 0 0 90px rgba(0, 255, 65, 0.3);
  }
}
@keyframes box-glow-pulse {
  0%,
  100% {
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.2), inset 0 0 20px rgba(0, 255, 65, 0.03);
  }
  50% {
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.4), inset 0 0 40px rgba(0, 255, 65, 0.06);
  }
}
@keyframes border-glow {
  0%,
  100% {
    border-color: rgba(0, 255, 65, 0.25);
  }
  50% {
    border-color: rgba(0, 255, 65, 0.6);
  }
}
@keyframes glitch-main {
  0% {
    clip-path: inset(0 0 100% 0);
  }
  10%,
  15% {
    clip-path: inset(10% 0 60% 0);
    transform: translate(-3px, 0);
    color: #00e5ff;
  }
  20%,
  25% {
    clip-path: inset(40% 0 30% 0);
    transform: translate(3px, 0);
    color: #00ff41;
  }
  30%,
  35% {
    clip-path: inset(70% 0 5% 0);
    transform: translate(-2px, 0);
    color: #ff3333;
  }
  40%,
  100% {
    clip-path: inset(0 0 0 0);
    transform: translate(0, 0);
    color: inherit;
  }
}
@keyframes glitch-1 {
  0%,
  90%,
  100% {
    clip-path: inset(0 0 0 0);
    transform: translate(0);
    opacity: 0;
  }
  91% {
    clip-path: inset(20% 0 60% 0);
    transform: translate(-4px, 1px);
    opacity: 0.7;
    color: #00e5ff;
  }
  93% {
    clip-path: inset(50% 0 20% 0);
    transform: translate(4px, -1px);
    opacity: 0.7;
    color: #ff3333;
  }
  95% {
    clip-path: inset(80% 0 5% 0);
    transform: translate(-2px, 2px);
    opacity: 0.7;
    color: #00e5ff;
  }
  97% {
    clip-path: inset(5% 0 80% 0);
    transform: translate(2px, -2px);
    opacity: 0.7;
    color: #00ff41;
  }
}
@keyframes glitch-2 {
  0%,
  85%,
  100% {
    clip-path: inset(0 0 0 0);
    transform: translate(0);
    opacity: 0;
  }
  86% {
    clip-path: inset(30% 0 55% 0);
    transform: translate(5px, 0);
    opacity: 0.6;
    color: #ff3333;
  }
  88% {
    clip-path: inset(60% 0 15% 0);
    transform: translate(-5px, 0);
    opacity: 0.6;
    color: #00e5ff;
  }
  90% {
    clip-path: inset(10% 0 75% 0);
    transform: translate(3px, -2px);
    opacity: 0.6;
    color: #00ff41;
  }
}
@keyframes glitch-skew {
  0%,
  95%,
  100% {
    transform: skewX(0deg);
  }
  96% {
    transform: skewX(-3deg);
  }
  97% {
    transform: skewX(3deg);
  }
  98% {
    transform: skewX(-1deg);
  }
}
@keyframes scanline-move {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 0 100vh;
  }
}
@keyframes scanline-fast {
  from {
    top: -100%;
  }
  to {
    top: 200%;
  }
}
@keyframes crt-flicker {
  0%,
  100% {
    opacity: 1;
  }
  89% {
    opacity: 1;
  }
  90% {
    opacity: 0.85;
  }
  91% {
    opacity: 1;
  }
  92% {
    opacity: 0.9;
  }
  93% {
    opacity: 1;
  }
}
@keyframes phosphor-pulse {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.55;
  }
}
@keyframes matrix-char-fall {
  0% {
    transform: translateY(-100%);
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    transform: translateY(100vh);
    opacity: 0;
  }
}
@keyframes float-particle {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0.6;
  }
  33% {
    transform: translateY(-20px) translateX(10px);
    opacity: 0.8;
  }
  66% {
    transform: translateY(-10px) translateX(-8px);
    opacity: 0.5;
  }
  100% {
    transform: translateY(0) translateX(0);
    opacity: 0.6;
  }
}
@keyframes progress-fill {
  from {
    width: 0;
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes spin-reverse {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}
@keyframes count-up {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes ripple {
  0% {
    transform: scale(0);
    opacity: 0.6;
  }
  100% {
    transform: scale(4);
    opacity: 0;
  }
}
@keyframes h-scan {
  0% {
    left: -100%;
  }
  100% {
    left: 200%;
  }
}
@keyframes dash-flow {
  from {
    stroke-dashoffset: 1000;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes bounce-in {
  0% {
    transform: scale(0.3);
    opacity: 0;
  }
  50% {
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes neon-flicker {
  0%,
  19%,
  21%,
  23%,
  25%,
  54%,
  56%,
  100% {
    text-shadow: 0 0 7px #00ff41, 0 0 21px #00ff41, 0 0 42px #00aa2b;
  }
  20%,
  24%,
  55% {
    text-shadow: none;
  }
}
@keyframes gradient-shift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes scroll-x {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  font-family: 'Share Tech Mono', 'IBM Plex Mono', 'Courier New', monospace;
  background: #000000;
  color: #00ff41;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
a {
  color: #39ff14;
  text-decoration: none;
  transition: color 150ms ease;
}
a:hover {
  color: #00ff41;
  text-shadow: 0 0 8px rgba(0, 255, 65, 0.3);
}
code,
pre {
  font-family: 'Share Tech Mono', 'IBM Plex Mono', 'Courier New', monospace;
}
::selection {
  background: #006622;
  color: #39ff14;
}
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #000000;
}
::-webkit-scrollbar-thumb {
  background: #006622;
  border-radius: 3px;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 255, 65, 0.025) 2px, rgba(0, 255, 65, 0.025) 4px);
  pointer-events: none;
  z-index: 9999;
  opacity: 0.45;
  animation: scanline-move 10s linear infinite;
}
.wiki-header {
  position: sticky;
  top: 0;
  z-index: 800;
  background: rgba(0, 4, 0, 0.97);
  border-bottom: 1px solid rgba(0, 255, 65, 0.6);
  box-shadow: 0 4px 30px rgba(0, 255, 65, 0.1);
  animation: fade-in 0.4s ease;
}
.wiki-header .wiki-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1300px;
  margin: 0 auto;
  padding: 1rem 2rem;
  gap: 2rem;
}
.wiki-header .wiki-logo {
  font-family: 'VT323', monospace;
  font-size: 1.9rem;
  color: #39ff14;
  text-shadow: 0 0 12px #39ff14, 0 0 30px #39ff14;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.wiki-header .wiki-logo span {
  color: #006622;
  font-size: 1.1rem;
}
.wiki-header .wiki-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  flex-wrap: wrap;
}
@media (max-width: 640px) {
  .wiki-header .wiki-nav {
    display: none;
  }
}
.wiki-header .wiki-nav-link {
  font-size: 0.7rem;
  color: #8aaa8a;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.25rem 0;
  position: relative;
  transition: color 150ms ease;
}
.wiki-header .wiki-nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #00ff41;
  transition: width 300ms ease;
}
.wiki-header .wiki-nav-link:hover,
.wiki-header .wiki-nav-link.active {
  color: #39ff14;
}
.wiki-header .wiki-nav-link:hover::after,
.wiki-header .wiki-nav-link.active::after {
  width: 100%;
}
.wiki-header .wiki-search {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 1rem;
  border: 1px solid rgba(0, 255, 65, 0.25);
  border-radius: 3px;
  background: rgba(0, 255, 65, 0.04);
  transition: all 150ms ease;
}
.wiki-header .wiki-search input {
  background: none;
  border: none;
  outline: none;
  color: #00ff41;
  font-family: 'Share Tech Mono', 'IBM Plex Mono', 'Courier New', monospace;
  font-size: 0.7rem;
  width: 160px;
  caret-color: #00ff41;
}
.wiki-header .wiki-search input::placeholder {
  color: #006622;
}
@media (max-width: 640px) {
  .wiki-header .wiki-search input {
    width: 120px;
  }
}
.wiki-header .wiki-search .search-icon {
  color: #006622;
  font-size: 0.85rem;
}
.wiki-header .wiki-search:focus-within {
  border-color: rgba(0, 255, 65, 0.6);
  background: rgba(0, 255, 65, 0.08);
}
.wiki-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  max-width: 1300px;
  margin: 0 auto;
  min-height: calc(100vh - 64px);
  gap: 0;
}
@media (max-width: 900px) {
  .wiki-layout {
    grid-template-columns: 1fr;
  }
}
.wiki-sidebar {
  border-right: 1px solid rgba(0, 255, 65, 0.25);
  padding: 2rem 1rem;
  position: sticky;
  top: 64px;
  height: calc(100vh - 64px);
  overflow-y: auto;
  background: rgba(0, 4, 0, 0.6);
  scrollbar-width: thin;
  scrollbar-color: #003311 transparent;
}
@media (max-width: 900px) {
  .wiki-sidebar {
    display: none;
    position: static;
    height: auto;
    border-right: none;
    border-bottom: 1px solid rgba(0, 255, 65, 0.25);
  }
}
.wiki-sidebar.mobile-open {
  display: block;
}
.sidebar-section {
  margin-bottom: 2rem;
}
.sidebar-section:last-child {
  margin-bottom: 0;
}
.sidebar-title {
  font-size: 0.7rem;
  color: #006622;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 0.5rem;
}
.sidebar-title::before {
  content: '§ ';
  color: #006622;
  margin-right: 0.5rem;
  font-family: 'Share Tech Mono', 'IBM Plex Mono', 'Courier New', monospace;
}
.sidebar-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
  list-style: none;
}
.sidebar-links li a {
  display: block;
  padding: 0.25rem 0.5rem;
  font-size: 0.85rem;
  color: #4a7a4a;
  border-radius: 3px;
  transition: all 150ms ease;
  border-left: 2px solid transparent;
}
.sidebar-links li a:hover {
  color: #00ff41;
  background: rgba(0, 255, 65, 0.06);
  border-left-color: #006622;
}
.sidebar-links li a.active {
  color: #39ff14;
  background: rgba(0, 255, 65, 0.08);
  border-left-color: #00ff41;
}
.wiki-content {
  padding: 3rem;
  max-width: 860px;
}
@media (max-width: 640px) {
  .wiki-content {
    padding: 1.5rem 1rem;
  }
}
.wiki-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  color: #006622;
  margin-bottom: 2rem;
  letter-spacing: 0.08em;
}
.wiki-breadcrumb a {
  color: #00aa2b;
}
.wiki-breadcrumb a:hover {
  color: #00ff41;
}
.wiki-breadcrumb .sep {
  color: #003311;
}
.wiki-breadcrumb .current {
  color: #00ff41;
}
.wiki-content h1 {
  font-family: 'VT323', monospace;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #39ff14;
  letter-spacing: 0.06em;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 0 0 8px #39ff14, 0 0 20px #39ff14;
}
.wiki-content h2 {
  font-family: 'VT323', monospace;
  font-size: 2rem;
  color: #00ff41;
  letter-spacing: 0.05em;
  margin: 3rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(0, 255, 65, 0.25);
}
.wiki-content h2::before {
  content: '##  ';
  color: #006622;
}
.wiki-content h3 {
  font-size: 1.4rem;
  color: #00aa2b;
  margin: 2rem 0 0.5rem;
}
.wiki-content h3::before {
  content: '###  ';
  color: #003311;
  font-size: 0.85rem;
}
.wiki-content h4 {
  font-size: 1rem;
  color: #00aa2b;
  margin: 1.5rem 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.wiki-content p {
  color: #4a7a4a;
  margin-bottom: 1rem;
  line-height: 1.8;
  font-size: 1rem;
}
.wiki-content ul,
.wiki-content ol {
  margin: 0 0 1rem 2rem;
  color: #4a7a4a;
  font-size: 1rem;
  line-height: 1.8;
}
.wiki-content ul li,
.wiki-content ol li {
  margin-bottom: 0.25rem;
}
.wiki-content ul li::marker,
.wiki-content ol li::marker {
  color: #006622;
}
.wiki-content blockquote {
  border-left: 3px solid #006622;
  padding: 0.5rem 1.5rem;
  margin: 1.5rem 0;
  background: rgba(0, 255, 65, 0.04);
  border-radius: 0 3px 3px 0;
  color: #8aaa8a;
  font-style: italic;
}
.wiki-content :not(pre) > code {
  font-family: 'Share Tech Mono', 'IBM Plex Mono', 'Courier New', monospace;
  font-size: 0.88em;
  color: #00ff41;
  background: rgba(0, 255, 65, 0.08);
  border: 1px solid rgba(0, 255, 65, 0.2);
  border-radius: 3px;
  padding: 1px 6px;
}
.wiki-content pre {
  background: rgba(0, 10, 0, 0.85);
  border: 1px solid rgba(0, 255, 65, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 12px;
  overflow-x: auto;
  margin: 1.5rem 0;
  position: relative;
}
.wiki-content pre code {
  display: block;
  padding: 1.5rem;
  font-size: 0.85rem;
  color: #00aa2b;
  line-height: 1.8;
  tab-size: 2;
}
.wiki-content pre code .kw {
  color: #00e5ff;
}
.wiki-content pre code .str {
  color: #ffb300;
}
.wiki-content pre code .num {
  color: #ff3333;
}
.wiki-content pre code .cmt {
  color: #006622;
  font-style: italic;
}
.wiki-content pre code .fn {
  color: #39ff14;
}
.wiki-content pre code .typ {
  color: #00ff41;
}
.wiki-content pre code .op {
  color: #8aaa8a;
}
.wiki-content pre .code-lang {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  font-size: 0.7rem;
  color: #006622;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.wiki-content pre .copy-btn {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  padding: 2px 0.5rem;
  border: 1px solid rgba(0, 255, 65, 0.25);
  border-radius: 3px;
  font-size: 0.7rem;
  color: #4a7a4a;
  cursor: pointer;
  transition: all 150ms ease;
  background: rgba(0, 0, 0, 0.5);
}
.wiki-content pre .copy-btn:hover {
  color: #00ff41;
  border-color: rgba(0, 255, 65, 0.6);
}
.wiki-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.85rem;
}
.wiki-content table th {
  background: rgba(0, 255, 65, 0.08);
  color: #00ff41;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.7rem;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(0, 255, 65, 0.25);
  text-align: left;
}
.wiki-content table td {
  padding: 0.5rem 1rem;
  border: 1px solid rgba(0, 255, 65, 0.25);
  color: #4a7a4a;
  vertical-align: top;
}
.wiki-content table td code {
  font-size: 0.7rem;
}
.wiki-content table tr:hover td {
  background: rgba(0, 255, 65, 0.03);
}
.wiki-content .callout {
  border-radius: 6px;
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  border-left: 3px solid;
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}
.wiki-content .callout .callout-icon {
  flex-shrink: 0;
  font-size: 1.4rem;
}
.wiki-content .callout .callout-body {
  flex: 1;
  font-size: 0.85rem;
  color: #4a7a4a;
}
.wiki-content .callout .callout-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.wiki-content .callout.note {
  border-color: #00e5ff;
  background: rgba(0, 229, 255, 0.05);
}
.wiki-content .callout.note .callout-title {
  color: #00e5ff;
}
.wiki-content .callout.warn {
  border-color: #ffb300;
  background: rgba(255, 179, 0, 0.05);
}
.wiki-content .callout.warn .callout-title {
  color: #ffb300;
}
.wiki-content .callout.danger {
  border-color: #ff3333;
  background: rgba(255, 51, 51, 0.05);
}
.wiki-content .callout.danger .callout-title {
  color: #ff3333;
}
.wiki-content .callout.success {
  border-color: #00ff41;
  background: rgba(0, 255, 65, 0.05);
}
.wiki-content .callout.success .callout-title {
  color: #00ff41;
}
.wiki-content hr {
  border: none;
  border-top: 1px solid rgba(0, 255, 65, 0.25);
  margin: 3rem 0;
}
.wiki-content .anchor-link {
  color: #006622;
  font-size: 0.85rem;
  margin-left: 0.5rem;
  opacity: 0;
  transition: opacity 150ms ease;
}
.wiki-content h2:hover .anchor-link,
.wiki-content h3:hover .anchor-link {
  opacity: 1;
}
.wiki-toc {
  background: rgba(0, 10, 0, 0.85);
  border: 1px solid rgba(0, 255, 65, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}
.wiki-toc .toc-title {
  font-size: 0.7rem;
  color: #00ff41;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}
.wiki-toc .toc-title::before {
  content: '§ ';
  color: #006622;
  margin-right: 0.5rem;
  font-family: 'Share Tech Mono', 'IBM Plex Mono', 'Courier New', monospace;
}
.wiki-toc .toc-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  list-style: none;
}
.wiki-toc .toc-list li a {
  font-size: 0.85rem;
  color: #4a7a4a;
  padding: 2px 0;
  display: block;
  transition: color 150ms ease;
}
.wiki-toc .toc-list li a:hover {
  color: #00ff41;
}
.wiki-toc .toc-list .toc-h3 a {
  padding-left: 1rem;
  font-size: 0.7rem;
}
.wiki-page-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 255, 65, 0.25);
}
.wiki-page-nav .page-nav-btn {
  background: rgba(0, 10, 0, 0.85);
  border: 1px solid rgba(0, 255, 65, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 6px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  transition: all 300ms ease;
}
.wiki-page-nav .page-nav-btn:hover {
  border-color: rgba(0, 255, 65, 0.6);
  background: rgba(0, 255, 65, 0.06);
}
.wiki-page-nav .page-nav-btn.prev {
  align-items: flex-start;
}
.wiki-page-nav .page-nav-btn.next {
  align-items: flex-end;
  text-align: right;
}
.wiki-page-nav .page-nav-btn .nav-dir {
  font-size: 0.7rem;
  color: #006622;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.wiki-page-nav .page-nav-btn .nav-title {
  font-size: 1rem;
  color: #00ff41;
}
.wiki-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}
.wiki-card {
  background: rgba(0, 10, 0, 0.85);
  border: 1px solid rgba(0, 255, 65, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
  text-decoration: none;
}
.wiki-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 255, 65, 0.3);
  border-color: rgba(0, 255, 65, 0.6);
}
.wiki-card .wc-icon {
  font-size: 3rem;
  line-height: 1;
}
.wiki-card .wc-title {
  font-size: 1.15rem;
  color: #00ff41;
}
.wiki-card .wc-desc {
  font-size: 0.85rem;
  color: #4a7a4a;
  line-height: 1.5;
  flex-grow: 1;
}
.wiki-card .wc-arrow {
  color: #006622;
  transition: all 150ms ease;
  align-self: flex-end;
}
.wiki-card:hover .wc-arrow {
  color: #39ff14;
  transform: translateX(4px);
}
.wiki-footer {
  border-top: 1px solid rgba(0, 255, 65, 0.25);
  padding: 2rem;
  margin-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.7rem;
  color: #006622;
}
.wiki-footer a {
  color: #00aa2b;
}
.wiki-footer a:hover {
  color: #00ff41;
}
