* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #0b0f19;
  color: #f3f4f6;
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: #9cd07c;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: rgb(184.3651685393, 221.4662921348, 161.5337078652);
}

.site-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 15, 25, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(132, 186, 100, 0.2);
}
.navbar .navbar-brand .brand-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: #f3f4f6;
}
.navbar .navbar-brand .brand-link .brand-logo {
  text-shadow: 0 0 10px rgba(156, 208, 124, 0.6);
}
.navbar .navbar-brand .brand-link .brand-logo-img {
  height: 32px;
  border-radius: 6px;
  object-fit: cover;
  box-shadow: 0 0 10px rgba(156, 208, 124, 0.4);
}
.navbar .navbar-menu {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.navbar .navbar-menu .menu-item {
  color: #9ca3af;
  font-size: 0.95rem;
  font-weight: 500;
}
.navbar .navbar-menu .menu-item.active, .navbar .navbar-menu .menu-item:hover {
  color: #f3f4f6;
}
.navbar .navbar-menu .github-icon-link {
  color: #84ba64;
  display: flex;
  align-items: center;
  transition: color 0.2s ease, transform 0.2s ease;
}
.navbar .navbar-menu .github-icon-link:hover {
  color: #9cd07c;
  transform: scale(1.1);
}

.page-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  flex-grow: 1;
}

.hero-container {
  text-align: center;
  padding: 5rem 1rem 3rem;
}
.hero-container .hero-logo {
  height: 120px;
  border-radius: 24px;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 30px rgba(156, 208, 124, 0.5);
  animation: pulse 3s infinite alternate;
}
.hero-container .hero-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -0.05em;
}
.hero-container .hero-title .glowing-text {
  display: inline-block;
  animation: pulse 2s infinite alternate;
}
.hero-container .hero-subtitle {
  font-size: 1.25rem;
  color: #9ca3af;
  max-width: 700px;
  margin: 0 auto 2.5rem;
}
.hero-container .hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.hero-container .hero-buttons .btn {
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.2s ease;
  cursor: pointer;
}
.hero-container .hero-buttons .btn.btn-primary {
  background: linear-gradient(135deg, #84ba64, #9cd07c);
  color: #0b0f19;
  box-shadow: 0 4px 15px rgba(132, 186, 100, 0.4);
}
.hero-container .hero-buttons .btn.btn-primary:hover {
  background: linear-gradient(135deg, rgb(146.0022321429, 193.8549107143, 117.6450892857), rgb(170.1825842697, 214.7331460674, 142.7668539326));
  transform: translateY(-1px);
  color: #0b0f19;
}
.hero-container .hero-buttons .btn.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #f3f4f6;
  border: 1px solid rgba(132, 186, 100, 0.2);
}
.hero-container .hero-buttons .btn.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(132, 186, 100, 0.4);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 4rem;
}
.features-grid .feature-card {
  background: rgba(17, 24, 39, 0.6);
  border: 1px solid rgba(132, 186, 100, 0.2);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}
.features-grid .feature-card:hover {
  border-color: rgba(132, 186, 100, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(132, 186, 100, 0.1);
}
.features-grid .feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: #f3f4f6;
}
.features-grid .feature-card p {
  color: #9ca3af;
  font-size: 0.95rem;
  line-height: 1.5;
}

.docs-layout {
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  flex-grow: 1;
}

.sidebar {
  width: 280px;
  position: sticky;
  top: 75px;
  height: calc(100vh - 75px);
  overflow-y: auto;
  padding: 2.5rem 1.5rem;
  border-right: 1px solid rgba(132, 186, 100, 0.2);
  flex-shrink: 0;
}
.sidebar .sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.sidebar .sidebar-nav .sidebar-heading {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #9ca3af;
  font-weight: 700;
  margin-bottom: 0.75rem;
  padding-left: 0.75rem;
}
.sidebar .sidebar-nav .sidebar-link {
  color: #9ca3af;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}
.sidebar .sidebar-nav .sidebar-link:hover {
  background: rgba(255, 255, 255, 0.03);
  color: #f3f4f6;
}
.sidebar .sidebar-nav .sidebar-link.active {
  background: rgba(132, 186, 100, 0.15);
  color: #f3f4f6;
  border-left: 3px solid #9cd07c;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.docs-content-container {
  flex-grow: 1;
  padding: 2.5rem 3rem;
  max-width: 880px;
  overflow-x: hidden;
}

.prose h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(132, 186, 100, 0.2);
  padding-bottom: 0.5rem;
}
.prose h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 2.5rem 0 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 0.25rem;
}
.prose h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 1.5rem 0 0.5rem;
}
.prose p {
  margin-bottom: 1.25rem;
  color: #d1d5db;
  font-size: 1.05rem;
}
.prose ul, .prose ol {
  margin: 0 0 1.25rem 1.5rem;
}
.prose ul li, .prose ol li {
  margin-bottom: 0.5rem;
  color: #d1d5db;
}
.prose code {
  font-family: "JetBrains Mono", monospace;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-size: 0.9em;
  color: #e2e8f0;
}
.prose pre {
  margin-bottom: 1.5rem;
  border-radius: 8px;
  border: 1px solid rgba(132, 186, 100, 0.2);
  overflow-x: auto;
  background-color: #0d1117 !important;
}
.prose pre code {
  padding: 0;
  background: none;
  border-radius: 0;
  font-size: 0.95rem;
}
.prose table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}
.prose table th, .prose table td {
  border: 1px solid rgba(132, 186, 100, 0.2);
  padding: 0.75rem 1rem;
  text-align: left;
}
.prose table th {
  background: rgba(132, 186, 100, 0.1);
  font-weight: 600;
}
.prose table tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.02);
}
.prose blockquote {
  border-left: 4px solid #10b981;
  padding-left: 1rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: #9ca3af;
}

.site-footer {
  border-top: 1px solid rgba(132, 186, 100, 0.2);
  padding: 2rem;
  text-align: center;
  background: rgba(11, 15, 25, 0.5);
  margin-top: auto;
}
.site-footer .footer-container p {
  font-size: 0.9rem;
  color: #9ca3af;
}
.site-footer .footer-container .footer-logo {
  height: 16px;
  width: 16px;
  vertical-align: middle;
  margin: 0 4px;
  border-radius: 3px;
}
.site-footer .footer-container .footer-subtext {
  font-size: 0.8rem;
  margin-top: 0.25rem;
  color: rgba(255, 255, 255, 0.2);
}

@keyframes pulse {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.15);
    text-shadow: 0 0 15px rgba(156, 208, 124, 0.8);
  }
}
@media (max-width: 768px) {
  .navbar {
    padding: 1rem;
    flex-direction: column;
    gap: 1rem;
  }
  .hero-container .hero-title {
    font-size: 2.75rem;
  }
  .docs-layout {
    flex-direction: column;
  }
  .sidebar {
    width: 100%;
    height: auto;
    position: static;
    border-right: none;
    border-bottom: 1px solid rgba(132, 186, 100, 0.2);
    padding: 1.5rem;
  }
  .docs-content-container {
    padding: 1.5rem;
  }
}