   body {
    margin: 0;
    background-color: #132239;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    scroll-behavior: smooth;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* ========== HERO ========== */
  .hero-section {
    position: relative;
    padding: 80px 20px 60px;
    overflow: hidden;
    text-align: center;
  }
  
  @media (min-width: 1024px) {
    .hero-section { padding: 120px 20px 80px; }
  }
  
  .hero-bg {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 20%, rgba(73, 139, 250, 0.15), transparent 50%);
    pointer-events: none;
  }
  
  .hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
  }
  
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.8);
  }
  
  .hero-badge-dot {
    width: 8px;
    height: 8px;
    background: #FBD83D;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(251, 216, 61, 0.5);
  }
  
  .hero-title {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
  }
  
  @media (min-width: 768px) {
    .hero-title { font-size: 52px; }
  }
  
  .hero-title span { color: #FBD83D; }
  
  .hero-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 40px;
  }
  
  /* Hero buttons */
  .hero-btns, .btn-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
  }
  
  @media (min-width: 640px) {
    .hero-btns, .btn-row { flex-direction: row; }
  }
  
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .btn-main {
    background: #FBD83D;
    color: #1D1E33;
    box-shadow: 0 10px 20px rgba(251, 216, 61, 0.1);
  }
  
  .btn-main:hover {
    background: #E8C435;
    transform: translateY(-2px);
  }
  
  .btn-outline, .btn-ghost {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
  }
  
  .btn-outline:hover, .btn-ghost:hover {
    background: #ffffff;
    color: #132239;
    border-color: #ffffff;
  }
  
  .btn svg { width: 20px; height: 20px; }
  
  /* ========== VIDEO SECTION (under hero) ========== */
  .video-section {
    padding: 0 20px 70px;
  }
  
  .device-frame {
    max-width: 1060px;
    margin: 0 auto;
    background: #0b1628;
    border-radius: 20px;
    padding: 14px;
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.08),
      0 8px 24px rgba(0, 0, 0, 0.4),
      0 40px 80px rgba(0, 0, 0, 0.5);
  }
  
  .device-frame-bar {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0 4px 12px;
  }
  
  .device-frame-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
  }
  
  .device-frame-screen {
    border-radius: 10px;
    overflow: hidden;
    line-height: 0;
  }
  
  .device-frame-screen video {
    display: block;
    width: 100%;
    border-radius: 10px;
  }
  
  /* ========== SECTIONS ========== */
  .section-padding { padding: 80px 0; }
  
  .section-header {
    text-align: center;
    margin-bottom: 50px;
  }
  
  .section-label {
    color: #FBD83D;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  
  .section-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
  }
  
  .section-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
  }
  
  /* ========== GRIDS ========== */
  .glass-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  @media (min-width: 768px) {
    .glass-grid-2 { grid-template-columns: repeat(2, 1fr); }
    .glass-grid-3 { grid-template-columns: repeat(3, 1fr); }
    .glass-grid-4 { grid-template-columns: repeat(4, 1fr); }
  }
  
  /* ========== GLASS CARDS ========== */
  .glass-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 24px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;
  }
  
  .glass-card:hover {
    border-color: #FBD83D;
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
  }
  
  .glass-card--highlight {
    border-color: rgba(251, 216, 61, 0.3);
    background: rgba(251, 216, 61, 0.03);
  }
  
  .card-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #FBD83D;
  }
  
  .card-icon svg { width: 24px; height: 24px; }
  
  
  .card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
  }
  
  .card-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    line-height: 1.5;
    flex-grow: 1;
  }
  
  /* ========== TRUST BAR ========== */
  .trust-bar {
    max-width: 1100px;
    margin: 0 auto 60px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    backdrop-filter: blur(10px);
    box-sizing: border-box;
    width: calc(100% - 40px);
  }
  
  .trust-bar .container { padding: 0; }
  
  .trust-bar .glass-grid {
    display: flex;
    justify-content: center;
    gap: 24px;
  }
  
  .trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
  }
  
  .trust-item svg  { width: 20px; height: 20px; color: #FBD83D; flex-shrink: 0; }
  .trust-item strong { color: #fff; }
  
  @media (min-width: 1024px) {
    .trust-bar .glass-grid { flex-direction: row; flex-wrap: wrap; gap: 24px 40px; justify-content: center; }
    .trust-item { justify-content: center; }
    .trust-item:not(:last-child)::after {
      content: '';
      position: absolute;
      right: -20px;
      top: 50%;
      transform: translateY(-50%);
      height: 24px;
      width: 1px;
      background: rgba(255, 255, 255, 0.15);
    }
  }
  
  @media (max-width: 1023px) {
    .trust-bar .glass-grid { flex-direction: column; align-items: stretch; }
    .trust-item { white-space: normal; justify-content: flex-start; padding: 0 10px; }
    .trust-item:not(:last-child)::after {
      content: '';
      position: absolute;
      bottom: -12px;
      left: 10px;
      right: 10px;
      height: 1px;
      background: rgba(255, 255, 255, 0.1);
    }
  }
  
  /* ========== STEPS ========== */
  .steps-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
  }
  
  .step-card:nth-child(1) { grid-column: 1 / 3; }
  .step-card:nth-child(2) { grid-column: 3 / 5; }
  .step-card:nth-child(3) { grid-column: 5 / 7; }
  .step-card:nth-child(4) { grid-column: 2 / 4; }
  .step-card:nth-child(5) { grid-column: 4 / 6; }
  
  @media (max-width: 768px) {
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .step-card:nth-child(n) { grid-column: auto; }
  }
  
  @media (max-width: 480px) {
    .steps-grid { grid-template-columns: 1fr; }
  }
  
  .step-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 24px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
  }
  
  .step-card:hover {
    border-color: #FBD83D;
    transform: translateY(-4px);
  }
  
  .step-number {
    width: 44px;
    height: 44px;
    background: #FBD83D;
    color: #132239;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    margin: 0 auto 16px;
  }
  
  .step-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
  }
  
  .step-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
  }
  
  /* ========== AUDIENCE / SCENARIOS ========== */
  .audience-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
  }
  
  .audience-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
  }
  
  .audience-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #FBD83D;
  }
  
  /* ========== CAPABILITIES TABLE ========== */
  .table-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow-x: auto;
    backdrop-filter: blur(10px);
  }
  
  .cap-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
  }
  
  .cap-table th, .cap-table td {
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .cap-table th {
    font-weight: 700;
    color: #FBD83D;
    background: rgba(255, 255, 255, 0.02);
  }
  
  .cap-table th:first-child,
  .cap-table td:first-child {
    border-right: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .cap-table tr:last-child td { border-bottom: none; }
  
  .cap-table code {
    background: rgba(0, 0, 0, 0.3);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
    color: #8ab4f8;
  }
  
  /* ========== SETUP ========== */
  .setup-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 24px;
    backdrop-filter: blur(10px);
    min-width: 0;
  }
  
  @media (min-width: 768px) {
    .setup-box { padding: 40px; }
  }
  
  .setup-tabs {
    display: flex;
    gap: 6px;
    padding: 6px;
    border-radius: 20px;
    background: #0a1b32;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 24px;
  }
  
  .setup-tab {
    flex: 1 1 0;
    min-width: 120px;
    white-space: nowrap;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 500;
    padding: 10px 14px;
    border-radius: 16px;
    transition: all 0.2s ease;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: inherit;
  }
  
  .setup-tab:hover { color: rgba(255, 255, 255, 0.9); }
  
  .setup-tab.active {
    background: #1e375f;
    color: #ffffff;
    font-weight: 600;
  }
  
  .setup-content {
    background: #0d1a2d;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px 24px;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    font-size: 13px;
    line-height: 1.8;
    overflow-x: auto;
    white-space: pre-wrap;
    position: relative;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.3);
  }
  
  @media (min-width: 768px) {
    .setup-content { padding: 24px 32px; font-size: 14px; }
  }
  
  .setup-content .comment { color: #6b7280; }
  .setup-content .file { color: #FBD83D; font-weight: 600; }
  .setup-content .path { color: #93c5fd; }
  
  .setup-content .section-sep {
    display: block;
    color: #6b7280;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .setup-content .tree-line { display: block; }
  .setup-content .tree-l1 { padding-left: 1.4em; }
  .setup-content .tree-l2 { padding-left: 2.8em; }
  .setup-content .tree-l3 { padding-left: 4.2em; }
  .setup-content .tree-l4 { padding-left: 5.6em; }
  .setup-content .tree-l5 { padding-left: 7em; }

  /* ========== REQUIREMENTS LIST ========== */
  .req-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
  }
  
  .req-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
  }
  
  .req-list li svg { width: 16px; height: 16px; color: #4ade80; flex-shrink: 0; margin-top: 3px; }
  .req-list a { color: #FBD83D; text-decoration: none; font-weight: 600; }
  .req-list a:hover { text-decoration: underline; }
  
  /* ========== STEP HEADER (re-use from old landing) ========== */
  .step-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
  }
  
  .step-circle {
    width: 40px;
    height: 40px;
    background: #FBD83D;
    color: #132239;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    flex-shrink: 0;
  }
  
  /* ========== UTILITY ========== */
  .hidden-mobile { display: none; }
  @media (min-width: 768px) { .hidden-mobile { display: block; } }

  /* ========== СБРОС КОНФЛИКТА: main-container из files-catalog.css ========== */
.container.main-container {
    display: block !important;
    flex-direction: unset !important;
    align-items: unset !important;
    background-color: transparent !important;
    gap: unset !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .container.main-container > .tpl-content {
    width: 100% !important;
    max-width: 100% !important;
    flex: unset !important;
  }
  
  /* ========== HERO ========== */
.hero-section {
  position: relative;
  padding: 80px 20px 60px;
  overflow: hidden;
  text-align: center;
  width: 100%;
}
  @media (min-width: 1024px) {
    .hero-section { padding: 100px 20px 70px; }
  }
  .hero-bg {
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 100%; height: 100%;
    background: radial-gradient(circle at 50% 20%, rgba(73, 139, 250, 0.15), transparent 50%);
    pointer-events: none;
  }
  .hero-content {
    max-width: 860px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
  }
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    margin-bottom: 24px;
    color: rgba(255,255,255,0.8);
  }
  .hero-badge-dot {
    width: 8px;
    height: 8px;
    background: #4CAF50;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
  }
  .hero-title {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #fff;
  }
  @media (min-width: 768px) {
    .hero-title { font-size: 54px; }
  }
  .hero-title span { color: #FBD83D; }
  .hero-text {
    color: rgba(255,255,255,0.7);
    font-size: 18px;
    max-width: 680px;
    margin: 0 auto 40px;
  }
  .hero-btns {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
  }
  @media (min-width: 640px) {
    .hero-btns { flex-direction: row; }
  }
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  .btn-main {
    background: #FBD83D;
    color: #1D1E33;
    box-shadow: 0 10px 20px rgba(251,216,61,0.15);
  }
  .btn-main:hover { background: #E8C435; transform: translateY(-2px); }
  .btn-outline {
    border: 1px solid rgba(255,255,255,0.2);
    color: #ffffff;
  }
  .btn-outline:hover { background: #ffffff; color: #132239; border-color: #ffffff; }
  .btn svg { width: 20px; height: 20px; }
  .hidden-mobile { display: none; }
  @media (min-width: 768px) { .hidden-mobile { display: inline; } }
  
  /* --- 1. КНОПКИ ПЕРЕКЛЮЧЕНИЯ ВИДА --- */
  .uc-view-toggle { display: flex; background: rgba(255, 255, 255, 0.05); border: 1px solid var(--fc-border); border-radius: 12px; padding: 3px; gap: 2px; }
  .uc-view-btn { background: transparent; border: none; color: var(--fc-text-muted); padding: 8px; cursor: pointer; border-radius: 8px; transition: all 0.2s ease; display: flex; align-items: center; justify-content: center; }
  .uc-view-btn:hover { color: var(--fc-text-light); }
  .uc-view-btn.active { background: var(--fc-card-bg-hover); color: var(--fc-gold); box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2); }
  
  /* --- 2. СЕТКА (3 КОЛОНКИ И АДАПТИВ) --- */
  .view-grid #allEntries { 
   display: grid; 
   grid-template-columns: repeat(3, 1fr); /* 3 колонки на десктопе */
   gap: 24px; 
  }
  
  /* Адаптив для сетки */
  @media (max-width: 1100px) { .view-grid #allEntries { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 680px) { .view-grid #allEntries { grid-template-columns: 1fr; } }
  
  #allEntries div[id^=entryID] { margin-bottom: 20px; }
  .view-grid #allEntries div[id^=entryID] { margin-bottom: 0; }
  .view-grid #allEntries > div { display: flex; height: 100%; }
  
  .uc-file-item {
   display: flex;
   flex-direction: column;
   height: 100%;
   width: 100%;
   box-sizing: border-box;
  }
  .uc-file-body { flex-grow: 1; }
  
  /* Вид: СЕТКА */
  .view-grid .uc-file-item { flex-direction: column; }
  .view-grid .uc-file-actions {
   margin-top: auto; 
   padding-top: 16px;
   margin-top: 16px;
   border-top: 1px solid rgba(255, 255, 255, 0.05);
   display: flex;
   width: 100%;
  }
  /* Кнопка на ВСЮ ШИРИНУ в сетке */
  .view-grid .btn-download-outline {
   width: 100%;
   justify-content: center;
  }
  
  /* Вид: СПИСОК */
  .view-list #allEntries { display: flex; flex-direction: column; }
  .view-list .uc-file-item {
   flex-direction: row;
   align-items: flex-start;
   gap: 20px;
  }
  
  /* Адаптив списка (на мобилках список тоже должен быть в колонку) */
  @media (max-width: 640px) {
   .view-list .uc-file-item { flex-direction: column; }
   .view-list .uc-file-actions { margin-left: 0; width: 100%; margin-top: 15px; }
   .view-list .btn-download-outline { width: 100%; justify-content: center; }
  }
  
  .view-list .uc-file-actions {
   margin-top: 0;
   padding-top: 0;
   border-top: none;
   margin-left: auto; 
   align-self: flex-start; 
  }
  .view-list .btn-download-outline { width: auto; }
  
  /* --- 3. ТАБЫ КАТЕГОРИЙ --- */
  .uc-category-pills { display: flex; gap: 10px; flex-wrap: wrap; }
  .uc-pill { padding: 8px 16px; background: rgba(255, 255, 255, 0.03); color: rgba(255,255,255,0.7); border-radius: 20px; text-decoration: none; font-size: 14px; font-weight: 500; transition: all 0.2s; border: 1px solid rgba(255, 255, 255, 0.1); }
  .uc-pill:hover { background: rgba(255, 255, 255, 0.08); color: #fff; }
  .uc-pill.active { background: rgba(251, 216, 61, 0.15); color: #FBD83D; border-color: rgba(251, 216, 61, 0.3); font-weight: 600; }
  
  /* --- 4. КНОПКА СКАЧАТЬ (Твои стили) --- */
  .btn-download-outline {
   display: inline-flex;
   align-items: center;
   gap: 0.4rem;
   background: var(--fc-gold-dim);
   color: var(--fc-gold);
   border: 1px solid var(--fc-gold-border);
   border-radius: var(--fc-radius-lg);
   padding: 0.5rem 1.1rem;
   font-size: 0.875rem;
   font-weight: 600;
   font-family: Inter, sans-serif;
   text-decoration: none;
   cursor: pointer;
   transition: background var(--fc-transition), box-shadow var(--fc-transition), transform var(--fc-transition);
   white-space: nowrap;
   box-sizing: border-box;
  }
  
  .btn-download-outline:hover {
   transform: translateY(-1px);
   filter: brightness(1.1);
  }

 .html { scrollbar-gutter: stable;
 }
.burger-line {
 display: block;
 width: 22px;
 height: 2px;
 background: #fff;
 border-radius: 2px;
 transition: transform 0.25s ease, opacity 0.25s ease;
}
#burger-btn.is-open .burger-line:nth-child(1) { transform: translateY(8px) rotate(45deg); }
#burger-btn.is-open .burger-line:nth-child(2) { opacity: 0; }
#burger-btn.is-open .burger-line:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

#burger-btn {
 display: flex;
}
@media (min-width: 1024px) {
 #burger-btn { display: none; }
}

.header-cta-btn {
 display: none;
}
@media (min-width: 640px) {
 .header-cta-btn { display: flex; }
}

#mobile-menu {
 display: none;
 position: fixed;
 top: 65px;
 left: 0;
 right: 0;
 z-index: 101;
 background: #132239;
 border-bottom: 1px solid rgba(255,255,255,0.08);
 padding: 16px 20px 24px;
}
#mobile-menu.is-open { display: block; }

#mobile-menu a {
 display: block;
 padding: 12px 0;
 color: rgba(255,255,255,0.8);
 font-size: 16px;
 font-weight: 500;
 text-decoration: none;
 border-bottom: 1px solid rgba(255,255,255,0.06);
 transition: color 0.2s;
}
#mobile-menu a:last-child { border-bottom: none; }
#mobile-menu a:hover { color: #fff; }
#mobile-menu a.mobile-cta {
 margin-top: 16px;
 display: inline-block;
 border: 1.5px solid #fff;
 border-bottom: 1.5px solid #fff;
 padding: 10px 24px;
 border-radius: 50px;
 font-weight: 600;
}
#mobile-menu a.mobile-cta:hover { background: #fff; color: #132239; }

.sf-nav-link {
 color: #FBD83D;
 font-size: 14px;
 font-weight: 600;
 transition: color 0.2s ease;
 text-decoration: none;
 cursor: pointer;
}
.sf-nav-link:hover {
  color: #FFF3B0;
}

.cmd-block {
 display: inline;
}
.setup-box {
 overflow: visible !important;
}
.cmd-copy {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 flex-shrink: 0;
 width: 26px;
 height: 26px;
 padding: 0;
 margin-left: 8px;
 background: none;
 border: 1px solid rgba(255,255,255,0.18);
 border-radius: 5px;
 cursor: pointer;
 color: rgba(255,255,255,0.45);
 transition: color 0.15s, border-color 0.15s;
 vertical-align: middle;
}
.cmd-copy:hover {
 color: rgba(255,255,255,0.9);
 border-color: rgba(255,255,255,0.45);
}
.cmd-copy svg {
 width: 14px;
 height: 14px;
 pointer-events: none;
}
.cmd-copy.copied {
 color: #4ade80;
 border-color: #4ade80;
}