    /* ========================================================
       1. DESIGN SYSTEM: VARIÁVEIS, CORES E TOKENS DE PRODUTO
       ======================================================== */
    :root {
      /* Superfícies & Profundidade */
      --mc-bedrock: #050a08;
      --mc-deepslate: #0b1411;
      --mc-surface: #0f1c17;
      --mc-surface-hover: #142820;
      --mc-slot: #08110d;
      
      /* Cores de Destaque */
      --primary: #059669;
      --primary-bright: #10b981;
      --primary-light: #34d399;
      --primary-neon: #6ee7b7;
      --primary-glow: rgba(16, 185, 129, 0.35);

      --gold: #fbbf24;
      --gold-dark: #b45309;
      --diamond: #38bdf8;
      --redstone: #ef4444;
      
      /* Tipografia */
      --text-bright: #ffffff;
      --text-sub: #d1fae5;
      --text-muted: #8ca399;
      --text-dim: #5c746a;
      
      /* Bordas & Biselados */
      --border-subtle: #162f25;
      --border-card: #1f4032;
      --border-focus: #10b981;
      --bevel-light: rgba(255, 255, 255, 0.12);
      --bevel-dark: rgba(0, 0, 0, 0.65);
      
      /* Fontes */
      --font-pixel: 'Silkscreen', cursive;
      --font-mono: 'JetBrains Mono', monospace;
      --font-sans: 'Plus Jakarta Sans', sans-serif;
      
      --ease: cubic-bezier(0.16, 1, 0.3, 1);
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    body {
      background-color: var(--mc-bedrock);
      color: var(--text-sub);
      min-height: 100vh;
      font-family: var(--font-sans);
      overflow-x: hidden;
      position: relative;
      background-image: 
        radial-gradient(circle at 50% 0%, rgba(16, 185, 129, 0.1) 0%, transparent 60%),
        linear-gradient(to right, rgba(16, 185, 129, 0.035) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(16, 185, 129, 0.035) 1px, transparent 1px);
      background-size: 100% 100%, 48px 48px, 48px 48px;
    }

    #particles-canvas {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 0;
    }

    .ambient-glow {
      position: fixed;
      top: -10%;
      left: 15%;
      width: 700px;
      height: 700px;
      background: radial-gradient(circle, rgba(16, 185, 129, 0.14) 0%, transparent 70%);
      filter: blur(120px);
      pointer-events: none;
      z-index: 0;
    }

    /* BOTÕES TÁTEIS GAMER MINECRAFT */
    .btn-mc {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.55rem;
      text-decoration: none;
      font-weight: 800;
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      padding: 0.6rem 1.25rem;
      border-radius: 6px;
      cursor: pointer;
      user-select: none;
      transition: all 0.15s ease;
      border: 2px solid;
    }

    .btn-mc:active { transform: translateY(2px) !important; }

    .btn-mc-stone {
      background: linear-gradient(180deg, #1f3529 0%, #102119 100%);
      border-color: #2d4f3e;
      color: #fff;
      box-shadow: 
        inset 1px 1px 0 var(--bevel-light),
        inset -1px -1px 0 var(--bevel-dark),
        0 4px 0 #08110c;
    }

    .btn-mc-stone:hover {
      border-color: var(--primary-bright);
      transform: translateY(-2px);
      box-shadow: 0 4px 0 #08110c, 0 0 15px var(--primary-glow);
      color: #fff;
    }

    .btn-mc-primary {
      background: linear-gradient(180deg, var(--primary-bright) 0%, var(--primary) 100%);
      color: #fff;
      border-color: var(--primary-light);
      box-shadow: 
        inset 1px 1px 0 var(--bevel-light),
        inset -1px -1px 0 var(--bevel-dark),
        0 4px 0 #023627,
        0 0 15px var(--primary-glow);
    }

    .btn-mc-primary:hover {
      filter: brightness(1.1);
      transform: translateY(-2px);
      box-shadow: 0 4px 0 #023627, 0 0 22px var(--primary-bright);
    }

    /* ========================================================
       2. CABEÇALHO DA WIKI
       ======================================================== */
    header {
      position: sticky;
      top: 0;
      z-index: 50;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1.5rem;
      padding: 0.85rem max(1.5rem, calc((100% - 1280px) / 2));
      background: rgba(5, 12, 9, 0.94);
      backdrop-filter: blur(14px);
      border-bottom: 2px solid var(--border-subtle);
      box-shadow: 0 4px 25px rgba(0, 0, 0, 0.6);
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      text-decoration: none;
      color: #fff;
      font-weight: 900;
      font-size: 1.45rem;
      letter-spacing: -0.5px;
    }

    .brand-cube {
      width: 36px;
      height: 36px;
      background: linear-gradient(135deg, var(--primary-bright) 0%, var(--primary) 100%);
      border: 2px solid var(--primary-light);
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 6px;
      color: #fff;
      box-shadow: 0 0 15px var(--primary-glow);
      transform: rotate(-3deg);
      transition: transform 0.2s ease;
    }

    .brand:hover .brand-cube { transform: rotate(0deg) scale(1.08); }

    .brand-title-wrap {
      display: flex;
      flex-direction: column;
    }

    .brand-title-wrap span:first-child { line-height: 1; }
    
    .brand-tag {
      font-family: var(--font-pixel);
      font-size: 0.58rem;
      color: var(--primary-light);
      letter-spacing: 0.1em;
      margin-top: 3px;
    }

    .header-links {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    /* ========================================================
       3. HERO DA WIKI & BUSCA EM TEMPO REAL
       ======================================================== */
    main {
      position: relative;
      z-index: 1;
      width: min(1280px, calc(100% - 2.5rem));
      margin: 0 auto;
      padding: 3rem 0 6rem;
    }

    .wiki-hero {
      background: var(--mc-deepslate);
      border: 2px solid var(--border-card);
      border-radius: 14px;
      padding: 2.4rem 2.8rem;
      margin-bottom: 2.5rem;
      box-shadow: 
        inset 1px 1px 0 var(--bevel-light),
        inset -1px -1px 0 var(--bevel-dark),
        0 20px 45px rgba(0, 0, 0, 0.7);
      position: relative;
      overflow: hidden;
    }

    .wiki-hero::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 320px;
      height: 100%;
      background: radial-gradient(circle at 100% 50%, rgba(16, 185, 129, 0.12) 0%, transparent 70%);
      pointer-events: none;
    }

    .breadcrumbs {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.8rem;
      color: var(--text-muted);
      margin-bottom: 1rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .breadcrumbs a {
      color: var(--text-muted);
      text-decoration: none;
      transition: color 0.15s;
    }

    .breadcrumbs a:hover { color: var(--primary-light); }
    .breadcrumbs span { color: var(--primary-light); }

    .wiki-hero h1 {
      margin: 0 0 0.6rem;
      color: #fff;
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 900;
      line-height: 1.1;
      text-transform: uppercase;
      letter-spacing: -1px;
    }

    .wiki-hero h1 span {
      background: linear-gradient(180deg, #ffffff 0%, var(--primary-light) 70%, var(--primary) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      filter: drop-shadow(0 4px 15px var(--primary-glow));
    }

    .wiki-hero p {
      color: var(--text-muted);
      font-size: 1.05rem;
      line-height: 1.6;
      max-width: 760px;
      margin-bottom: 2rem;
    }

    /* BARRA DE PESQUISA INTERATIVA */
    .wiki-search-box {
      position: relative;
      max-width: 680px;
      margin-bottom: 1.6rem;
    }

    .wiki-search-box i.fa-magnifying-glass {
      position: absolute;
      left: 1.2rem;
      top: 50%;
      transform: translateY(-50%);
      color: var(--primary-light);
      font-size: 1.1rem;
    }

    .wiki-search-box input {
      width: 100%;
      background: var(--mc-slot);
      border: 2px solid var(--border-card);
      padding: 0.95rem 3rem 0.95rem 3.2rem;
      border-radius: 8px;
      color: #fff;
      font-family: var(--font-sans);
      font-size: 1rem;
      font-weight: 600;
      outline: none;
      box-shadow: inset 2px 2px 0 rgba(0,0,0,0.7);
      transition: border-color 0.2s, box-shadow 0.2s;
    }

    .wiki-search-box input:focus {
      border-color: var(--primary-bright);
      box-shadow: inset 2px 2px 0 rgba(0,0,0,0.7), 0 0 20px rgba(16, 185, 129, 0.3);
    }

    .wiki-search-box input::placeholder {
      color: #5c746a;
      font-weight: 500;
    }

    .wiki-search-clear {
      position: absolute;
      right: 1.2rem;
      top: 50%;
      transform: translateY(-50%);
      background: none;
      border: none;
      color: var(--text-muted);
      cursor: pointer;
      font-size: 1rem;
      display: none;
    }

    .wiki-search-clear:hover { color: #fff; }

    /* HUD DE CONEXÃO RÁPIDA (IP / PORTA / VERSÃO) */
    .connection-strip {
      display: flex;
      flex-wrap: wrap;
      gap: 0.85rem;
      align-items: center;
    }

    .conn-pill {
      background: var(--mc-slot);
      border: 1px solid var(--border-subtle);
      border-radius: 6px;
      padding: 0.5rem 0.9rem;
      display: flex;
      align-items: center;
      gap: 0.65rem;
      font-size: 0.82rem;
    }

    .conn-pill .label {
      font-family: var(--font-pixel);
      font-size: 0.6rem;
      color: var(--text-muted);
      text-transform: uppercase;
    }

    .conn-pill .value {
      font-family: var(--font-mono);
      font-weight: 800;
      color: #fff;
    }

    .conn-pill button {
      background: none;
      border: none;
      color: var(--primary-light);
      cursor: pointer;
      font-size: 0.85rem;
      padding: 0.2rem;
      transition: transform 0.15s;
    }

    .conn-pill button:hover {
      transform: scale(1.15);
      color: #fff;
    }

    /* ========================================================
       4. LAYOUT 2 COLUNAS: ÍNDICE (TOC) & CONTEÚDO
       ======================================================== */
    .wiki-layout {
      display: grid;
      grid-template-columns: 280px minmax(0, 1fr);
      gap: 2.5rem;
      align-items: start;
    }

    /* ÍNDICE LATERAL (TOC) */
    .toc-wrapper {
      position: sticky;
      top: 5.5rem;
      display: flex;
      flex-direction: column;
      gap: 1.2rem;
    }

    .toc {
      background: var(--mc-deepslate);
      border: 2px solid var(--border-card);
      border-radius: 12px;
      padding: 1.2rem;
      box-shadow: 
        inset 1px 1px 0 var(--bevel-light),
        inset -1px -1px 0 var(--bevel-dark),
        0 15px 35px rgba(0, 0, 0, 0.6);
    }

    .toc h2 {
      margin: 0 0 0.8rem;
      color: #fff;
      font-size: 0.82rem;
      font-family: var(--font-pixel);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      border-bottom: 2px solid var(--border-subtle);
      padding-bottom: 0.6rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .toc h2 i { color: var(--primary-light); }

    .toc-nav {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
    }

    .toc a {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.65rem 0.85rem;
      color: var(--text-muted);
      font-size: 0.86rem;
      font-weight: 700;
      text-decoration: none;
      border-radius: 6px;
      background: var(--mc-slot);
      border: 1px solid transparent;
      transition: all 0.15s ease;
    }

    .toc a .toc-item-title {
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }

    .toc a i {
      color: var(--primary-light);
      font-size: 0.85rem;
      width: 1rem;
      text-align: center;
    }

    .toc a .badge-count {
      font-family: var(--font-mono);
      font-size: 0.7rem;
      background: rgba(255,255,255,0.06);
      padding: 0.15rem 0.45rem;
      border-radius: 4px;
      color: var(--text-muted);
    }

    .toc a:hover, .toc a.active {
      background: #11281e;
      border-color: var(--primary-bright);
      color: #fff;
      transform: translateX(4px);
    }

    .toc a.active {
      box-shadow: 0 0 15px rgba(16, 185, 129, 0.25);
    }

    .toc a.active .badge-count {
      background: var(--primary);
      color: #fff;
    }

    .toc-widget {
      background: var(--mc-slot);
      border: 1px solid var(--border-subtle);
      border-radius: 8px;
      padding: 1rem;
      text-align: center;
    }

    .toc-widget h4 {
      font-size: 0.88rem;
      color: #fff;
      font-weight: 800;
      text-transform: uppercase;
      margin-bottom: 0.3rem;
    }

    .toc-widget p {
      font-size: 0.8rem;
      color: var(--text-muted);
      line-height: 1.4;
      margin-bottom: 0.8rem;
    }

    /* ========================================================
       5. SEÇÕES DE DOCUMENTAÇÃO
       ======================================================== */
    .wiki-section {
      scroll-margin-top: 6rem;
      margin-bottom: 4rem;
    }

    .section-header-block {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 1rem;
      margin-bottom: 1.8rem;
      border-bottom: 2px solid var(--border-subtle);
      padding-bottom: 1rem;
      flex-wrap: wrap;
    }

    .section-tag {
      font-family: var(--font-pixel);
      font-size: 0.65rem;
      color: var(--primary-light);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 0.35rem;
      display: block;
    }

    .wiki-section h2 {
      margin: 0;
      color: #fff;
      font-size: 1.95rem;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: -0.5px;
    }

    .section-lead {
      color: var(--text-muted);
      line-height: 1.6;
      font-size: 0.98rem;
      margin-top: 0.35rem;
    }

    /* ========================================================
       6. ETAPAS DE PROGRESSÃO (QUESTLINE ONBOARDING)
       ======================================================== */
    .steps-flow {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1.3rem;
    }

    .step-card {
      background: var(--mc-deepslate);
      border: 2px solid var(--border-card);
      border-radius: 12px;
      padding: 1.6rem;
      display: flex;
      flex-direction: column;
      position: relative;
      box-shadow: 
        inset 1px 1px 0 var(--bevel-light),
        inset -1px -1px 0 var(--bevel-dark),
        0 12px 30px rgba(0, 0, 0, 0.6);
      transition: all 0.25s var(--ease);
    }

    .step-card:hover {
      transform: translateY(-4px);
      border-color: var(--primary-bright);
      box-shadow: 
        inset 1px 1px 0 var(--bevel-light),
        0 18px 40px rgba(0, 0, 0, 0.8),
        0 0 22px var(--primary-glow);
    }

    .step-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 1.1rem;
    }

    .step-level {
      width: 36px;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 6px;
      background: linear-gradient(135deg, var(--primary-bright) 0%, var(--primary) 100%);
      color: #fff;
      font-family: var(--font-pixel);
      font-size: 0.88rem;
      font-weight: 700;
      border: 2px solid var(--primary-light);
      box-shadow: 0 0 12px var(--primary-glow);
    }

    .step-badge {
      font-family: var(--font-pixel);
      font-size: 0.62rem;
      background: var(--mc-slot);
      border: 1px solid var(--border-subtle);
      color: var(--text-muted);
      padding: 0.25rem 0.6rem;
      border-radius: 4px;
      text-transform: uppercase;
    }

    .step-card h3 {
      color: #fff;
      font-size: 1.2rem;
      font-weight: 800;
      text-transform: uppercase;
      margin-bottom: 0.45rem;
    }

    .step-card p {
      flex: 1;
      color: var(--text-muted);
      font-size: 0.92rem;
      line-height: 1.6;
      margin-bottom: 1.3rem;
    }

    /* BLOCO DE COMANDO COM COPIAR COM 1 CLIQUE */
    .cmd-terminal {
      background: var(--mc-slot);
      border: 2px solid #163023;
      border-radius: 8px;
      padding: 0.7rem 0.9rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      cursor: pointer;
      box-shadow: inset 2px 2px 0 rgba(0,0,0,0.6);
      transition: all 0.2s ease;
      position: relative;
    }

    .cmd-terminal:hover {
      border-color: var(--primary-bright);
      background: #11281e;
    }

    .cmd-code {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      font-family: var(--font-mono);
      font-size: 0.88rem;
      font-weight: 700;
      color: var(--primary-neon);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .cmd-code i {
      color: var(--text-dim);
      font-size: 0.8rem;
    }

    .cmd-copy-action {
      display: flex;
      align-items: center;
      gap: 0.4rem;
      color: var(--primary-light);
      font-size: 0.78rem;
      font-family: var(--font-sans);
      font-weight: 700;
      text-transform: uppercase;
      flex-shrink: 0;
      margin-left: 0.8rem;
      transition: transform 0.15s;
    }

    .cmd-terminal:hover .cmd-copy-action {
      transform: scale(1.05);
      color: #fff;
    }

    /* ========================================================
       7. NOVA SEÇÃO: COMANDOS ESSENCIAIS (CHEAT SHEET)
       ======================================================== */
    .commands-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 1rem;
    }

    .command-item {
      background: var(--mc-deepslate);
      border: 1px solid var(--border-card);
      border-radius: 8px;
      padding: 1rem 1.15rem;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 0.65rem;
      box-shadow: inset 1px 1px 0 var(--bevel-light);
      transition: all 0.2s ease;
    }

    .command-item:hover {
      border-color: var(--primary-bright);
      background: var(--mc-surface-hover);
      transform: translateY(-2px);
    }

    .command-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .command-name {
      font-family: var(--font-mono);
      font-size: 0.95rem;
      font-weight: 800;
      color: var(--primary-light);
    }

    .command-tag {
      font-family: var(--font-pixel);
      font-size: 0.58rem;
      background: var(--mc-slot);
      padding: 0.2rem 0.5rem;
      border-radius: 4px;
      color: var(--text-muted);
      border: 1px solid var(--border-subtle);
    }

    .command-desc {
      font-size: 0.85rem;
      color: var(--text-muted);
      line-height: 1.45;
    }

    /* ========================================================
       8. FAQ ACORDION: FORMATO DOCUMENTAÇÃO PROFISSIONAL
       ======================================================== */
    .faq-toolbar {
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }

    .btn-toggle-all {
      background: var(--mc-slot);
      border: 1px solid var(--border-card);
      color: var(--text-muted);
      font-family: var(--font-sans);
      font-size: 0.78rem;
      font-weight: 700;
      padding: 0.4rem 0.8rem;
      border-radius: 6px;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 0.4rem;
      transition: all 0.15s;
    }

    .btn-toggle-all:hover {
      border-color: var(--primary-bright);
      color: #fff;
    }

    .faq-list {
      display: flex;
      flex-direction: column;
      gap: 0.85rem;
    }

    details {
      background: var(--mc-deepslate);
      border: 2px solid var(--border-card);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 
        inset 1px 1px 0 var(--bevel-light),
        0 6px 16px rgba(0,0,0,0.5);
      transition: border-color 0.25s, box-shadow 0.25s;
    }

    details[open] {
      border-color: var(--primary-bright);
      box-shadow: 
        inset 1px 1px 0 var(--bevel-light),
        0 10px 25px rgba(0,0,0,0.7),
        0 0 18px rgba(16, 185, 129, 0.2);
    }

    summary {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1.2rem;
      padding: 1.15rem 1.4rem;
      cursor: pointer;
      color: #fff;
      font-size: 1.02rem;
      font-weight: 800;
      list-style: none;
      user-select: none;
      transition: background-color 0.15s;
    }

    summary::-webkit-details-marker { display: none; }

    summary:hover {
      background: rgba(16, 185, 129, 0.05);
    }

    .summary-left {
      display: flex;
      align-items: center;
      gap: 0.85rem;
    }

    .faq-icon-slot {
      width: 32px;
      height: 32px;
      background: var(--mc-slot);
      border: 1px solid var(--border-subtle);
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary-light);
      font-size: 0.9rem;
      flex-shrink: 0;
    }

    .faq-tag {
      font-family: var(--font-pixel);
      font-size: 0.55rem;
      background: rgba(16, 185, 129, 0.12);
      border: 1px solid var(--border-card);
      color: var(--primary-light);
      padding: 0.2rem 0.5rem;
      border-radius: 4px;
      margin-left: 0.4rem;
    }

    .faq-toggle-icon {
      width: 28px;
      height: 28px;
      background: var(--mc-slot);
      border: 1px solid var(--border-subtle);
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary-light);
      font-size: 0.8rem;
      transition: transform 0.3s var(--ease);
      flex-shrink: 0;
    }

    details[open] .faq-toggle-icon {
      transform: rotate(180deg);
      background: var(--primary);
      color: #fff;
      border-color: var(--primary-light);
    }

    .answer {
      padding: 1rem 1.4rem 1.4rem 3.8rem;
      color: var(--text-muted);
      line-height: 1.7;
      font-size: 0.96rem;
      border-top: 1px dashed rgba(16, 185, 129, 0.15);
    }

    .answer strong { color: #fff; }
    
    .answer code {
      background: #000;
      border: 1px solid var(--border-subtle);
      color: var(--primary-neon);
      font-family: var(--font-mono);
      font-size: 0.85rem;
      padding: 0.2rem 0.45rem;
      border-radius: 4px;
    }

    .answer a {
      color: var(--primary-light);
      font-weight: 800;
      text-decoration: underline;
      transition: color 0.15s;
    }

    .answer a:hover { color: #fff; }

    /* AVALIAÇÃO DE RESPOSTA ÚTIL (MICRO-UX) */
    .answer-feedback {
      display: flex;
      align-items: center;
      gap: 0.8rem;
      margin-top: 1.2rem;
      padding-top: 0.8rem;
      border-top: 1px solid rgba(255,255,255,0.05);
      font-size: 0.78rem;
      color: var(--text-dim);
    }

    .btn-feedback {
      background: var(--mc-slot);
      border: 1px solid var(--border-subtle);
      color: var(--text-muted);
      padding: 0.25rem 0.55rem;
      border-radius: 4px;
      cursor: pointer;
      font-size: 0.75rem;
      transition: all 0.15s;
    }

    .btn-feedback:hover {
      border-color: var(--primary-bright);
      color: #fff;
    }

    /* CARD DE SUPORTE */
    .wiki-support-card {
      margin-top: 4rem;
      background: linear-gradient(135deg, #10261c 0%, var(--mc-deepslate) 100%);
      border: 2px solid var(--border-card);
      border-radius: 14px;
      padding: 2.2rem 2.6rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 2rem;
      box-shadow: 
        inset 2px 2px 0 var(--bevel-light),
        0 15px 35px rgba(0,0,0,0.6);
      flex-wrap: wrap;
    }

    .wiki-support-text {
      display: flex;
      align-items: center;
      gap: 1.4rem;
    }

    .wiki-support-text i {
      font-size: 2.5rem;
      color: #5865F2;
      filter: drop-shadow(0 0 12px rgba(88, 101, 242, 0.45));
    }

    .wiki-support-text h3 {
      color: #fff;
      font-size: 1.35rem;
      font-weight: 900;
      text-transform: uppercase;
      margin-bottom: 0.25rem;
    }

    .wiki-support-text p {
      color: var(--text-muted);
      font-size: 0.95rem;
      line-height: 1.5;
    }

    /* ========================================================
       9. RODAPÉ
       ======================================================== */
    footer {
      padding: 3rem 1.5rem;
      border-top: 2px solid var(--border-subtle);
      color: var(--text-muted);
      text-align: center;
      font-size: 0.88rem;
      background: #030806;
      position: relative;
      z-index: 1;
    }

    footer p:last-child {
      font-size: 0.75rem;
      margin-top: 0.4rem;
      color: rgba(140, 163, 153, 0.5);
    }

    /* ========================================================
       10. RESPONSIVIDADE PRECISA
       ======================================================== */
    @media (max-width: 980px) {
      .wiki-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .toc-wrapper {
        position: static;
      }

      .toc {
        display: none; /* Em tablet/mobile o hero search já é o condutor principal */
      }

      .steps-flow {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 680px) {
      main { width: calc(100% - 1.5rem); padding-top: 2rem; }
      header { padding: 0.8rem 1rem; flex-wrap: wrap; }
      .brand { font-size: 1.25rem; }

      .header-links {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .header-links .btn-mc {
        width: 100%;
        padding-left: 0.6rem;
        padding-right: 0.6rem;
        font-size: 0.72rem;
      }
      
      .wiki-hero {
        padding: 1.8rem 1.4rem;
      }

      .wiki-hero h1 { font-size: 1.95rem; }
      .wiki-hero p { font-size: 0.95rem; }

      .connection-strip {
        flex-direction: column;
        align-items: stretch;
      }

      .conn-pill {
        justify-content: space-between;
        flex-wrap: wrap;
      }

      .conn-pill .label {
        font-size: 0.55rem;
      }

      .commands-grid {
        grid-template-columns: 1fr;
      }

      summary {
        align-items: flex-start;
        padding: 1rem;
      }

      .summary-left {
        min-width: 0;
      }

      .summary-left > span:not(.faq-tag) {
        line-height: 1.35;
      }

      .summary-left {
        gap: 0.6rem;
      }

      .faq-tag { display: none; }
      .answer { padding: 1rem; }

      .wiki-support-card {
        padding: 1.6rem 1.2rem;
        flex-direction: column;
        text-align: center;
      }

      .wiki-support-text {
        flex-direction: column;
      }

      .wiki-support-card .btn-mc {
        width: 100%;
      }
    }
