/* ============================================================
   DOCS — extends DroboAI marketing theme
   Calmer accents than the landing page: brand blue is used sparingly.
   ============================================================ */

body.docs-page {
  --docs-accent: #2563eb;
  --docs-accent-muted: rgba(37, 99, 235, 0.55);
  --docs-accent-soft: rgba(37, 99, 235, 0.1);
  --docs-accent-border: rgba(37, 99, 235, 0.22);
  --docs-link: #60a5fa;
  --docs-link-hover: #93c5fd;
  --docs-code: #94a3b8;
  --content-card-bg: rgba(8, 8, 11, 0.82);
  --content-card-border: rgba(255, 255, 255, 0.08);
  --content-card-bg-hover: rgba(12, 12, 16, 0.92);
  --content-card-border-hover: rgba(37, 99, 235, 0.28);
  position: relative;
}

/* Documentation should stay readable — don't hide sections behind scroll-reveal */
body.docs-page.js-ready .docs-main .reveal,
body.docs-page.js-ready .docs-main .reveal-slide-up,
body.docs-page.js-ready .docs-main .reveal-slide-left,
body.docs-page.js-ready .docs-main .reveal-slide-right,
body.docs-page.js-ready .docs-main .reveal-stagger,
body.docs-page.js-ready .docs-main .reveal-stagger > * {
  opacity: 1;
  transform: none;
}

body.docs-page .docs-shell {
  position: relative;
  z-index: 1;
}

body.docs-page main {
  padding-top: var(--nav-h);
}

.docs-hero {
  position: relative;
  padding: 1.5rem 0 1rem;
  margin-bottom: 1.25rem;
  background: transparent;
}

.docs-hero-inner {
  max-width: 52rem;
}

.docs-hero h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.docs-hero-lead {
  font-size: 1.125rem;
  color: var(--text-2);
  max-width: 40rem;
  line-height: 1.65;
  margin-bottom: 1rem;
}

.docs-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.docs-pill {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.35rem 0.75rem;
  border-radius: 100px;
  background: var(--surface);
  color: var(--text-2);
}

.docs-pill--accent {
  color: var(--text);
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid var(--docs-accent-border);
  box-shadow: inset 3px 0 0 var(--brand);
}

/* Layout */
.docs-shell {
  max-width: 90rem;
  margin: 0 auto;
  padding: 1.25rem var(--pad) 3.5rem;
}

@supports (padding-left: env(safe-area-inset-left)) {
  .docs-shell {
    padding-left: calc(var(--pad) + env(safe-area-inset-left, 0px));
    padding-right: calc(var(--pad) + env(safe-area-inset-right, 0px));
  }
}

.docs-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

.docs-body {
  min-width: 0;
}

.docs-sidebar-wrap {
  position: relative;
  align-self: start;
}

.docs-sidebar-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  background: var(--surface);
  border-radius: var(--r);
  cursor: pointer;
  margin-bottom: 0.75rem;
}

.docs-sidebar-toggle i {
  transition: transform 0.25s var(--ease);
}

.docs-sidebar-wrap.is-open .docs-sidebar-toggle i {
  transform: rotate(180deg);
}

.docs-sidebar {
  display: none;
  padding: 1rem 0;
  overscroll-behavior: contain;
}

.docs-sidebar-wrap.is-open .docs-sidebar {
  display: block;
}

.docs-toc-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 0.75rem;
  padding: 0 0.5rem;
}

.docs-toc a {
  display: block;
  font-size: 0.875rem;
  line-height: 1.35;
  color: var(--text-2);
  padding: 0.45rem 0.65rem;
  margin: 1px 0;
  border-radius: 8px;
  border-left: 2px solid transparent;
  text-decoration: none;
  transition: color 0.12s ease, background-color 0.12s ease, border-color 0.12s ease;
  outline: none;
}

.docs-toc a:not(.is-active):hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.docs-toc a.is-active {
  color: var(--text);
  font-weight: 600;
  background: rgba(255, 255, 255, 0.07);
  border-left-color: var(--docs-accent);
}

.docs-toc a:focus-visible {
  outline: 2px solid var(--docs-accent-border);
  outline-offset: 1px;
}

.docs-toc .toc-group {
  margin-bottom: 0.5rem;
  border-radius: 8px;
  background: transparent;
}

.docs-toc .toc-group-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  list-style: none;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-2);
  padding: 0.45rem 0.5rem;
  margin-bottom: 0;
  cursor: pointer;
  user-select: none;
  border-radius: 8px;
  transition: color 0.12s ease, background-color 0.12s ease;
}

.docs-toc .toc-group-title::-webkit-details-marker {
  display: none;
}

.docs-toc .toc-group-title:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}

.docs-toc .toc-group-title i {
  font-size: 0.9rem;
  color: var(--text-3);
  transition: transform 0.2s ease;
}

.docs-toc .toc-group[open] .toc-group-title {
  color: var(--text);
}

.docs-toc .toc-group[open] .toc-group-title i {
  transform: rotate(180deg);
}

.docs-toc .toc-group-body {
  padding: 0.2rem 0 0.45rem 0.25rem;
}

.docs-toc .toc-group-body a {
  padding-left: 0.75rem;
}

/* Main content */
.docs-main,
.guide-main {
  min-width: 0;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.docs-section {
  margin-bottom: 0;
  padding: clamp(1.35rem, 3vw, 1.75rem) clamp(1.15rem, 3vw, 1.5rem);
  border-radius: 18px;
  border: 1px solid var(--content-card-border);
  background: var(--content-card-bg);
  scroll-margin-top: calc(var(--nav-h) + 1.5rem);
}

.docs-section > h2 {
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  margin-bottom: 0.85rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.docs-section-lead {
  font-size: 1.0625rem;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 1rem;
  max-width: 42rem;
}

.docs-section h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  margin: 1.5rem 0 0.5rem;
  color: var(--text);
}

.docs-section h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 1.25rem 0 0.5rem;
  color: var(--text);
}

.docs-section h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  margin: 1.25rem 0 0.5rem;
  color: var(--text-2);
}

.docs-section p,
.docs-section li {
  color: var(--text-2);
  line-height: 1.7;
}

.docs-section p {
  margin-bottom: 0.75rem;
}

.docs-section ul,
.docs-section ol {
  margin: 0 0 1rem 1.25rem;
  list-style: disc;
}

.docs-section ol {
  list-style: decimal;
}

.docs-section li {
  margin-bottom: 0.35rem;
}

.docs-section strong {
  color: var(--text);
  font-weight: 600;
}

.docs-section p a:not(.btn-primary):not(.btn-secondary):not(.btn-ghost),
.docs-section li a:not(.btn-primary):not(.btn-secondary):not(.btn-ghost),
.docs-section .docs-section-lead a:not(.btn-primary):not(.btn-secondary):not(.btn-ghost),
.docs-section .docs-callout-body a:not(.btn-primary):not(.btn-secondary):not(.btn-ghost) {
  color: var(--docs-link);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: var(--docs-accent-border);
  transition: color 0.2s var(--ease), text-decoration-color 0.2s var(--ease);
}

.docs-section p a:not(.btn-primary):not(.btn-secondary):not(.btn-ghost):hover,
.docs-section li a:not(.btn-primary):not(.btn-secondary):not(.btn-ghost):hover,
.docs-section .docs-section-lead a:not(.btn-primary):not(.btn-secondary):not(.btn-ghost):hover,
.docs-section .docs-callout-body a:not(.btn-primary):not(.btn-secondary):not(.btn-ghost):hover {
  color: var(--docs-link-hover);
  text-decoration-color: var(--docs-accent-muted);
}

/* Keep button text readable inside docs prose */
.docs-section a.btn-primary,
.docs-markdown a.btn-primary,
.docs-footer-cta a.btn-primary {
  color: #fff;
  text-decoration: none;
}

.docs-section a.btn-primary:hover,
.docs-markdown a.btn-primary:hover,
.docs-footer-cta a.btn-primary:hover {
  color: #fff;
  text-decoration: none;
}

.docs-section a.btn-secondary,
.docs-markdown a.btn-secondary,
.docs-footer-cta a.btn-secondary {
  color: var(--text);
  text-decoration: none;
}

.docs-section a.btn-secondary:hover,
.docs-markdown a.btn-secondary:hover,
.docs-footer-cta a.btn-secondary:hover {
  color: var(--text);
  text-decoration: none;
}

.docs-section a.btn-ghost,
.docs-markdown a.btn-ghost,
.docs-footer-cta a.btn-ghost {
  color: var(--text-2);
  text-decoration: none;
}

.docs-section a.btn-ghost:hover,
.docs-markdown a.btn-ghost:hover,
.docs-footer-cta a.btn-ghost:hover {
  color: var(--text);
  text-decoration: none;
}

/* Feature grid */
.docs-feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin: 1rem 0;
}

.docs-feature {
  padding: 1.125rem 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
}

.docs-feature h4 {
  margin: 0 0 0.35rem;
  font-size: 0.9375rem;
  color: var(--text);
}

.docs-feature p {
  margin: 0;
  font-size: 0.875rem;
}

/* Tables */
.docs-table-wrap {
  overflow-x: auto;
  margin: 1.25rem 0 1.5rem;
  border-radius: var(--r);
  background: var(--surface);
}

.docs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.docs-table th,
.docs-table td {
  text-align: left;
  padding: 0.65rem 1rem;
  vertical-align: top;
}

.docs-table th {
  font-weight: 600;
  color: var(--text);
  background: var(--surface2);
  white-space: nowrap;
}

.docs-table td {
  color: var(--text-2);
}

.docs-table tbody tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.02);
}

.docs-table code {
  font-size: 0.8125rem;
}

/* Code & pre */
.docs-section code {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.85em;
  padding: 0.15em 0.4em;
  background: var(--surface2);
  border-radius: 5px;
  color: var(--docs-code);
}

.docs-pre {
  margin: 1.25rem 0 1.5rem;
  padding: 1rem 1.125rem;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--text-2);
  background: var(--surface);
  border-radius: var(--r);
  overflow-x: auto;
  white-space: pre;
}

/* Callouts */
.docs-callout {
  display: flex;
  gap: 0.85rem;
  padding: 1rem 1.125rem;
  margin: 1rem 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.docs-callout i {
  flex-shrink: 0;
  font-size: 1.25rem;
  margin-top: 0.1rem;
}

.docs-callout-body {
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.6;
}

.docs-callout-body strong {
  color: var(--text);
}

.docs-callout--tip {
  background: var(--docs-accent-soft);
  border: 1px solid var(--border);
  box-shadow: inset 3px 0 0 var(--docs-accent-muted);
}

.docs-callout--tip i { color: var(--docs-accent); }

.docs-callout--warn {
  background: rgba(251, 191, 36, 0.08);
}

.docs-callout--warn i { color: #fbbf24; }

.docs-callout--info {
  background: rgba(96, 165, 250, 0.08);
  border: 1px solid rgba(96, 165, 250, 0.18);
}

.docs-callout--info i { color: #60a5fa; }

/* Help guide subpages (/help/video, /help/ebay, etc.) */
.docs-shell--guide {
  max-width: 52rem;
}

.guide-back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.85rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-2);
  text-decoration: none;
  transition: color 0.15s ease;
}

.guide-back:hover {
  color: var(--text);
}

.guide-back i {
  font-size: 1rem;
}

.docs-hero--guide {
  padding: 0.25rem 0 0;
  margin-bottom: 0.75rem;
}

.docs-hero--guide .docs-hero-lead {
  margin-bottom: 0;
}

.guide-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0 0 0.85rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-light);
  background: var(--docs-accent-soft);
  border: 1px solid var(--docs-accent-border);
}

.guide-video {
  position: relative;
  width: 100%;
  max-width: 42rem;
  aspect-ratio: 16 / 9;
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #000;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.guide-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.guide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.guide-actions .btn-secondary,
.guide-actions .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* Steps */
.docs-steps {
  counter-reset: step;
  list-style: none;
  margin: 1rem 0 1.25rem;
  padding: 0;
}

.docs-steps li {
  position: relative;
  padding-left: 2.75rem;
  margin-bottom: 1rem;
  list-style: none;
}

.docs-steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-2);
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 50%;
}

/* Window diagram */
.docs-diagram {
  margin: 1.5rem 0;
  padding: 1.25rem 1.5rem;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.7rem;
  line-height: 1.45;
  color: var(--text-3);
  background: var(--surface);
  border-radius: var(--r-lg);
  overflow-x: auto;
  white-space: pre;
}

/* Provider row in docs */
.docs-providers {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.25rem 0;
}

.docs-provider-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.85rem;
  background: rgba(255, 255, 255, 0.97);
  border-radius: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #111;
}

.docs-provider-chip img {
  width: 1.25rem;
  height: 1.25rem;
}

.docs-footer-cta {
  margin-top: 0.5rem;
  padding: clamp(1.35rem, 3vw, 1.75rem);
  text-align: center;
  border-radius: 18px;
  background: var(--content-card-bg);
  border: 1px solid var(--content-card-border);
}

.docs-footer-cta h3 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
}

.docs-footer-cta p {
  color: var(--text-2);
  margin-bottom: 1rem;
}

.docs-footer-cta .cta-row {
  justify-content: center;
}

@media (min-width: 1024px) {
  .docs-sidebar-toggle {
    display: none;
  }

  .docs-layout {
    grid-template-columns: 15rem minmax(0, 1fr);
    gap: 2rem;
  }

  .docs-shell {
    padding-top: 1.5rem;
  }

  .docs-sidebar-wrap {
    position: sticky;
    top: calc(var(--nav-h) + 0.75rem);
    max-height: calc(100vh - var(--nav-h) - 1.5rem);
  }

  .docs-sidebar {
    display: block;
    overflow-y: auto;
    padding: 0 0.15rem 0.5rem 0;
    max-height: inherit;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .docs-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1280px) {
  .docs-layout {
    grid-template-columns: 16.5rem minmax(0, 1fr);
  }

  .docs-main {
    padding-right: 2rem;
  }
}

/* Rendered from DOCUMENTATION.md */
.docs-markdown {
  max-width: 52rem;
}

.docs-markdown > h2 {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 2rem 0 0.75rem;
  padding-top: 1rem;
  scroll-margin-top: calc(var(--nav-h) + 1rem);
}

.docs-markdown > h2:first-child {
  margin-top: 0;
  padding-top: 0;
}

.docs-markdown h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
  margin: 1.25rem 0 0.5rem;
  scroll-margin-top: calc(var(--nav-h) + 1rem);
}

.docs-markdown h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  margin: 1.25rem 0 0.5rem;
  color: var(--text-2);
}

.docs-markdown p,
.docs-markdown li {
  color: var(--text-2);
  line-height: 1.7;
}

.docs-markdown p {
  margin-bottom: 1rem;
}

.docs-markdown ul,
.docs-markdown ol {
  margin: 0 0 1rem 1.25rem;
}

.docs-markdown ul { list-style: disc; }
.docs-markdown ol { list-style: decimal; }

.docs-markdown li { margin-bottom: 0.35rem; }

.docs-markdown strong { color: var(--text); font-weight: 600; }

.docs-markdown a:not(.btn-primary):not(.btn-secondary):not(.btn-ghost) {
  color: var(--docs-link);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: var(--docs-accent-border);
  transition: color 0.2s var(--ease), text-decoration-color 0.2s var(--ease);
}

.docs-markdown a:not(.btn-primary):not(.btn-secondary):not(.btn-ghost):hover {
  color: var(--docs-link-hover);
  text-decoration-color: var(--docs-accent-muted);
}

.docs-markdown blockquote {
  margin: 1.25rem 0 1.5rem;
  padding: 1rem 1.125rem;
  border-radius: var(--r);
  background: var(--docs-accent-soft);
  border-left: 3px solid var(--docs-accent-muted);
  color: var(--text-2);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.docs-markdown blockquote p:last-child {
  margin-bottom: 0;
}

.docs-markdown code {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.85em;
  padding: 0.15em 0.4em;
  background: var(--surface2);
  border-radius: 5px;
  color: var(--docs-code);
}

.docs-markdown pre {
  margin: 1.25rem 0 1.5rem;
  padding: 1rem 1.125rem;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--text-2);
  background: var(--surface);
  border-radius: var(--r);
  overflow-x: auto;
  white-space: pre;
}

.docs-markdown pre code {
  padding: 0;
  background: none;
  color: inherit;
  font-size: inherit;
}

.docs-markdown table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  margin: 1.25rem 0 1.5rem;
  background: var(--surface);
  border-radius: var(--r);
  overflow: hidden;
}

.docs-markdown th,
.docs-markdown td {
  text-align: left;
  padding: 0.65rem 1rem;
  vertical-align: top;
}

.docs-markdown th {
  font-weight: 600;
  color: var(--text);
  background: var(--surface2);
}

.docs-markdown td {
  color: var(--text-2);
}

.docs-markdown tbody tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.02);
}

.docs-markdown hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2.5rem 0;
}

@media (max-width: 1023px) {
  .docs-shell {
    padding-top: 1rem;
    padding-bottom: 2.5rem;
  }

  .docs-hero {
    padding: 1rem 0 0.75rem;
    margin-bottom: 1rem;
  }

  .docs-sidebar-toggle {
    width: 100%;
    box-sizing: border-box;
  }

  .docs-section {
    padding: 1.15rem 1rem;
  }
}

@media (max-width: 479px) {
  .docs-hero h1 {
    font-size: 1.75rem;
  }

  .docs-hero-lead {
    font-size: 1rem;
  }

  .docs-feature-grid {
    grid-template-columns: 1fr;
  }
}

/* Tab styles removed — docs use scroll sections with TOC groups */

.docs-extras {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  scroll-margin-top: calc(var(--nav-h) + 1rem);
}

.docs-extras > h2 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.docs-guide-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin: 1rem 0 0;
}

@media (min-width: 640px) {
  .docs-guide-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.docs-guide-card {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.03);
  text-decoration: none;
  color: inherit;
  transition: border-color 80ms ease, background 80ms ease;
  transition-delay: 0s;
}

.docs-guide-card:hover {
  border-color: var(--content-card-border-hover);
  background: rgba(37, 99, 235, 0.05);
  transform: none;
  box-shadow: none;
}

.docs-guide-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 10px;
  flex-shrink: 0;
}

.docs-guide-icon--video {
  background: rgba(37, 99, 235, 0.14);
  color: var(--brand-light);
}

.docs-guide-icon--link {
  background: rgba(99, 102, 241, 0.14);
  color: #818cf8;
}

.docs-guide-icon--amazon {
  background: rgba(245, 158, 11, 0.12);
  color: #fbbf24;
}

.docs-guide-icon--warn {
  background: rgba(37, 99, 235, 0.1);
  color: var(--brand-light);
}

.docs-guide-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.docs-guide-text strong {
  font-size: 0.875rem;
  color: var(--text);
}

.docs-guide-text span {
  font-size: 0.75rem;
  color: var(--text-3);
  line-height: 1.4;
}

.docs-discord-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.docs-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.docs-quick-links a {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-2);
  font-size: 0.8125rem;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.22s var(--link-ease, var(--ease-out)), color 0.22s var(--link-ease, var(--ease-out)), transform 0.22s var(--link-ease, var(--ease-out));
}

.docs-quick-links a:hover {
  color: var(--text);
  border-color: var(--border2);
  transform: translateY(-1px);
}
