/* ═══════════════════════════════════════════════════════════════════════════
   OVERKILL LINUX — STYLE
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── RESET ── */
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}

:root {
  --bg: #050811;
  --bg2: #080c18;
  --bg3: #0b1120;
  --bg-card: #0a0f1e;
  --bg-card-hover: #0d1328;
  --cyan: #00d4ff;
  --blue: #0080ff;
  --deep-blue: #0055cc;
  --fire-blue: #1e90ff;
  --glow-cyan: rgba(0, 212, 255, 0.15);
  --glow-strong: rgba(0, 212, 255, 0.35);
  --border: rgba(0, 180, 255, 0.08);
  --border-hover: rgba(0, 212, 255, 0.25);
  --text: #9bb0cc;
  --text-dim: #5a7090;
  --white: #e8f0fa;
  --font: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --mono: 'JetBrains Mono', 'Fira Code', 'Cascadia Code', monospace;
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: var(--cyan); text-decoration: none; transition: all 0.25s ease; }
a:hover { color: var(--white); text-shadow: 0 0 12px var(--glow-cyan); }
img { max-width: 100%; display: block; }

::selection { background: var(--cyan); color: var(--bg); }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #1a2a44; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--blue); }


/* ── UTILITIES ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

.section-label {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--cyan);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
}

.section-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.section-sub {
  max-width: 620px;
  color: var(--text-dim);
  font-size: 1rem;
  margin-bottom: 56px;
  line-height: 1.8;
}

.glow-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--cyan) 50%, transparent 100%);
  opacity: 0.15;
}


/* ══════════════ NAVBAR ══════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  height: 64px;
  backdrop-filter: blur(24px) saturate(1.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
  background: rgba(5, 8, 17, 0.75);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}
.navbar.scrolled {
  background: rgba(5, 8, 17, 0.92);
  box-shadow: 0 2px 40px rgba(0, 180, 255, 0.06);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  letter-spacing: 1px;
}
.nav-brand img {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-dim);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
  transition: width 0.3s ease;
}
.nav-links a:hover {
  color: var(--cyan);
  text-shadow: 0 0 16px rgba(0,212,255,0.3);
}
.nav-links a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 22px;
  height: 1.5px;
  background: var(--cyan);
  border-radius: 2px;
  transition: all 0.3s;
}


/* ══════════════ HERO ══════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(5,8,17,0.15) 0%,
      rgba(5,8,17,0.35) 30%,
      rgba(5,8,17,0.75) 65%,
      var(--bg) 100%
    );
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(0,128,255,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(0,212,255,0.05) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 64px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 18px;
  border: 1px solid rgba(0,212,255,0.15);
  border-radius: 100px;
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--cyan);
  background: rgba(0,212,255,0.04);
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}
.hero-tag .pulse {
  width: 6px;
  height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--cyan);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -2px;
}
.hero h1 .gradient {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--blue) 50%, var(--deep-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 30px rgba(0,212,255,0.3));
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text);
  max-width: 540px;
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  font-family: var(--font);
  letter-spacing: 0.3px;
}
.btn-glow {
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: var(--bg);
  box-shadow: 0 4px 25px rgba(0, 212, 255, 0.3), inset 0 1px 0 rgba(255,255,255,0.15);
}
.btn-glow:hover {
  box-shadow: 0 6px 40px rgba(0, 212, 255, 0.5), inset 0 1px 0 rgba(255,255,255,0.2);
  transform: translateY(-2px);
  color: var(--bg);
}
.btn-ghost {
  background: rgba(0, 212, 255, 0.05);
  border: 1px solid rgba(0, 212, 255, 0.15);
  color: var(--cyan);
}
.btn-ghost:hover {
  background: rgba(0, 212, 255, 0.1);
  border-color: rgba(0, 212, 255, 0.35);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.1);
  color: var(--cyan);
}

.hero-stats {
  display: flex;
  gap: 56px;
  margin-top: 64px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}
.hero-stat .val {
  font-family: var(--mono);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  text-shadow: 0 0 20px rgba(0,212,255,0.15);
}
.hero-stat .lbl {
  font-size: 0.72rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 4px;
}


/* ══════════════ ABOUT ══════════════ */
.section { padding: 110px 0; }

.about-layout {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-text h3 {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 16px;
  font-weight: 600;
}
.about-text p {
  margin-bottom: 18px;
  line-height: 1.85;
}
.about-text p strong {
  color: var(--white);
}

.screenshot-frame {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(0, 128, 255, 0.05);
  transition: all 0.4s ease;
}
.screenshot-frame:hover {
  border-color: var(--border-hover);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(0, 180, 255, 0.08);
  transform: translateY(-4px);
}
.screenshot-frame img {
  width: 100%;
  display: block;
}
.screenshot-frame .frame-bar {
  height: 28px;
  background: var(--bg3);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 6px;
}
.screenshot-frame .frame-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1a2a44;
  border: 1px solid rgba(0,180,255,0.12);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.feature-card {
  padding: 28px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.feature-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 128, 255, 0.06);
}
.feature-card:hover::before { opacity: 1; }
.feature-card .feat-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(0, 212, 255, 0.06);
  border: 1px solid rgba(0, 212, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--cyan);
  font-size: 1rem;
}
.feature-card h4 {
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 8px;
  font-weight: 600;
}
.feature-card p {
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.6;
}


/* ══════════════ EDITIONS ══════════════ */
.editions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 16px;
}
.edition-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px 28px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.edition-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.edition-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 128, 255, 0.05);
}
.edition-card:hover::after { opacity: 1; }

.edition-card .eid {
  font-family: var(--mono);
  font-size: 0.68rem;
  color: var(--cyan);
  background: rgba(0, 212, 255, 0.06);
  border: 1px solid rgba(0, 212, 255, 0.1);
  padding: 2px 10px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.edition-card h3 {
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 8px;
  font-weight: 600;
}
.edition-card p {
  font-size: 0.83rem;
  color: var(--text-dim);
  line-height: 1.65;
}
.edition-card .tuning-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 0.68rem;
  margin-top: 14px;
  padding: 3px 12px;
  border-radius: 100px;
  letter-spacing: 0.5px;
}
.tuning-badge.gaming {
  color: #4fc3f7;
  background: rgba(79, 195, 247, 0.06);
  border: 1px solid rgba(79, 195, 247, 0.12);
}
.tuning-badge.hardened {
  color: #ff7043;
  background: rgba(255, 112, 67, 0.06);
  border: 1px solid rgba(255, 112, 67, 0.12);
}
.tuning-badge.multimedia {
  color: #ab47bc;
  background: rgba(171, 71, 188, 0.06);
  border: 1px solid rgba(171, 71, 188, 0.12);
}
.tuning-badge.ai {
  color: #66bb6a;
  background: rgba(102, 187, 106, 0.06);
  border: 1px solid rgba(102, 187, 106, 0.12);
}


/* ══════════════ SYSTEM MANAGER ══════════════ */
.manager-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 64px;
}
.manager-desc p {
  margin-bottom: 16px;
  line-height: 1.85;
}

.manager-modules {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.mod-card {
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: all 0.3s ease;
}
.mod-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
}
.mod-card .mod-icon {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--cyan);
  margin-bottom: 10px;
  letter-spacing: 1px;
}
.mod-card h4 {
  font-size: 0.92rem;
  color: var(--white);
  margin-bottom: 6px;
  font-weight: 600;
}
.mod-card p {
  font-size: 0.78rem;
  color: var(--text-dim);
  line-height: 1.6;
}

.manager-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 48px;
}
.manager-gallery .gallery-item {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}
.manager-gallery .gallery-item:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,128,255,0.06);
}
.manager-gallery .gallery-item img { width: 100%; }
.manager-gallery .gallery-item.wide {
  grid-column: span 2;
}
.gallery-caption {
  padding: 12px 16px;
  background: var(--bg3);
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--text-dim);
  letter-spacing: 0.5px;
  border-top: 1px solid var(--border);
}


/* ══════════════ DOWNLOAD ══════════════ */
.download-wrapper {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.dl-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 52px 44px;
  position: relative;
  overflow: hidden;
}
.dl-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  box-shadow: 0 0 20px var(--glow-cyan);
}
.dl-version {
  font-family: var(--mono);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}
.dl-codename {
  font-family: var(--mono);
  color: var(--cyan);
  font-size: 0.85rem;
  margin-bottom: 28px;
  text-shadow: 0 0 16px rgba(0,212,255,0.3);
}
.dl-meta {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.dl-meta span {
  font-size: 0.8rem;
  color: var(--text-dim);
}
.dl-meta strong {
  color: var(--white);
}
.sha-block {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px 20px;
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--text-dim);
  word-break: break-all;
  margin-bottom: 32px;
  text-align: left;
  line-height: 1.8;
}
.sha-block .sha-label {
  color: var(--cyan);
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}
.dl-btn {
  width: 100%;
  justify-content: center;
  padding: 18px;
  font-size: 1rem;
}


/* ══════════════ FOOTER ══════════════ */
.footer {
  padding: 36px 0;
  text-align: center;
  border-top: 1px solid var(--border);
}
.footer p {
  font-size: 0.78rem;
  color: var(--text-dim);
}


/* ══════════════ RESPONSIVE ══════════════ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .manager-modules { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 900px) {
  .about-hero,
  .manager-hero { grid-template-columns: 1fr; gap: 40px; }
  .manager-gallery { grid-template-columns: 1fr; }
  .manager-gallery .gallery-item.wide { grid-column: span 1; }
  .hero-stats { flex-wrap: wrap; gap: 28px; }
  .editions-grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(5,8,17,0.96);
    flex-direction: column;
    padding: 28px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(24px);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .hero h1 { font-size: 2.4rem; letter-spacing: -1px; }
  .section { padding: 64px 0; }
  .section-title { font-size: 1.8rem; }
  .features-grid { grid-template-columns: 1fr; }
  .manager-modules { grid-template-columns: 1fr !important; }
  .dl-card { padding: 32px 20px; }
  .dl-meta { gap: 16px; }
}


/* ══════════════ DOCS PAGE ══════════════ */
.docs-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: calc(100vh - 64px);
  padding-top: 64px;
}

.docs-sidebar {
  position: sticky;
  top: 64px;
  height: calc(100vh - 64px);
  overflow-y: auto;
  background: var(--bg2);
  border-right: 1px solid var(--border);
  padding: 32px 0;
}
.docs-sidebar::-webkit-scrollbar { width: 3px; }
.docs-sidebar::-webkit-scrollbar-thumb { background: #1a2a44; }

.sidebar-section {
  margin-bottom: 8px;
}
.sidebar-heading {
  font-family: var(--mono);
  font-size: 0.65rem;
  color: var(--text-dim);
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 24px;
  margin-bottom: 2px;
}
.sidebar-link {
  display: block;
  padding: 8px 24px 8px 32px;
  font-size: 0.85rem;
  color: var(--text-dim);
  border-left: 2px solid transparent;
  transition: all 0.2s;
}
.sidebar-link:hover {
  color: var(--cyan);
  background: rgba(0,212,255,0.03);
  text-shadow: none;
}
.sidebar-link.active {
  color: var(--cyan);
  border-left-color: var(--cyan);
  background: rgba(0,212,255,0.05);
}

.docs-content {
  padding: 48px 56px 80px;
  max-width: 860px;
}
.docs-content h1 {
  font-size: 2.2rem;
  color: var(--white);
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.docs-content > .lead {
  font-size: 1.05rem;
  color: var(--text-dim);
  margin-bottom: 48px;
  line-height: 1.8;
}
.docs-content h2 {
  font-size: 1.5rem;
  color: var(--white);
  font-weight: 700;
  margin: 56px 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  letter-spacing: -0.3px;
}
.docs-content h2:first-of-type { margin-top: 0; }
.docs-content h3 {
  font-size: 1.15rem;
  color: var(--white);
  font-weight: 600;
  margin: 32px 0 12px;
}
.docs-content p {
  margin-bottom: 16px;
  line-height: 1.85;
}
.docs-content ul, .docs-content ol {
  margin: 12px 0 20px 24px;
  line-height: 1.85;
}
.docs-content li {
  margin-bottom: 6px;
}
.docs-content li strong {
  color: var(--white);
}
.docs-content code {
  font-family: var(--mono);
  font-size: 0.82rem;
  background: rgba(0,212,255,0.05);
  border: 1px solid rgba(0,212,255,0.08);
  padding: 2px 7px;
  border-radius: 4px;
  color: var(--cyan);
}
.docs-content pre {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px 22px;
  overflow-x: auto;
  margin: 16px 0 24px;
  font-family: var(--mono);
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--text);
}
.docs-content pre code {
  background: none;
  border: none;
  padding: 0;
  color: inherit;
}

.docs-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 28px;
  font-size: 0.85rem;
}
.docs-table th {
  text-align: left;
  padding: 10px 16px;
  background: var(--bg3);
  color: var(--white);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--border);
}
.docs-table td {
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.docs-table tr:hover td {
  background: rgba(0,212,255,0.02);
}

.callout {
  padding: 16px 20px;
  border-radius: 8px;
  margin: 20px 0;
  font-size: 0.88rem;
  line-height: 1.7;
  border-left: 3px solid;
}
.callout.info {
  background: rgba(0,212,255,0.04);
  border-color: var(--cyan);
  color: var(--text);
}
.callout.warn {
  background: rgba(255,167,38,0.04);
  border-color: #ffa726;
  color: var(--text);
}
.callout strong {
  color: var(--white);
}

@media (max-width: 800px) {
  .docs-layout { grid-template-columns: 1fr; }
  .docs-sidebar {
    position: fixed;
    left: -280px;
    top: 64px;
    width: 260px;
    z-index: 999;
    transition: left 0.3s ease;
    box-shadow: 4px 0 20px rgba(0,0,0,0.4);
  }
  .docs-sidebar.open { left: 0; }
  .docs-content { padding: 32px 20px 60px; }
  .docs-menu-toggle {
    display: flex !important;
  }
}
.docs-menu-toggle {
  display: none;
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 1000;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--cyan);
  font-size: 1.2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
