
/* Mobile Sidebar Toggle Button */
.docs-mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  color: #fff;
  border-radius: 6px;
  padding: 0.35rem 0.5rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
}
.docs-mobile-toggle:hover {
  background: rgba(255, 255, 255, 0.08);
}

    :root {
      --bg: #0b0f19;
      --sidebar-bg: #090d16;
      --card-bg: #111827;
      --card-hover: #161f32;
      --border: #1e293b;
      --border-light: rgba(255, 255, 255, 0.08);
      --primary: #3b82f6;
      --primary-hover: #2563eb;
      --primary-glow: rgba(59, 130, 246, 0.15);
      --purple: #8b5cf6;
      --text: #f8fafc;
      --text-muted: #94a3b8;
      --text-dim: #64748b;
      --code-bg: #070a12;
      --code-border: #1e293b;
      --success: #10b981;
      --warning: #f59e0b;
      --danger: #ef4444;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif; }
    body { background-color: var(--bg); color: var(--text); min-height: 100vh; display: flex; flex-direction: column; overflow-x: hidden; }

    /* Top Bar */
    header.topbar {
      height: 64px;
      background: rgba(11, 15, 25, 0.95);
      border-bottom: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 1.75rem;
      position: sticky;
      top: 0;
      z-index: 100;
      backdrop-filter: blur(16px);
    }

    .brand-wrap {
      display: flex;
      align-items: center;
      gap: 0.85rem;
      text-decoration: none;
      color: #fff;
    }
    .brand-logo-img {
      height: 42px;
      width: auto;
      object-fit: contain;
      filter: drop-shadow(0 0 14px rgba(59, 130, 246, 0.55));
      transition: transform 0.2s ease;
    }
    .brand-wrap:hover .brand-logo-img {
      transform: scale(1.05);
    }
    .brand-text {
      font-size: 1.12rem;
      font-weight: 800;
      letter-spacing: -0.02em;
      color: #fff;
      display: flex;
      align-items: center;
      gap: 0.4rem;
    }
    .brand-text span.accent { color: var(--primary); }
    .brand-badge {
      font-size: 0.68rem;
      font-weight: 700;
      padding: 0.15rem 0.45rem;
      background: rgba(59, 130, 246, 0.12);
      color: var(--primary);
      border: 1px solid rgba(59, 130, 246, 0.25);
      border-radius: 6px;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }

    .search-box {
      flex: 1;
      max-width: 420px;
      margin: 0 2rem;
      position: relative;
    }
    .search-box input {
      width: 100%;
      background: #070a12;
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 0.55rem 2.75rem 0.55rem 2.5rem;
      color: #fff;
      font-size: 0.86rem;
      outline: none;
      transition: all 0.2s;
    }
    .search-box input:focus {
      border-color: var(--primary);
      box-shadow: 0 0 16px var(--primary-glow);
    }
    .search-icon-svg {
      position: absolute;
      left: 0.85rem;
      top: 50%;
      transform: translateY(-50%);
      width: 16px;
      height: 16px;
      fill: var(--text-dim);
      pointer-events: none;
    }
    .search-key {
      position: absolute;
      right: 0.75rem;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid var(--border);
      border-radius: 4px;
      padding: 0.15rem 0.4rem;
      font-size: 0.7rem;
      color: var(--text-dim);
      font-family: 'JetBrains Mono', monospace;
      pointer-events: none;
    }

    .top-actions {
      display: flex;
      align-items: center;
      gap: 0.85rem;
    }
    .nav-btn {
      background: transparent;
      border: 1px solid var(--border);
      color: var(--text-muted);
      font-size: 0.82rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 0.4rem;
      font-weight: 600;
      padding: 0.45rem 0.75rem;
      border-radius: 6px;
      transition: all 0.15s;
      text-decoration: none;
    }
    .nav-btn:hover {
      color: #fff;
      border-color: var(--border-light);
      background: rgba(255, 255, 255, 0.04);
    }
    .btn-key {
      background: var(--primary);
      color: #fff;
      border: none;
      font-size: 0.82rem;
      font-weight: 700;
      padding: 0.5rem 1rem;
      border-radius: 6px;
      display: flex;
      align-items: center;
      gap: 0.45rem;
      text-decoration: none;
      transition: all 0.2s;
    }
    .btn-key:hover {
      background: var(--primary-hover);
      box-shadow: 0 4px 14px rgba(59, 130, 246, 0.4);
    }

    /* Main Docs Layout */
    .docs-layout {
      display: grid;
      grid-template-columns: 270px 1fr 230px;
      max-width: 1540px;
      margin: 0 auto;
      width: 100%;
      flex: 1;
    }

    /* Left Sidebar */
    aside.docs-sidebar {
      background: var(--sidebar-bg);
      border-right: 1px solid var(--border);
      padding: 2rem 1.25rem 4rem;
      height: calc(100vh - 64px);
      position: sticky;
      top: 64px;
      overflow-y: auto;
    }
    aside.docs-sidebar::-webkit-scrollbar { width: 4px; }
    aside.docs-sidebar::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }

    .nav-section { margin-bottom: 1.75rem; }
    .nav-heading {
      font-size: 0.72rem;
      font-weight: 800;
      color: var(--text-dim);
      text-transform: uppercase;
      letter-spacing: 0.07em;
      margin-bottom: 0.65rem;
      padding-left: 0.6rem;
      display: flex;
      align-items: center;
      gap: 0.4rem;
    }
    .nav-list { list-style: none; }
    .nav-link {
      display: flex;
      align-items: center;
      justify-content: space-between;
      color: var(--text-muted);
      text-decoration: none;
      font-size: 0.86rem;
      padding: 0.42rem 0.65rem;
      border-radius: 6px;
      margin-bottom: 0.12rem;
      font-weight: 500;
      transition: all 0.15s;
    }
    .nav-link:hover {
      color: #fff;
      background: rgba(255, 255, 255, 0.04);
    }
    .nav-link.active {
      color: #fff;
      font-weight: 700;
      background: rgba(59, 130, 246, 0.12);
      color: var(--primary);
      border-left: 2px solid var(--primary);
    }
    .method-badge {
      font-size: 0.62rem;
      font-weight: 700;
      padding: 0.1rem 0.35rem;
      border-radius: 4px;
      font-family: 'JetBrains Mono', monospace;
    }
    .method-get { background: rgba(16, 185, 129, 0.12); color: #10b981; }
    .method-post { background: rgba(59, 130, 246, 0.12); color: #60a5fa; }
    .method-cli { background: rgba(139, 92, 246, 0.12); color: #a78bfa; }

    /* Center Content */
    main.docs-content {
      padding: 2.75rem 3.5rem 6rem;
      max-width: 920px;
      min-width: 0;
    }

    .doc-article {
      display: none;
    }
    .doc-article.active-article {
      display: block;
      animation: fadeIn 0.15s ease-in-out;
    }
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(4px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .breadcrumb {
      font-size: 0.8rem;
      color: var(--text-dim);
      margin-bottom: 1.25rem;
      display: flex;
      align-items: center;
      gap: 0.4rem;
    }
    .breadcrumb span.current { color: #cbd5e1; font-weight: 600; }

    .tag-category {
      display: inline-block;
      font-size: 0.7rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--primary);
      background: rgba(59, 130, 246, 0.1);
      padding: 0.2rem 0.55rem;
      border-radius: 5px;
      margin-bottom: 0.75rem;
      border: 1px solid rgba(59, 130, 246, 0.2);
    }

    h1.article-title {
      font-size: 2.35rem;
      font-weight: 800;
      letter-spacing: -0.03em;
      color: #fff;
      margin-bottom: 0.65rem;
      line-height: 1.2;
    }
    p.article-desc {
      font-size: 1.08rem;
      line-height: 1.6;
      color: var(--text-muted);
      margin-bottom: 2rem;
    }
    .hr {
      height: 1px;
      background: var(--border);
      margin: 2rem 0;
    }

    h2.heading-2 {
      font-size: 1.45rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      color: #fff;
      margin: 2.25rem 0 0.85rem;
      scroll-margin-top: 85px;
      display: flex;
      align-items: center;
      gap: 0.45rem;
    }
    h2.heading-2:first-of-type { margin-top: 0; }

    h3.heading-3 {
      font-size: 1.12rem;
      font-weight: 600;
      color: #e2e8f0;
      margin: 1.75rem 0 0.65rem;
      scroll-margin-top: 85px;
    }

    p.prose {
      font-size: 0.95rem;
      line-height: 1.7;
      color: #cbd5e1;
      margin-bottom: 1.2rem;
    }
    p.prose code, li code, td code {
      background: #111827;
      color: #93c5fd;
      padding: 0.18rem 0.4rem;
      border-radius: 5px;
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.86em;
      border: 1px solid rgba(255, 255, 255, 0.06);
    }

    ul.prose-list, ol.prose-list {
      margin: 0.75rem 0 1.5rem 1.5rem;
      color: #cbd5e1;
      line-height: 1.75;
      font-size: 0.94rem;
    }
    ul.prose-list li, ol.prose-list li { margin-bottom: 0.35rem; }

    /* Clean Code Snippets */
    .code-panel {
      background: var(--code-bg);
      border: 1px solid var(--code-border);
      border-radius: 10px;
      overflow: hidden;
      margin: 1.25rem 0 2rem;
    }
    .code-top {
      background: #0d121f;
      border-bottom: 1px solid var(--code-border);
      padding: 0.45rem 0.85rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .code-lang-tabs {
      display: flex;
      gap: 0.25rem;
    }
    .lang-tab {
      background: transparent;
      border: none;
      color: var(--text-muted);
      font-size: 0.78rem;
      font-family: 'JetBrains Mono', monospace;
      font-weight: 600;
      padding: 0.3rem 0.65rem;
      border-radius: 5px;
      cursor: pointer;
      transition: all 0.15s;
    }
    .lang-tab:hover { color: #fff; }
    .lang-tab.active {
      color: #fff;
      background: rgba(59, 130, 246, 0.2);
    }
    .btn-copy {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--border);
      color: var(--text-muted);
      padding: 0.25rem 0.65rem;
      border-radius: 5px;
      font-size: 0.75rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 0.3rem;
      transition: all 0.15s;
    }
    .btn-copy:hover {
      background: rgba(255, 255, 255, 0.1);
      color: #fff;
    }
    pre.code-content {
      padding: 1.15rem 1.35rem;
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.86rem;
      line-height: 1.75;
      color: #e2e8f0;
      overflow-x: auto;
      margin: 0;
    }

    /* Clean Tables */
    .table-box {
      width: 100%;
      overflow-x: auto;
      margin: 1.25rem 0 2rem;
      border-radius: 10px;
      border: 1px solid var(--border);
    }
    table.data-table {
      width: 100%;
      border-collapse: collapse;
      background: var(--card-bg);
      min-width: 580px;
    }
    table.data-table th {
      text-align: left;
      padding: 0.8rem 1.1rem;
      font-size: 0.74rem;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--text-dim);
      background: rgba(255, 255, 255, 0.02);
      border-bottom: 1px solid var(--border);
    }
    table.data-table td {
      padding: 0.85rem 1.1rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.04);
      font-size: 0.87rem;
      color: #cbd5e1;
      vertical-align: top;
      line-height: 1.55;
    }
    table.data-table tr:last-child td { border-bottom: none; }
    .prop-type {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.74rem;
      color: #60a5fa;
      background: rgba(59, 130, 246, 0.1);
      padding: 0.1rem 0.35rem;
      border-radius: 4px;
    }
    .badge-req {
      font-size: 0.7rem;
      font-weight: 700;
      color: #f87171;
      background: rgba(248, 113, 113, 0.1);
      padding: 0.1rem 0.3rem;
      border-radius: 4px;
      margin-left: 0.3rem;
    }
    .badge-opt {
      font-size: 0.7rem;
      color: var(--text-dim);
      margin-left: 0.3rem;
    }

    /* Callout Note */
    .callout {
      border-radius: 10px;
      padding: 1rem 1.25rem;
      margin: 1.5rem 0;
      border: 1px solid;
      display: flex;
      gap: 0.85rem;
      align-items: flex-start;
      font-size: 0.9rem;
      line-height: 1.6;
    }
    .callout-info { background: rgba(59, 130, 246, 0.07); border-color: rgba(59, 130, 246, 0.25); color: #bfdbfe; }
    .callout-info strong { color: #60a5fa; }
    .callout-warn { background: rgba(245, 158, 11, 0.07); border-color: rgba(245, 158, 11, 0.25); color: #fde68a; }
    .callout-warn strong { color: #fbbf24; }

    /* Right Sidebar */
    aside.docs-toc {
      padding: 2.75rem 1.25rem 4rem 0.75rem;
      height: calc(100vh - 64px);
      position: sticky;
      top: 64px;
      overflow-y: auto;
    }
    .toc-title {
      font-size: 0.72rem;
      font-weight: 800;
      color: var(--text-dim);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 0.85rem;
    }
    .toc-list { list-style: none; }
    .toc-link {
      display: block;
      color: var(--text-muted);
      text-decoration: none;
      font-size: 0.82rem;
      margin-bottom: 0.6rem;
      line-height: 1.4;
      transition: color 0.15s;
    }
    .toc-link:hover { color: #fff; }
    .toc-link.active {
      color: var(--primary);
      font-weight: 600;
    }

    /* Responsive */
    @media (max-width: 1100px) {
      .docs-layout { grid-template-columns: 250px 1fr; }
      aside.docs-toc { display: none; }
    }
    @media (max-width: 768px) {
      .docs-layout { display: flex; flex-direction: column; }
      .docs-mobile-toggle { display: inline-flex; }
      aside.docs-sidebar {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        width: 290px;
        height: calc(100vh - 60px);
        background: #0b0f19;
        z-index: 150;
        border-right: 1px solid var(--border);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        box-shadow: 10px 0 35px rgba(0, 0, 0, 0.7);
        padding: 1rem 0.85rem;
      }
      aside.docs-sidebar.open {
        display: block;
      }
      main.docs-content {
        padding: 1.5rem 1rem 3rem;
        max-width: 100%;
        overflow-x: hidden;
      }
      .search-box { display: none; }
      .code-content {
        font-size: 0.76rem;
        padding: 0.9rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
      }
      .table-box {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
      }
      .data-table {
        min-width: 520px;
      }
      .article-title {
        font-size: 1.65rem;
      }
      .heading-2 {
        font-size: 1.25rem;
      }
    }

    /* Developer Authentication & Menu Styles */
    .btn-dev-login {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      background: rgba(59, 130, 246, 0.12);
      border: 1px solid rgba(59, 130, 246, 0.35);
      color: #93c5fd;
      padding: 0.42rem 0.95rem;
      border-radius: 8px;
      font-size: 0.82rem;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .btn-dev-login:hover {
      background: rgba(59, 130, 246, 0.25);
      border-color: #3b82f6;
      color: #fff;
      box-shadow: 0 0 16px rgba(59, 130, 246, 0.35);
      transform: translateY(-1px);
    }
    .btn-dev-icon { font-size: 0.9rem; }
    .dev-user-menu-wrap { position: relative; }
    .btn-dev-user {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: #161f32;
      border: 1px solid var(--border);
      color: #f8fafc;
      padding: 0.35rem 0.75rem;
      border-radius: 8px;
      font-size: 0.8rem;
      cursor: pointer;
      transition: all 0.15s;
    }
    .btn-dev-user:hover {
      border-color: var(--primary);
      background: #1e293b;
    }
    .dev-avatar {
      width: 20px;
      height: 20px;
      background: var(--primary);
      color: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.7rem;
      font-weight: bold;
    }
    .dev-user-name {
      max-width: 140px;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      font-weight: 600;
    }
    .dev-badge-plan {
      background: rgba(16, 185, 129, 0.15);
      color: #34d399;
      border: 1px solid rgba(16, 185, 129, 0.3);
      font-size: 0.68rem;
      font-weight: 800;
      padding: 0.1rem 0.4rem;
      border-radius: 4px;
      text-transform: uppercase;
    }
    .dev-chevron { width: 14px; height: 14px; color: var(--text-dim); }
    .dev-dropdown {
      position: absolute;
      top: calc(100% + 8px);
      right: 0;
      width: 320px;
      background: #111827;
      border: 1px solid var(--border);
      border-radius: 12px;
      box-shadow: 0 16px 36px rgba(0,0,0,0.6);
      padding: 1rem;
      z-index: 200;
      display: none;
    }
    .dev-dropdown.show { display: block; }
    .dev-dropdown-header {
      background: #090d16;
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 0.75rem;
      margin-bottom: 0.75rem;
    }
    .dev-dd-title {
      font-size: 0.72rem;
      font-weight: 700;
      color: var(--text-dim);
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-bottom: 0.35rem;
    }
    .dev-key-preview {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.5rem;
    }
    .dev-key-preview code {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.78rem;
      color: #93c5fd;
      background: rgba(59, 130, 246, 0.1);
      padding: 0.2rem 0.4rem;
      border-radius: 4px;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }
    .btn-copy-key {
      background: rgba(255,255,255,0.08);
      border: 1px solid var(--border);
      color: #fff;
      font-size: 0.72rem;
      padding: 0.2rem 0.5rem;
      border-radius: 4px;
      cursor: pointer;
    }
    .btn-copy-key:hover { background: rgba(255,255,255,0.15); }
    .dev-dd-hint {
      font-size: 0.7rem;
      color: var(--text-dim);
      margin-top: 0.35rem;
    }
    .dev-dropdown-divider {
      height: 1px;
      background: var(--border);
      margin: 0.75rem 0;
    }
    .dev-stat-row {
      display: flex;
      justify-content: space-between;
      font-size: 0.8rem;
      color: var(--text-muted);
      margin-bottom: 0.4rem;
    }
    .dev-dropdown-item {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      color: #cbd5e1;
      text-decoration: none;
      font-size: 0.82rem;
      padding: 0.5rem 0.65rem;
      border-radius: 6px;
      border: none;
      background: transparent;
      width: 100%;
      text-align: left;
      cursor: pointer;
      transition: background 0.15s, color 0.15s;
    }
    .dev-dropdown-item:hover {
      background: rgba(255,255,255,0.05);
      color: #fff;
    }
    .dev-dropdown-item.btn-logout { color: #f87171; }
    .dev-dropdown-item.btn-logout:hover {
      background: rgba(239, 68, 68, 0.1);
      color: #ef4444;
    }

    /* Developer Auth Modal */
    .dev-modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.75);
      backdrop-filter: blur(8px);
      z-index: 999;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 1rem;
    }
    .dev-modal-card {
      background: #111827;
      border: 1px solid var(--border);
      border-radius: 14px;
      width: 100%;
      max-width: 440px;
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.75);
      padding: 1.75rem;
      position: relative;
    }
    .dev-modal-head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      margin-bottom: 1.25rem;
    }
    .btn-modal-close {
      background: transparent;
      border: none;
      color: var(--text-dim);
      font-size: 1.5rem;
      line-height: 1;
      cursor: pointer;
      padding: 0.2rem;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }
    .btn-modal-close [data-lucide] { width: 1.1rem; height: 1.1rem; }
    .btn-modal-close:hover { color: #fff; }
    .dev-modal-tabs {
      display: flex;
      gap: 0.35rem;
      background: #090d16;
      border: 1px solid var(--border);
      padding: 0.25rem;
      border-radius: 8px;
      margin-bottom: 1.25rem;
    }
    .dev-tab-btn {
      flex: 1;
      background: transparent;
      border: none;
      color: var(--text-muted);
      padding: 0.45rem 0.5rem;
      font-size: 0.8rem;
      font-weight: 600;
      border-radius: 6px;
      cursor: pointer;
      transition: all 0.15s;
    }
    .dev-tab-btn.active {
      background: rgba(59, 130, 246, 0.2);
      color: #fff;
    }
    .dev-modal-form { display: none; }
    .dev-modal-form.active { display: block; }
    .modal-form-group { margin-bottom: 1rem; }
    .modal-form-group label {
      display: block;
      font-size: 0.78rem;
      font-weight: 600;
      color: #cbd5e1;
      margin-bottom: 0.4rem;
    }
    .modal-input {
      width: 100%;
      background: #090d16;
      border: 1px solid var(--border);
      color: #fff;
      border-radius: 8px;
      padding: 0.65rem 0.85rem;
      font-size: 0.88rem;
      font-family: inherit;
      transition: border-color 0.15s;
      box-sizing: border-box;
    }
    .modal-input:focus {
      outline: none;
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
    }
    .btn-modal-submit {
      width: 100%;
      background: linear-gradient(135deg, #3b82f6, #2563eb);
      border: none;
      color: #fff;
      padding: 0.7rem 1rem;
      border-radius: 8px;
      font-size: 0.88rem;
      font-weight: 700;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      transition: all 0.15s;
      margin-top: 1.25rem;
    }
    .btn-modal-submit:hover {
      opacity: 0.95;
      box-shadow: 0 4px 14px rgba(59, 130, 246, 0.4);
    }
    .modal-feedback {
      padding: 0.6rem 0.85rem;
      border-radius: 6px;
      font-size: 0.82rem;
      margin-top: 0.75rem;
    }
    .modal-footer-hint {
      text-align: center;
      font-size: 0.78rem;
      color: var(--text-dim);
      margin-top: 1rem;
    }
    .modal-footer-hint a {
      color: var(--primary);
      text-decoration: none;
      font-weight: 600;
    }
    .social-login-divider {
      display: flex;
      align-items: center;
      margin: 1.25rem 0 0.85rem;
      color: var(--text-dim);
      font-size: 0.75rem;
      font-weight: 500;
    }
    .social-login-divider::before,
    .social-login-divider::after {
      content: '';
      flex: 1;
      height: 1px;
      background: var(--border);
    }
    .social-login-divider span {
      padding: 0 0.75rem;
    }
    .social-login-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.65rem;
      margin-bottom: 0.5rem;
    }
    .btn-social-auth {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      background: #090d16;
      border: 1px solid var(--border);
      color: #f1f5f9;
      padding: 0.6rem 0.75rem;
      border-radius: 8px;
      font-size: 0.82rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.15s;
    }
    .btn-social-auth:hover {
      background: #111827;
      border-color: #3b82f6;
      color: #fff;
    }
    .modal-footer-hint a {
      color: var(--primary);
      text-decoration: none;
      font-weight: 600;
    }
    .modal-footer-hint a:hover { text-decoration: underline; }

  
    /* Lucide Icons */
    [data-lucide] {
      width: 1.15em;
      height: 1.15em;
      stroke-width: 2;
      vertical-align: -0.18em;
      display: inline-block;
    }
    .nav-btn [data-lucide],
    .btn-dev-login [data-lucide],
    .btn-modal-submit [data-lucide],
    .dev-dropdown-item [data-lucide],
    .nav-heading [data-lucide] {
      margin-right: 0.45rem;
      width: 1.05em;
      height: 1.05em;
      vertical-align: -0.18em;
    }
  