/* ============================================================
   DANCO RUST — Frontend v3 (do zero)
   Design system único: tema claro premium, laranja como acento,
   contraste por faixas (branco / cinza / grafite / preto).
   Nenhuma dependência do app.css legado.
   ============================================================ */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, ul, ol, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: none; background: none; cursor: pointer; }
input { font: inherit; }

/* ---------- Tokens ---------- */
:root {
    /* Tema único claro: evita canvas preto no Chrome em modo escuro. */
    color-scheme: light;
    --bg: #ffffff;
    --surface: #f7f8fa;
    --surface-2: #eef0f4;
    --line: #e6e8ee;
    --line-strong: #d4d8e0;
    --ink: #0e1116;
    --muted: #5c6470;
    --faint: #8b93a0;
    --accent: #e8590c;
    --accent-deep: #c2410c;
    --accent-soft: #fdeee3;
    --dark: #0f1420;
    --dark-2: #131a2a;
    --dark-line: rgba(255, 255, 255, .08);
    --good: #12915e;
    --good-soft: #e4f5ee;
    --warn: #b7791f;
    --warn-soft: #faf0dc;

    --radius-s: 8px;
    --radius-m: 12px;
    --radius-l: 18px;
    --shadow-s: 0 1px 2px rgba(14, 17, 22, .05);
    --shadow-m: 0 6px 24px rgba(14, 17, 22, .07);
    --shadow-l: 0 20px 48px rgba(14, 17, 22, .12);

    --font: "Inter", -apple-system, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    --mono: ui-monospace, "SF Mono", "Cascadia Code", Consolas, monospace;

    --container: 1140px;
    --nav-h: 56px;
}

html { background: var(--bg); min-height: 100%; }
body {
    background: var(--bg);
    color: var(--ink);
    font-family: var(--font);
    font-size: 15.5px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    min-height: 100vh;
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ---------- Navbar ---------- */
.v3-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    height: var(--nav-h);
    background: rgba(255, 255, 255, .86);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.v3-nav.is-scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow-s); }
.v3-nav-inner {
    max-width: var(--container); margin: 0 auto; padding: 0 24px;
    height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.v3-logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 15px; letter-spacing: .02em; }
.v3-logo img { width: 30px; height: 30px; border-radius: 7px; object-fit: cover; }
.v3-logo span em { font-style: normal; color: var(--accent-deep); }
.v3-nav-links { display: flex; align-items: center; gap: 2px; }
.v3-nav-links a {
    font-size: 13.5px; font-weight: 550; color: var(--muted);
    padding: 6px 10px; border-radius: var(--radius-s);
    transition: color .12s ease, background .12s ease;
}
.v3-nav-tag {
    display: inline-block; margin-left: 6px; vertical-align: 2px;
    font-size: 9px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase;
    line-height: 1.3; padding: 2px 6px; border-radius: 999px;
}
.v3-nav-tag--novo { background: var(--accent); color: #fff; }
.v3-nav-tag--beta { background: #eef2ff; color: #4f46e5; }
.v3-nav-links a:hover { color: var(--ink); background: var(--surface); }
.v3-nav-links a.is-active { color: var(--ink); font-weight: 650; }
.v3-nav-right { display: flex; align-items: center; gap: 12px; }
.v3-nav-user { display: flex; align-items: center; gap: 6px; }
.v3-burger { display: none; flex-direction: column; gap: 4px; padding: 10px 8px; }
.v3-burger span { width: 18px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .18s ease, opacity .18s ease; }

/* ---------- Botões ---------- */
.v3-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    font-size: 14.5px; font-weight: 650; letter-spacing: -.005em;
    padding: 12px 22px; border-radius: var(--radius-s);
    border: 1px solid transparent;
    transition: transform .13s ease, box-shadow .13s ease, background .13s ease, border-color .13s ease;
    white-space: nowrap;
}
.v3-btn:active { transform: translateY(1px); }
.v3-btn-primary { background: var(--ink); color: #fff; }
.v3-btn-primary:hover { transform: translateY(-1px); box-shadow: var(--shadow-m); }
.v3-btn-accent { background: var(--accent); color: #fff; }
.v3-btn-accent:hover { background: var(--accent-deep); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(232, 89, 12, .28); }
.v3-btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.v3-btn-ghost:hover { background: var(--surface); }
.v3-btn-light { background: #fff; color: var(--ink); }
.v3-btn-light:hover { transform: translateY(-1px); box-shadow: var(--shadow-m); }
.v3-btn-sm { padding: 7px 13px; font-size: 12.5px; }
.v3-btn.is-disabled, .v3-btn[disabled] {
    background: var(--surface-2); color: var(--faint); cursor: not-allowed; pointer-events: none;
    box-shadow: none; transform: none;
}

/* ---------- Utilitários ---------- */
.v3-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--mono); font-size: 11.5px; font-weight: 600;
    letter-spacing: .12em; text-transform: uppercase; color: var(--accent-deep);
}
.v3-eyebrow::before { content: ""; width: 18px; height: 2px; background: var(--accent); }
.v3-dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--faint); flex-shrink: 0; }
.v3-dot.is-on { background: var(--good); }
@keyframes v3-pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(18,145,94,.4); } 50% { box-shadow: 0 0 0 6px rgba(18,145,94,0); } }
.v3-dot.is-on.is-live { animation: v3-pulse 2s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) { .v3-dot.is-on.is-live { animation: none; } html { scroll-behavior: auto; } }
.v3-badge {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 11.5px; font-weight: 650; padding: 4px 11px; border-radius: 999px;
}
.v3-badge-good { background: var(--good-soft); color: var(--good); }
.v3-badge-warn { background: var(--warn-soft); color: var(--warn); }
.v3-badge-muted { background: var(--surface-2); color: var(--faint); }
.v3-badge .v3-dot { width: 6px; height: 6px; background: currentColor; }
.mono { font-family: var(--mono); font-variant-numeric: tabular-nums; }

/* ---------- Hero (Início) ---------- */
.v3-hero {
    padding: calc(var(--nav-h) + 76px) 0 88px;
    background:
        radial-gradient(56% 44% at 82% 4%, rgba(232, 89, 12, .07), transparent 68%),
        radial-gradient(40% 36% at 12% 22%, rgba(232, 89, 12, .04), transparent 60%),
        linear-gradient(180deg, var(--surface) 0%, var(--bg) 34%);
}
.v3-hero-grid { display: grid; grid-template-columns: 1.06fr .94fr; gap: 64px; align-items: center; }
.v3-hero h1 {
    font-size: clamp(38px, 4.6vw, 56px);
    font-weight: 800; line-height: 1.06; letter-spacing: -.032em;
    margin: 20px 0 20px; text-wrap: balance;
}
.v3-hero h1 em { font-style: normal; color: var(--accent-deep); }
.v3-hero-sub { font-size: 17px; color: var(--muted); max-width: 46ch; margin-bottom: 32px; line-height: 1.7; }
.v3-hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 34px; }
.v3-hero-proof { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; font-size: 13px; color: var(--faint); }
.v3-hero-proof b { color: var(--ink); font-weight: 650; }
.v3-hero-proof .sep { width: 4px; height: 4px; border-radius: 50%; background: var(--line-strong); }

/* ---------- Hero cinematográfico (vídeo do jogo + clima) ---------- */
.v3-hero--media {
    background: var(--dark);
    color: #fff;
    min-height: 100vh;
    min-height: 100svh;
    display: grid;
    align-items: center;
    padding-top: calc(var(--nav-h) + 36px);
    padding-bottom: 84px;
}
.v3-hero-media { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.v3-hero-media video,
.v3-hero-media img {
    position: absolute; inset: 0;
    width: 100%; height: 100%; object-fit: cover;
    filter: saturate(.92);
}
.v3-hero-shade {
    position: absolute; inset: 0;
    background:
        radial-gradient(70% 90% at 24% 42%, rgba(10, 14, 23, .58), transparent 74%),
        linear-gradient(180deg, rgba(10, 14, 23, .78) 0%, rgba(10, 14, 23, .46) 48%, var(--dark) 100%);
}
.v3-hero--media .container { z-index: 2; }
.v3-hero--media h1 { color: #fff; text-shadow: 0 2px 24px rgba(0, 0, 0, .45); }
.v3-hero--media h1 em { color: var(--accent); }
.v3-hero--media .v3-eyebrow { color: #ffa26b; }
.v3-hero--media .v3-hero-sub { color: rgba(255, 255, 255, .78); text-shadow: 0 1px 12px rgba(0, 0, 0, .5); }
.v3-hero--media .v3-hero-proof { color: rgba(255, 255, 255, .72); }
.v3-hero--media .v3-hero-proof b { color: #fff; }
.v3-hero--media .v3-hero-proof .sep { background: rgba(255, 255, 255, .28); }
/* Wordmark DANCORUST no hero — limpo, sem exagero */
.v3-hero h1.v3-hero-brand {
    margin: 18px 0 22px;
    line-height: 1;
    text-shadow: none;
}
.v3-hero-brand * { text-shadow: none; }
.v3-hero-brand .wordmark {
    display: block;
    font-size: clamp(38px, 5.2vw, 64px);
    font-weight: 800;
    letter-spacing: -.035em;
    line-height: 1;
    color: #fff;
}
.v3-hero-brand .wordmark em {
    font-style: normal;
    background: linear-gradient(120deg, #ff8a3d, #e8590c 70%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 0 12px rgba(232, 89, 12, .35));
}
.v3-hero-brand .tagline {
    display: flex; align-items: center; gap: 14px;
    margin-top: 14px;
    font-size: clamp(12px, 1.4vw, 14.5px);
    font-weight: 650;
    letter-spacing: .24em; text-indent: .02em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .88);
}
.v3-hero-brand .tagline::after {
    content: ""; flex: 0 0 46px; height: 2px;
    background: linear-gradient(90deg, var(--accent), transparent);
}

.v3-hero-content { width: 100%; }
.v3-hero-proof .ok .v3-dot { margin-right: 8px; vertical-align: baseline; }

/* Hero em duas colunas: conteúdo centralizado + caixas à direita */
.v3-hero-split {
    display: grid;
    grid-template-columns: 1fr minmax(280px, 340px);
    gap: 64px;
    align-items: center;
}
.v3-hero-center {
    text-align: center;
    display: flex; flex-direction: column; align-items: center;
    max-width: 640px;
    justify-self: center;
}
.v3-hero-center .v3-hero-sub { margin-left: auto; margin-right: auto; margin-bottom: 24px; }
.v3-hero-center .v3-hero-ctas { margin-bottom: 26px; }
.v3-hero-center .v3-hero-ctas { justify-content: center; }
.v3-hero-center .v3-hero-proof { justify-content: center; }
.v3-hero-center .tagline { justify-content: center; }
.v3-hero-center .tagline::before {
    content: ""; flex: 0 0 46px; height: 2px;
    background: linear-gradient(270deg, var(--accent), transparent);
}
.v3-hero-center .v3-hero-stats { justify-content: center; }

/* Caixas de destaque no hero (estilo v1, flutuando) */
.v3-hero-pills { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 44px; }
.v3-hero-pill {
    display: flex; align-items: center; gap: 13px;
    background: rgba(17, 23, 38, .78);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 14px;
    padding: 13px 22px 13px 13px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 18px 44px rgba(0, 0, 0, .28), inset 0 1px 0 rgba(255, 255, 255, .04);
    animation: v3-float 6s ease-in-out infinite;
}
.v3-hero-pill:nth-child(2) { animation-delay: -2s; }
.v3-hero-pill:nth-child(3) { animation-delay: -4s; }
@keyframes v3-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Caixas empilhadas na lateral direita (onde ficava o cartão) */
.v3-hero-pills--side {
    flex-direction: column;
    align-items: stretch;
    margin-top: 0;
    gap: 18px;
}
.v3-hero-pill .ic {
    width: 40px; height: 40px; border-radius: 11px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
}
.v3-hero-pill .ic-amber { background: rgba(245, 158, 11, .18); color: #fbbf24; }
.v3-hero-pill .ic-blue { background: rgba(59, 130, 246, .18); color: #60a5fa; }
.v3-hero-pill .ic-green { background: rgba(34, 197, 94, .18); color: #4ade80; }
.v3-hero-pill b { display: block; font-size: 14.5px; font-weight: 700; color: #fff; letter-spacing: -.01em; }
.v3-hero-pill .sub { display: block; font-size: 12.5px; color: rgba(255, 255, 255, .6); margin-top: 1px; }

/* Estatísticas da rede dentro do hero — sempre em uma linha */
.v3-hero-stats {
    display: flex; flex-wrap: nowrap; gap: 0;
    margin-top: 34px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding-top: 24px;
}
.v3-hero-stat { padding: 0 28px; border-left: 1px solid rgba(255, 255, 255, .12); white-space: nowrap; }
.v3-hero-stat:first-child { border-left: none; padding-left: 0; }
.v3-hero-stat:last-child { padding-right: 0; }
.v3-hero-stat .n {
    font-family: var(--mono); font-size: 27px; font-weight: 700;
    letter-spacing: -.02em; font-variant-numeric: tabular-nums; color: #fff;
}
.v3-hero-stat .l { font-size: 12px; color: rgba(255, 255, 255, .58); margin-top: 2px; }

/* Chip de contagem regressiva do wipe */
.v3-wipe-chip {
    display: inline-flex; align-items: center; gap: 8px;
    margin: 0 0 20px;
    padding: 8px 16px; border-radius: 999px;
    background: rgba(232, 89, 12, .14);
    border: 1px solid rgba(232, 89, 12, .38);
    color: #ffb387; font-size: 13px; font-weight: 600;
    backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.v3-wipe-chip b { color: #fff; font-size: 13.5px; font-weight: 700; }

/* Botão copiar IP nas linhas de servidor */
.v3-copy-ip {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 11.5px; font-weight: 650; color: var(--muted);
    background: var(--surface); border: 1px solid var(--line-strong);
    border-radius: 999px; padding: 5px 12px;
    transition: color .13s ease, border-color .13s ease, background .13s ease;
}
.v3-copy-ip:hover { color: var(--accent-deep); border-color: var(--accent); background: var(--accent-soft); }

/* Ticker de killfeed da rede */
.v3-killticker {
    display: flex; align-items: center;
    background: var(--dark); color: #fff;
    padding: 11px 0; overflow: hidden;
    border-bottom: 1px solid var(--dark-line);
}
.v3-killticker-tag {
    flex-shrink: 0; display: flex; align-items: center; gap: 8px;
    font-family: var(--mono); font-size: 10.5px; font-weight: 700;
    letter-spacing: .14em; text-transform: uppercase;
    color: rgba(255, 255, 255, .6);
    padding: 0 20px 0 24px; border-right: 1px solid var(--dark-line);
}
.v3-killticker-viewport {
    flex: 1; overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}
.v3-killticker-track {
    display: inline-flex; white-space: nowrap; width: max-content;
    padding-left: 24px;
    animation: v3-ticker 48s linear infinite;
    will-change: transform;
}
.v3-killticker .k { display: inline-flex; align-items: center; gap: 7px; margin-right: 40px; font-size: 13px; color: rgba(255, 255, 255, .5); }
.v3-killticker .k b { color: #fff; font-weight: 650; }
.v3-killticker .k svg { color: var(--accent); flex-shrink: 0; }
.v3-killticker .k .m { font-size: 12px; color: rgba(255, 255, 255, .42); }
@keyframes v3-ticker { to { transform: translateX(-50%); } }

/* Passos "como começar" */
.v3-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 980px; margin: 0 auto; }
.v3-step {
    background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-l);
    padding: 26px 26px 24px; box-shadow: var(--shadow-s);
}
.v3-step .num { display: block; font-family: var(--mono); font-size: 13px; font-weight: 700; letter-spacing: .12em; color: var(--accent); }
.v3-step h3 { font-size: 16.5px; font-weight: 750; letter-spacing: -.01em; margin: 10px 0 6px; }
.v3-step p { font-size: 13.5px; color: var(--muted); line-height: 1.6; margin-bottom: 10px; }
.v3-step p b { color: var(--ink); }

/* CTA final com múltiplas ações */
.v3-cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.v3-btn-ghost--dark { color: #fff; border-color: rgba(255, 255, 255, .35); }
.v3-btn-ghost--dark:hover { background: rgba(255, 255, 255, .1); color: #fff; }

/* Indicador de scroll no rodapé do hero (estilo v1) */
.v3-scroll-hint {
    position: absolute; left: 50%; bottom: 26px; z-index: 4;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 7px;
    font-family: var(--mono); font-size: 10.5px; font-weight: 600;
    letter-spacing: .32em; text-indent: .32em; text-transform: uppercase;
    color: rgba(255, 255, 255, .55);
    transition: color .15s ease;
}
.v3-scroll-hint:hover { color: #fff; }
.v3-scroll-hint svg { animation: v3-scroll-bounce 1.9s ease-in-out infinite; }
@keyframes v3-scroll-bounce {
    0%, 100% { transform: translateY(0); opacity: .55; }
    50% { transform: translateY(6px); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
    .v3-scroll-hint svg { animation: none; }
    .v3-hero-pill { animation: none; }
    .v3-killticker-track { animation: none; }
}
.v3-hero--media .v3-btn-ghost { color: #fff; border-color: rgba(255, 255, 255, .32); }
.v3-hero--media .v3-btn-ghost:hover { background: rgba(255, 255, 255, .1); }
.v3-hero--media::before { display: none; }

/* Canvas do clima (neve/vento) por cima do hero.
   width/height 100% obrigatórios: canvas é replaced element e
   inset:0 sozinho não estica a largura. */
.v3-weather { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 3; pointer-events: none; }

/* Cartão de status ao vivo */
.v3-live-card {
    color: var(--ink); /* não herdar o branco do hero escuro */
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--radius-l);
    box-shadow: var(--shadow-l);
    overflow: hidden;
    max-width: 400px;
    justify-self: end;
    width: 100%;
}
.v3-live-card-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 22px;
    border-bottom: 1px solid var(--line);
    background: var(--surface);
}
.v3-live-card-head .name { font-size: 13.5px; font-weight: 700; display: flex; align-items: center; gap: 9px; }
.v3-live-card-head .tag { font-family: var(--mono); font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--faint); }
.v3-live-card-body { padding: 24px 22px; }
.v3-live-metric-label { font-size: 11px; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; color: var(--faint); margin-bottom: 6px; }
.v3-live-players { display: flex; align-items: baseline; gap: 8px; margin-bottom: 18px; }
.v3-live-players .n { font-family: var(--mono); font-size: 42px; font-weight: 700; letter-spacing: -.03em; line-height: 1; font-variant-numeric: tabular-nums; }
.v3-live-players .of { font-family: var(--mono); font-size: 15px; color: var(--faint); }
.v3-live-bar { height: 6px; border-radius: 999px; background: var(--surface-2); overflow: hidden; margin-bottom: 24px; }
.v3-live-bar span { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--accent), var(--accent-deep)); }
.v3-live-split { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; padding-top: 20px; border-top: 1px solid var(--line); }
.v3-live-split .v { font-size: 15px; font-weight: 700; letter-spacing: -.01em; }
.v3-live-split .v.mono { font-size: 16px; }
.v3-live-card-foot {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 22px; border-top: 1px solid var(--line); background: var(--surface);
    font-size: 12.5px; color: var(--faint);
}
.v3-live-card-foot a { font-weight: 650; color: var(--accent-deep); }
.v3-live-card-foot a:hover { color: var(--ink); }

/* ---------- Faixa escura de números ---------- */
.v3-statband { background: var(--dark); color: #fff; padding: 46px 0; }
.v3-statband-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.v3-statband-item { padding: 6px 40px; border-left: 1px solid var(--dark-line); }
.v3-statband-item:first-child { border-left: none; padding-left: 0; }
.v3-statband-item .n { font-family: var(--mono); font-size: 34px; font-weight: 700; letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
.v3-statband-item .l { font-size: 13px; color: rgba(255, 255, 255, .55); margin-top: 2px; }

/* ---------- Seções ---------- */
.v3-section { padding: 96px 0; }
.v3-section--surface { background: var(--surface); }
.v3-section-head { max-width: 620px; margin-bottom: 52px; }
.v3-section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.v3-section-head.center .v3-eyebrow::before { display: none; }
.v3-section-head h2 {
    font-size: clamp(28px, 3.2vw, 38px); font-weight: 800;
    letter-spacing: -.025em; line-height: 1.12; margin: 14px 0 12px; text-wrap: balance;
}
.v3-section-head p { font-size: 16px; color: var(--muted); }
.v3-section-head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 40px; }
.v3-section-head-row .v3-section-head { margin-bottom: 0; }
.v3-link-more { font-size: 14px; font-weight: 650; color: var(--accent-deep); white-space: nowrap; }
.v3-link-more:hover { color: var(--ink); }

/* ---------- Lista de servidores (linhas legadas + cards com logo/banner) ---------- */
.v3-server-list { display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--radius-l); background: var(--bg); overflow: hidden; box-shadow: var(--shadow-s); }
.v3-server-row {
    display: grid; grid-template-columns: minmax(210px, 1.2fr) 1fr minmax(180px, .9fr) auto;
    gap: 28px; align-items: center;
    padding: 24px 30px;
    border-top: 1px solid var(--line);
    transition: background .13s ease;
}
.v3-server-row:first-child { border-top: none; }
.v3-server-row:hover { background: var(--surface); }
.v3-server-id { display: flex; align-items: center; gap: 14px; }
.v3-server-num { font-family: var(--mono); font-size: 13px; color: var(--faint); }
.v3-server-id h3 { font-size: 16.5px; font-weight: 700; letter-spacing: -.01em; }
.v3-server-id .sub { font-size: 12.5px; color: var(--faint); margin-top: 1px; }
.v3-server-meta { display: flex; flex-direction: column; gap: 3px; font-size: 13px; color: var(--muted); }
.v3-server-meta .mono { font-size: 12.5px; }
.v3-server-pop { display: flex; flex-direction: column; gap: 7px; }
.v3-server-pop .nums { display: flex; justify-content: space-between; font-size: 12.5px; color: var(--muted); }
.v3-server-pop .nums b { color: var(--ink); font-weight: 650; }
.v3-server-pop .track { height: 5px; border-radius: 999px; background: var(--surface-2); overflow: hidden; }
.v3-server-pop .fill { display: block; height: 100%; border-radius: 999px; background: var(--accent); }
.v3-server-actions { display: flex; gap: 9px; }

.v3-server-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
}
.v3-server-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 280px;
    border-radius: var(--radius-l);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-s);
    background: var(--dark);
    color: #fff;
    transition: transform .18s ease, box-shadow .18s ease;
}
a.v3-server-card:hover,
.v3-server-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-m);
}
.v3-server-card.is-offline { filter: saturate(.72); }
.v3-server-card__media { position: absolute; inset: 0; }
.v3-server-card__banner {
    width: 100%; height: 100%; object-fit: cover;
    transform: scale(1.02);
    transition: transform .45s ease;
}
.v3-server-card:hover .v3-server-card__banner { transform: scale(1.08); }
.v3-server-card__shade {
    position: absolute; inset: 0;
    background:
        linear-gradient(180deg, rgba(10, 12, 18, .18) 0%, rgba(10, 12, 18, .55) 42%, rgba(10, 12, 18, .92) 100%),
        linear-gradient(90deg, rgba(10, 12, 18, .55) 0%, transparent 55%);
}
.v3-server-card__body {
    position: relative; z-index: 1;
    display: flex; flex-direction: column; gap: 14px;
    margin-top: auto; padding: 20px 20px 18px;
}
.v3-server-card__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.v3-server-card__brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.v3-server-card__logo {
    width: 52px; height: 52px; border-radius: 14px; overflow: hidden; flex-shrink: 0;
    background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.18);
    box-shadow: 0 8px 20px rgba(0,0,0,.28);
}
.v3-server-card__logo img { width: 100%; height: 100%; object-fit: cover; }
.v3-server-card__brand h3 {
    font-size: 17px; font-weight: 750; letter-spacing: -.02em;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.v3-server-card__brand .sub { font-size: 12.5px; color: rgba(255,255,255,.72); margin-top: 2px; }
.v3-server-card__meta {
    display: flex; flex-wrap: wrap; gap: 8px 14px;
    font-size: 12.5px; color: rgba(255,255,255,.78);
}
.v3-server-card .v3-server-pop .nums { color: rgba(255,255,255,.78); }
.v3-server-card .v3-server-pop .nums b { color: #fff; }
.v3-server-card .v3-server-pop .track { background: rgba(255,255,255,.18); }
.v3-server-card .v3-server-pop .fill { background: var(--accent); }
.v3-server-card__actions { display: flex; flex-wrap: wrap; gap: 8px; }
.v3-server-card .v3-btn-ghost,
.v3-server-card .v3-copy-ip {
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.16);
    color: #fff;
}
.v3-server-card .v3-btn-ghost:hover,
.v3-server-card .v3-copy-ip:hover { background: rgba(255,255,255,.18); }
.v3-server-card .v3-badge { backdrop-filter: blur(6px); }

.v3-page-head--server { position: relative; overflow: hidden; }
.v3-page-head--server .v3-page-head__banner {
    position: absolute; inset: 0;
    background:
        linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,255,255,.96)),
        var(--srv-banner, none) center/cover no-repeat;
    pointer-events: none;
}
.v3-page-head--server > .container { position: relative; z-index: 1; }
.v3-server-head-logo {
    width: 48px; height: 48px; border-radius: 14px; overflow: hidden; flex-shrink: 0;
    border: 1px solid var(--line); background: var(--surface); box-shadow: var(--shadow-s);
}
.v3-server-head-logo img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Features (duas colunas, sem cards) ---------- */
.v3-features { display: grid; grid-template-columns: .9fr 1.1fr; gap: 72px; align-items: start; }
.v3-features-copy h2 { font-size: clamp(26px, 3vw, 34px); font-weight: 800; letter-spacing: -.025em; line-height: 1.14; margin: 14px 0 14px; }
.v3-features-copy p { color: var(--muted); max-width: 42ch; }
.v3-feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 34px 40px; }
.v3-feature { position: relative; padding-left: 22px; }
.v3-feature::before {
    content: ""; position: absolute; left: 0; top: 7px;
    width: 9px; height: 9px; border-radius: 3px; background: var(--accent);
}
.v3-feature h3 { font-size: 15.5px; font-weight: 700; letter-spacing: -.01em; margin-bottom: 5px; }
.v3-feature p { font-size: 13.5px; color: var(--muted); line-height: 1.6; }

/* ---------- Reel: gravado dentro do servidor ---------- */
.v3-reel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.v3-reel-card {
    position: relative; overflow: hidden;
    border-radius: var(--radius-l);
    background: var(--dark);
    aspect-ratio: 16 / 10;
    box-shadow: var(--shadow-m);
    cursor: pointer;
}
.v3-reel-card video {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; opacity: .88;
    transition: opacity .25s ease, transform .5s ease;
}
.v3-reel-card:hover video { opacity: 1; transform: scale(1.03); }
.v3-reel-card::after {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background: linear-gradient(180deg, transparent 40%, rgba(10, 14, 23, .82) 100%);
}
.v3-reel-cap {
    position: absolute; left: 18px; right: 18px; bottom: 15px; z-index: 1;
    display: flex; align-items: flex-end; justify-content: space-between; gap: 12px;
    color: #fff;
}
.v3-reel-cap b { font-size: 15px; font-weight: 700; letter-spacing: -.01em; text-shadow: 0 1px 8px rgba(0, 0, 0, .6); }
.v3-reel-cap span { display: block; font-size: 12px; color: rgba(255, 255, 255, .68); }
.v3-reel-play {
    flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%;
    background: rgba(255, 255, 255, .14); border: 1px solid rgba(255, 255, 255, .25);
    display: flex; align-items: center; justify-content: center;
    backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
    transition: background .15s ease;
}
.v3-reel-card:hover .v3-reel-play { background: var(--accent); border-color: var(--accent); }
.v3-reel-play svg { margin-left: 2px; }
.v3-reel-card.is-playing .v3-reel-play { display: none; }

/* ---------- Ranking (pódio tipográfico) ---------- */
.v3-rank-list { border-top: 1px solid var(--line); }
.v3-rank-row {
    display: flex; align-items: center; gap: 28px;
    padding: 22px 8px; border-bottom: 1px solid var(--line);
    transition: background .13s ease;
}
.v3-rank-row:hover { background: var(--surface); }
.v3-rank-pos { font-family: var(--mono); font-size: 30px; font-weight: 700; color: var(--line-strong); width: 58px; letter-spacing: -.03em; flex-shrink: 0; }
.v3-rank-row:first-child .v3-rank-pos { color: var(--accent); }
.v3-rank-av { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.v3-rank-av.fallback { display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 14px; color: #fff; }
.v3-rank-who { flex: 1; min-width: 0; }
.v3-rank-who .nm { font-size: 16px; font-weight: 700; letter-spacing: -.01em; }
.v3-rank-who .sb { font-size: 12.5px; color: var(--faint); }
.v3-rank-val { text-align: right; }
.v3-rank-val .n { font-family: var(--mono); font-size: 17px; font-weight: 700; font-variant-numeric: tabular-nums; }
.v3-rank-val .l { font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--faint); }
.v3-rank-empty {
    border: 1px dashed var(--line-strong); border-radius: var(--radius-m);
    padding: 44px 24px; text-align: center; color: var(--muted); font-size: 14.5px;
}

/* ---------- CTA final ---------- */
.v3-cta { background: var(--dark); color: #fff; padding: 88px 0; }
.v3-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.v3-cta h2 { font-size: clamp(26px, 3.4vw, 40px); font-weight: 800; letter-spacing: -.025em; line-height: 1.12; max-width: 20ch; text-wrap: balance; }
.v3-cta p { color: rgba(255, 255, 255, .55); margin-top: 12px; max-width: 44ch; }

/* ---------- Footer ---------- */
.v3-footer { background: #0a0e17; color: rgba(255, 255, 255, .5); padding: 64px 0 0; font-size: 13.5px; }
.v3-footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 52px; }
.v3-footer-brand .v3-logo { color: #fff; margin-bottom: 14px; }
.v3-footer-brand p { max-width: 30ch; line-height: 1.7; }
.v3-footer h4 { color: #fff; font-size: 13px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 16px; }
.v3-footer ul { display: flex; flex-direction: column; gap: 10px; }
.v3-footer a:hover { color: var(--accent); }
.v3-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 22px 0; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
    font-size: 12.5px; color: rgba(255, 255, 255, .35);
}

/* ---------- Página: Servidores ---------- */
.v3-page-head { padding: calc(var(--nav-h) + 64px) 0 48px; background: linear-gradient(180deg, var(--surface), var(--bg)); }
.v3-page-head--dark {
    background:
        radial-gradient(52% 70% at 80% 10%, rgba(232, 89, 12, .12), transparent 65%),
        var(--dark);
    color: #fff;
}
.v3-page-head--dark h1 { color: #fff; }
.v3-page-head--dark .sub { color: rgba(255, 255, 255, .65); }
.v3-page-head--dark .v3-eyebrow { color: #ffa26b; }
.v3-page-head--dark .v3-btn-ghost { color: #fff; border-color: rgba(255, 255, 255, .32); }
.v3-page-head--dark .v3-btn-ghost:hover { background: rgba(255, 255, 255, .1); }
.v3-page-head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.v3-page-head h1 { font-size: clamp(30px, 3.8vw, 44px); font-weight: 800; letter-spacing: -.028em; line-height: 1.08; margin: 16px 0 10px; }
.v3-page-head .sub { font-size: 16px; color: var(--muted); max-width: 52ch; }
.v3-chips { display: flex; gap: 10px; flex-wrap: wrap; }
.v3-chip {
    display: inline-flex; align-items: center; gap: 9px;
    background: var(--bg); border: 1px solid var(--line); border-radius: 999px;
    padding: 9px 16px; font-size: 13px; color: var(--muted); box-shadow: var(--shadow-s);
}
.v3-chip b { color: var(--ink); font-weight: 700; font-family: var(--mono); font-variant-numeric: tabular-nums; }
.v3-search {
    display: flex; align-items: center; gap: 10px;
    background: var(--bg); border: 1px solid var(--line-strong); border-radius: var(--radius-s);
    padding: 10px 15px; min-width: 260px;
    transition: border-color .13s ease, box-shadow .13s ease;
}
.v3-search:focus-within { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.v3-search svg { flex-shrink: 0; color: var(--faint); }
.v3-search input { border: none; outline: none; background: transparent; flex: 1; font-size: 14px; color: var(--ink); }
.v3-search input::placeholder { color: var(--faint); }

.v3-trust-strip {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px;
    border-top: 1px solid var(--line); margin-top: 64px; padding-top: 44px;
}
.v3-trust { display: flex; gap: 14px; align-items: flex-start; }
.v3-trust .ic {
    width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
    background: var(--accent-soft); color: var(--accent-deep);
    display: flex; align-items: center; justify-content: center;
}
.v3-trust b { display: block; font-size: 14.5px; letter-spacing: -.01em; }
.v3-trust span { font-size: 13px; color: var(--muted); }

/* ---------- Responsivo ---------- */
@media (max-width: 1000px) {
    .v3-hero-grid { grid-template-columns: 1fr; gap: 44px; }
    .v3-hero-split { grid-template-columns: 1fr; gap: 44px; }
    .v3-hero-pills--side { flex-direction: row; flex-wrap: wrap; justify-content: center; }
    .v3-live-card { justify-self: stretch; max-width: none; }
    .v3-features { grid-template-columns: 1fr; gap: 44px; }
    .v3-reel-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 780px) {
    .v3-nav-links, .v3-nav-right .v3-btn { display: none; }
    .v3-burger { display: flex; }
    .v3-nav.nav-open .v3-nav-links {
        display: flex; flex-direction: column; align-items: stretch;
        position: absolute; top: var(--nav-h); left: 0; right: 0;
        background: var(--bg); border-bottom: 1px solid var(--line);
        padding: 12px 20px 18px; box-shadow: var(--shadow-m); gap: 2px;
    }
    .v3-nav.nav-open .v3-burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
    .v3-nav.nav-open .v3-burger span:nth-child(2) { opacity: 0; }
    .v3-nav.nav-open .v3-burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
    .v3-hero { padding: calc(var(--nav-h) + 44px) 0 60px; }
    .v3-statband-grid { grid-template-columns: 1fr; gap: 22px; }
    .v3-statband-item { border-left: none; padding: 0; }
    .v3-hero-stats { gap: 18px; flex-direction: column; }
    .v3-hero-stat { padding: 0; border-left: none; }
    .v3-section { padding: 64px 0; }
    .v3-server-row { grid-template-columns: 1fr; gap: 16px; padding: 20px 20px; }
    .v3-server-actions { justify-content: flex-start; }
    .v3-server-cards { grid-template-columns: 1fr; }
    .v3-server-card { min-height: 250px; }
    .v3-feature-list { grid-template-columns: 1fr; }
    .v3-reel-grid { grid-template-columns: 1fr; }
    .v3-steps { grid-template-columns: 1fr; }
    .v3-killticker-tag { padding: 0 14px 0 18px; }
    .v3-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .v3-trust-strip { grid-template-columns: 1fr; gap: 24px; }
    .v3-rank-pos { width: 40px; font-size: 22px; }
    .v3-rank-row { gap: 16px; }
    .v3-search { min-width: 0; width: 100%; }
}

/* ============================================================
   Camada de movimento — moderna, sutil e acessível
   ============================================================ */

/* Transição suave entre páginas (View Transitions API, MPA) */
@view-transition { navigation: auto; }
::view-transition-old(root), ::view-transition-new(root) { animation-duration: .16s; }

/* Foco visível consistente (teclado) */
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 4px; }

/* Ambiente do hero: brilho laranja com deriva lenta */
.v3-hero { position: relative; overflow: hidden; }
.v3-hero::before {
    content: ""; position: absolute; inset: -22%; z-index: 0; pointer-events: none;
    background: radial-gradient(34% 30% at 72% 24%, rgba(232, 89, 12, .09), transparent 62%);
    animation: v3-drift 16s ease-in-out infinite alternate;
}
.v3-hero .container { position: relative; z-index: 1; }
@keyframes v3-drift {
    from { transform: translate3d(0, 0, 0) scale(1); }
    to   { transform: translate3d(-5%, 4%, 0) scale(1.06); }
}

/* Revelação no scroll (IntersectionObserver adiciona .rv-in) */
html.js .rv {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .65s cubic-bezier(.2, .65, .25, 1), transform .65s cubic-bezier(.2, .65, .25, 1);
    will-change: opacity, transform;
}
html.js .rv.rv-in { opacity: 1; transform: none; }
html.js .rv-d1 { transition-delay: .08s; }
html.js .rv-d2 { transition-delay: .16s; }
html.js .rv-d3 { transition-delay: .24s; }

/* Valor ao vivo piscando de leve quando atualiza */
@keyframes v3-tick { 0% { color: var(--accent-deep); } 100% { color: inherit; } }
.v3-live-flash { animation: v3-tick 1s ease-out; }

@media (prefers-reduced-motion: reduce) {
    .v3-hero::before { animation: none; }
    html.js .rv { opacity: 1; transform: none; transition: none; }
    ::view-transition-old(root), ::view-transition-new(root) { animation: none; }
    .v3-live-flash { animation: none; }
}

/* ============================================================
   Loja
   ============================================================ */
.v3-store-head-actions { display: flex; align-items: center; gap: 12px; }
.v3-cart-btn { position: relative; }
.v3-cart-count {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 19px; height: 19px; padding: 0 5px;
    border-radius: 999px; background: var(--accent); color: #fff;
    font-size: 11px; font-weight: 700; margin-left: 4px;
}
.v3-cart-count.is-empty { display: none; }

.v3-store-cat { margin-bottom: 48px; }
.v3-store-cat:last-child { margin-bottom: 0; }
.v3-store-cat-head { display: flex; align-items: baseline; gap: 12px; margin-bottom: 18px; }
.v3-store-cat-head h2 { font-size: 17px; font-weight: 750; letter-spacing: -.01em; }
.v3-store-cat-head .count { font-family: var(--mono); font-size: 12px; color: var(--faint); }

/* Cards compactos: não crescem além de ~270px mesmo com poucos itens */
.v3-product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; max-width: 100%; }
.v3-product-grid > * { max-width: 300px; }
.v3-product {
    display: flex; flex-direction: column;
    background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-m);
    overflow: hidden; box-shadow: var(--shadow-s); cursor: pointer;
    transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
    text-align: left; padding: 0;
}
.v3-product:hover { transform: translateY(-3px); box-shadow: var(--shadow-m); border-color: var(--line-strong); }
.v3-product-media {
    height: 88px; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(150deg, var(--surface), var(--surface-2));
    position: relative; overflow: hidden;
}
.v3-product-media img { width: 46px; height: 46px; object-fit: contain; filter: drop-shadow(0 6px 12px rgba(14,17,22,.15)); }
.v3-product-media--cover {
    height: 140px; padding: 0; background: var(--surface-2);
}
.v3-product-media--cover img {
    width: 100%; height: 100%; object-fit: cover; object-position: center;
    filter: none; display: block;
}
.v3-product-media .ph {
    width: 42px; height: 42px; border-radius: 11px; background: var(--accent-soft); color: var(--accent-deep);
    display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 15px;
}
.v3-product-flag {
    position: absolute; top: 10px; left: 10px;
    font-size: 10px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
    background: var(--ink); color: #fff; border-radius: 999px; padding: 2px 9px;
}
.v3-product-flag.sale { background: var(--accent); }
.v3-product-flag.owned { background: var(--good); }
.v3-product-body { padding: 12px 15px 0; flex: 1; }
.v3-product-cat { font-family: var(--mono); font-size: 10px; letter-spacing: .09em; text-transform: uppercase; color: var(--faint); margin-bottom: 4px; }
.v3-product-body h3 { font-size: 14.5px; font-weight: 750; letter-spacing: -.01em; margin-bottom: 4px; }
.v3-product-body .desc {
    font-size: 12px; color: var(--muted); line-height: 1.5;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.v3-product-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 9px; }
.v3-product-tags span {
    font-size: 10.5px; color: var(--muted); background: var(--surface);
    border: 1px solid var(--line); border-radius: 999px; padding: 2px 8px;
}
.v3-product-foot {
    display: flex; align-items: center; justify-content: space-between; gap: 10px;
    padding: 11px 15px 13px; margin-top: 11px; border-top: 1px solid var(--line);
}
.v3-price { display: flex; align-items: baseline; gap: 8px; }
.v3-price .now { font-family: var(--mono); font-size: 14.5px; font-weight: 700; font-variant-numeric: tabular-nums; letter-spacing: -.01em; }
.v3-price .was { font-family: var(--mono); font-size: 12px; color: var(--faint); text-decoration: line-through; }
.v3-price .off { font-size: 11px; font-weight: 700; color: var(--accent-deep); background: var(--accent-soft); border-radius: 999px; padding: 2px 7px; }

/* ---------- Conduta do jogador (denúncias site + F7) ---------- */
.v3-conduct { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }
.v3-conduct-chip {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: 12px; font-weight: 600; color: var(--muted);
    background: var(--surface); border: 1px solid var(--line);
    border-radius: 999px; padding: 5px 13px;
}
.v3-conduct-chip b { color: var(--ink); font-weight: 700; font-variant-numeric: tabular-nums; }
.v3-conduct-chip svg { color: var(--faint); flex-shrink: 0; }
.v3-conduct-chip.has-reports { background: #fdeaea; border-color: #f3c1c1; color: #a03030; }
.v3-conduct-chip.has-reports b, .v3-conduct-chip.has-reports svg { color: #c22a2a; }

/* ---------- Modal ---------- */
.v3-modal-overlay {
    position: fixed; inset: 0; z-index: 200;
    background: rgba(14, 17, 22, .5);
    backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px);
    display: flex; align-items: center; justify-content: center; padding: 24px;
    opacity: 0; pointer-events: none; transition: opacity .18s ease;
}
.v3-modal-overlay.is-open { opacity: 1; pointer-events: auto; }
.v3-modal {
    width: 100%; max-width: 560px; max-height: 86vh; overflow-y: auto;
    background: var(--bg); border-radius: var(--radius-l); box-shadow: var(--shadow-l);
    transform: translateY(14px) scale(.985); transition: transform .18s ease;
}
.v3-modal-overlay.is-open .v3-modal { transform: none; }
.v3-modal-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; padding: 24px 26px 0; }
.v3-modal-head h3 { font-size: 21px; font-weight: 800; letter-spacing: -.02em; }
.v3-modal-head .cat { font-family: var(--mono); font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--accent-deep); margin-bottom: 6px; }
.v3-modal-close {
    width: 34px; height: 34px; border-radius: 10px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: var(--surface); color: var(--muted); font-size: 17px; line-height: 1;
}
.v3-modal-close:hover { background: var(--surface-2); color: var(--ink); }
.v3-modal-body { padding: 14px 26px 22px; }
.v3-modal-body .desc { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 18px; }
.v3-modal-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.v3-modal-meta span {
    font-size: 12px; color: var(--muted); background: var(--surface);
    border: 1px solid var(--line); border-radius: 999px; padding: 4px 11px;
}
.v3-modal-section-title { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--faint); margin-bottom: 10px; }
.v3-modal-features { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px; margin-bottom: 22px; }
.v3-modal-features li { position: relative; padding-left: 18px; font-size: 13.5px; color: var(--ink); }
.v3-modal-features li::before { content: ""; position: absolute; left: 0; top: 8px; width: 7px; height: 7px; border-radius: 2px; background: var(--accent); }
.v3-modal-items { display: grid; grid-template-columns: repeat(auto-fill, minmax(64px, 1fr)); gap: 8px; margin-bottom: 6px; }
.v3-item-slot {
    position: relative; aspect-ratio: 1; border-radius: 10px;
    background: var(--surface); border: 1px solid var(--line);
    display: flex; align-items: center; justify-content: center; padding: 8px;
}
.v3-item-slot img { max-width: 100%; max-height: 100%; object-fit: contain; }
.v3-item-slot .amt {
    position: absolute; bottom: 3px; right: 5px;
    font-family: var(--mono); font-size: 10px; font-weight: 700; color: var(--ink);
    background: rgba(255,255,255,.85); border-radius: 5px; padding: 0 4px;
}
.v3-modal-foot {
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    padding: 18px 26px; border-top: 1px solid var(--line); background: var(--surface);
    border-radius: 0 0 var(--radius-l) var(--radius-l);
}
.v3-modal--report { max-width: 640px; }
.v3-report-form__actions { display: flex; justify-content: flex-end; gap: 10px; margin-top: 4px; }

/* ---------- Pagamento (Mercado Pago) ---------- */
.v3-checkout-trust {
    display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 22px;
}
.v3-checkout-trust span {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: 12.5px; font-weight: 600; color: rgba(255, 255, 255, .78);
}
.v3-checkout-trust svg { color: #ffa26b; flex-shrink: 0; }
.v3-checkout-main {
    border: 1px solid var(--line); border-radius: var(--radius-l);
    background: var(--bg); box-shadow: var(--shadow-s); padding: 28px;
}
.v3-checkout-main-head { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px; }
.v3-checkout-main-head .ic {
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    width: 40px; height: 40px; border-radius: var(--radius-m);
    background: var(--accent-soft); color: var(--accent-deep);
}
.v3-checkout-main-head h3 { font-size: 17px; font-weight: 750; letter-spacing: -.01em; margin-bottom: 3px; }
.v3-checkout-main-head p { font-size: 13px; color: var(--muted); line-height: 1.5; }
.v3-checkout-summary-note { font-size: 12px; color: var(--faint); line-height: 1.6; margin-top: 16px; }
.v3-checkout-summary-note a { color: var(--accent-deep); font-weight: 650; }
.v3-modal--payment { max-width: 520px; }
.v3-pay-total {
    display: flex; align-items: center; justify-content: space-between;
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-m);
    padding: 12px 16px; margin-bottom: 18px; font-size: 13.5px; color: var(--muted);
}
.v3-pay-total strong { color: var(--ink); font-size: 17px; font-weight: 800; }
.v3-pay-tabs { display: flex; background: var(--surface-2); border-radius: var(--radius-m); padding: 4px; margin-bottom: 24px; gap: 2px; }
.v3-pay-tab {
    flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    font-size: 13.5px; font-weight: 700; color: var(--muted); padding: 11px 16px;
    border-radius: 8px; background: transparent; transition: background .13s ease, color .13s ease;
}
.v3-pay-tab svg { flex-shrink: 0; }
.v3-pay-tab.is-active { background: var(--bg); color: var(--ink); box-shadow: var(--shadow-s); }
.v3-pay-panel[hidden] { display: none; }
.v3-pay-form { display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px; }
.v3-pay-form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.v3-pay-form label { display: flex; flex-direction: column; gap: 5px; font-size: 12px; font-weight: 650; color: var(--muted); }
.v3-pay-form input {
    font: inherit; font-size: 13.5px; color: var(--ink);
    border: 1px solid var(--line-strong); border-radius: var(--radius-s);
    padding: 9px 12px; background: var(--bg);
}
.v3-pay-form input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.v3-pay-form input.is-invalid { border-color: #dc2626; }
.v3-pay-form input.is-invalid:focus { box-shadow: 0 0 0 3px rgba(220, 38, 38, .14); }
.v3-field-hint { display: block; min-height: 15px; margin-top: 4px; font-size: 11.5px; font-weight: 650; }
.v3-field-hint.is-valid { color: #16a34a; }
.v3-field-hint.is-invalid { color: #dc2626; }
.v3-pix-result[hidden] { display: none; }
.v3-pix-result { display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; margin-top: 18px; }
.v3-pix-ticket {
    padding: 18px; border: 1.5px dashed var(--line-strong); border-radius: var(--radius-m);
    background: var(--surface);
}
.v3-pix-result img { width: 190px; height: 190px; border-radius: var(--radius-s); border: 1px solid var(--line); background: #fff; padding: 6px; display: block; }
.v3-pix-copy { width: 100%; display: flex; gap: 8px; }
.v3-pix-copy input {
    flex: 1; min-width: 0; font: inherit; font-family: var(--mono); font-size: 12px; color: var(--muted);
    border: 1px solid var(--line-strong); border-radius: var(--radius-s); padding: 9px 12px; background: var(--surface);
}
.v3-pix-hint { font-size: 12.5px; color: var(--faint); line-height: 1.6; max-width: 380px; }
.v3-pix-status {
    display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 700;
    color: var(--accent-deep); background: var(--accent-soft); border-radius: 999px; padding: 7px 16px;
}
.v3-pix-status::before {
    content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
    animation: v3PixPulse 1.1s ease-in-out infinite;
}
.v3-pix-status.is-approved { color: #16794a; background: #e3f6ec; }
.v3-pix-status.is-approved::before { animation: none; background: #16a34a; }
.v3-pix-status.is-failed { color: #a03030; background: #fdeaea; }
.v3-pix-status.is-failed::before { animation: none; background: #dc2626; }
@keyframes v3PixPulse { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }
.v3-pay-feedback {
    margin-top: 14px; font-size: 13px; font-weight: 650; color: #a03030;
    background: #fdeaea; border-radius: var(--radius-s); padding: 10px 14px;
}
.v3-pay-divider {
    display: flex; align-items: center; gap: 14px;
    margin-top: 24px; color: var(--faint); font-size: 11.5px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .08em;
}
.v3-pay-divider::before, .v3-pay-divider::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.v3-mp-button {
    width: 100%; margin-top: 18px;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    padding: 13px 20px; border-radius: var(--radius-s); border: none;
    background: #00b1ea; color: #fff; font-size: 14.5px; font-weight: 600;
    transition: transform .13s ease, box-shadow .13s ease, background .13s ease;
}
.v3-mp-button strong { font-weight: 800; }
.v3-mp-button:hover { background: #0099cc; transform: translateY(-1px); box-shadow: 0 8px 22px rgba(0, 177, 234, .3); }
.v3-mp-button.is-loading { pointer-events: none; opacity: .7; transform: none; box-shadow: none; }
.v3-refund-warning {
    display: flex; gap: 14px; align-items: flex-start;
    margin-top: 22px; padding: 18px 20px; border-radius: var(--radius-l);
    background: var(--warn-soft); border: 1px solid rgba(183, 121, 31, .25);
}
.v3-refund-warning .ic { color: var(--warn); flex-shrink: 0; margin-top: 1px; }
.v3-refund-warning strong { display: block; font-size: 13.5px; color: #7c5310; margin-bottom: 4px; }
.v3-refund-warning p { font-size: 12.5px; color: #8a6519; line-height: 1.6; }
.v3-refund-warning p strong { display: inline; margin: 0; color: #7c5310; }
.v3-card-brick-wrap { position: relative; min-height: 280px; }
#v3CardPaymentBrick { min-height: 280px; }
.v3-card-brick-loading {
    position: absolute; inset: 0; z-index: 1;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    font-size: 13px; font-weight: 600; color: var(--muted);
    background: var(--bg); border-radius: var(--radius-m);
    transition: opacity .15s ease;
}
.v3-card-brick-loading[hidden] { display: none; }
.v3-spinner {
    width: 16px; height: 16px; border-radius: 50%;
    border: 2px solid var(--line-strong); border-top-color: var(--accent);
    animation: v3Spin .7s linear infinite;
}
@keyframes v3Spin { to { transform: rotate(360deg); } }

/* ---------- Toast ---------- */
.v3-toast-stack { position: fixed; bottom: 24px; right: 24px; z-index: 300; display: flex; flex-direction: column; gap: 10px; }
.v3-toast {
    display: flex; align-items: center; gap: 12px;
    background: var(--ink); color: #fff; font-size: 13.5px; font-weight: 550;
    border-radius: var(--radius-m); padding: 13px 18px; box-shadow: var(--shadow-l);
    max-width: 360px;
    animation: v3-toast-in .22s cubic-bezier(.2,.7,.3,1);
}
.v3-toast.is-error { background: #7f1d1d; }
.v3-toast .ic { flex-shrink: 0; width: 8px; height: 8px; border-radius: 50%; background: var(--good); }
.v3-toast.is-error .ic { background: #fca5a5; }
@keyframes v3-toast-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* ---------- Carrinho (página) ---------- */
.v3-cart-grid { display: grid; grid-template-columns: 1fr 340px; gap: 32px; align-items: start; }
.v3-cart-items { border: 1px solid var(--line); border-radius: var(--radius-l); background: var(--bg); overflow: hidden; box-shadow: var(--shadow-s); }
.v3-cart-row { display: grid; grid-template-columns: 1fr auto auto auto; gap: 22px; align-items: center; padding: 20px 24px; border-top: 1px solid var(--line); }
.v3-cart-row:first-child { border-top: none; }
.v3-cart-row .t { font-size: 15px; font-weight: 700; letter-spacing: -.01em; }
.v3-cart-row .s { font-size: 12.5px; color: var(--faint); margin-top: 1px; }
.v3-qty { display: inline-flex; align-items: center; border: 1px solid var(--line-strong); border-radius: var(--radius-s); overflow: hidden; }
.v3-qty button { width: 32px; height: 32px; font-size: 15px; color: var(--muted); background: var(--surface); }
.v3-qty button:hover { color: var(--ink); background: var(--surface-2); }
.v3-qty .q { min-width: 36px; text-align: center; font-family: var(--mono); font-size: 13.5px; font-weight: 650; }
.v3-cart-row .line { font-family: var(--mono); font-size: 15px; font-weight: 700; font-variant-numeric: tabular-nums; min-width: 90px; text-align: right; }
.v3-cart-remove { color: var(--faint); font-size: 16px; padding: 6px 8px; border-radius: 8px; }
.v3-cart-remove:hover { color: #b91c1c; background: #fef2f2; }
.v3-cart-summary {
    position: sticky; top: calc(var(--nav-h) + 20px);
    border: 1px solid var(--line); border-radius: var(--radius-l);
    background: var(--bg); box-shadow: var(--shadow-s); padding: 24px;
}
.v3-cart-summary h3 { font-size: 16px; font-weight: 750; margin-bottom: 18px; }
.v3-cart-summary .row { display: flex; justify-content: space-between; font-size: 14px; color: var(--muted); padding: 7px 0; }
.v3-cart-summary .row.total { border-top: 1px solid var(--line); margin-top: 10px; padding-top: 14px; color: var(--ink); font-weight: 700; font-size: 16px; }
.v3-cart-summary .row.total .val { font-family: var(--mono); font-variant-numeric: tabular-nums; }
.v3-cart-summary .v3-btn { width: 100%; margin-top: 16px; }
.v3-cart-clear { width: 100%; text-align: center; font-size: 12.5px; color: var(--faint); margin-top: 12px; padding: 6px; }
.v3-cart-clear:hover { color: #b91c1c; }
.v3-cart-empty { text-align: center; padding: 72px 24px; }
.v3-cart-empty h2 { font-size: 22px; font-weight: 750; margin-bottom: 8px; }
.v3-cart-empty p { color: var(--muted); margin-bottom: 22px; }

/* ---------- Confirmação de pagamento ---------- */
.v3-success-card {
    text-align: center; background: var(--bg); border: 1px solid var(--line);
    border-radius: var(--radius-l); box-shadow: var(--shadow-m); padding: 40px 34px;
}
.v3-success-icon {
    width: 68px; height: 68px; margin: 0 auto 22px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    animation: v3SuccessPop .35s cubic-bezier(.34, 1.56, .64, 1);
}
.v3-success-icon.is-approved { background: #e3f6ec; color: #16a34a; }
.v3-success-icon.is-rejected { background: #fdeaea; color: #dc2626; }
.v3-success-icon.is-pending { background: var(--accent-soft); color: var(--accent-deep); }
@keyframes v3SuccessPop { from { transform: scale(.6); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.v3-success-card h1 { font-size: 26px; font-weight: 800; letter-spacing: -.02em; margin-bottom: 10px; }
.v3-success-card .sub { font-size: 14.5px; color: var(--muted); line-height: 1.6; max-width: 42ch; margin: 0 auto 26px; }
.v3-success-items {
    text-align: left; background: var(--surface); border: 1px solid var(--line);
    border-radius: var(--radius-m); padding: 16px 18px; margin-bottom: 24px;
}
.v3-success-items .row { display: flex; justify-content: space-between; gap: 14px; font-size: 13.5px; color: var(--muted); padding: 6px 0; }
.v3-success-items .row.total { border-top: 1px solid var(--line); margin-top: 6px; padding-top: 12px; color: var(--ink); font-weight: 700; font-size: 15px; }
.v3-success-server { color: var(--faint); font-weight: 400; }

@media (max-width: 1000px) {
    .v3-product-grid { grid-template-columns: repeat(2, 1fr); }
    .v3-cart-grid { grid-template-columns: 1fr; }
    .v3-cart-summary { position: static; }
}
@media (max-width: 640px) {
    .v3-product-grid { grid-template-columns: 1fr; }
    .v3-cart-row { grid-template-columns: 1fr auto; grid-template-areas: "info remove" "qty line"; row-gap: 12px; }
    .v3-cart-row > :nth-child(1) { grid-area: info; }
    .v3-cart-row > :nth-child(2) { grid-area: qty; }
    .v3-cart-row > :nth-child(3) { grid-area: line; }
    .v3-cart-row > :nth-child(4) { grid-area: remove; justify-self: end; }
    .v3-modal-features { grid-template-columns: 1fr; }
}

/* ============================================================
   Ranking
   ============================================================ */
.v3-toolbar { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.v3-toolbar .v3-search { flex: 1; min-width: 220px; }
.v3-select {
    appearance: none; -webkit-appearance: none;
    background: var(--bg) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%235c6470' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 13px center;
    border: 1px solid var(--line-strong); border-radius: var(--radius-s);
    padding: 10px 36px 10px 14px; font: inherit; font-size: 13.5px; color: var(--ink);
    cursor: pointer; transition: border-color .13s ease, box-shadow .13s ease;
}
.v3-select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.v3-seg { display: inline-flex; background: var(--surface-2); border-radius: var(--radius-s); padding: 3px; }
.v3-seg a, .v3-seg button {
    font-size: 13px; font-weight: 600; color: var(--muted);
    padding: 7px 15px; border-radius: 7px; transition: background .12s ease, color .12s ease;
}
.v3-seg a.is-active, .v3-seg button.is-active { background: var(--bg); color: var(--ink); box-shadow: var(--shadow-s); }

/* Pódio */
.v3-podium { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: end; margin-bottom: 40px; }
.v3-podium-card {
    background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-l);
    box-shadow: var(--shadow-s); padding: 26px 22px 22px; text-align: center; position: relative;
    display: block; transition: transform .15s ease, box-shadow .15s ease;
}
.v3-podium-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-m); }
.v3-podium-card.is-champion {
    border-color: rgba(232, 89, 12, .35);
    box-shadow: var(--shadow-m), 0 0 0 1px rgba(232, 89, 12, .12);
    padding-top: 34px; padding-bottom: 30px;
}
.v3-podium-rank {
    position: absolute; top: 14px; left: 16px;
    font-family: var(--mono); font-size: 15px; font-weight: 700; color: var(--faint);
}
.v3-podium-card.is-champion .v3-podium-rank { color: var(--accent); }
.v3-podium-av { width: 68px; height: 68px; border-radius: 50%; object-fit: cover; margin: 0 auto 12px; display: block; }
.v3-podium-card.is-champion .v3-podium-av { width: 84px; height: 84px; box-shadow: 0 0 0 3px var(--accent-soft), 0 0 0 5px rgba(232,89,12,.25); }
.v3-podium-name { font-size: 15.5px; font-weight: 750; letter-spacing: -.01em; margin-bottom: 3px; }
.v3-podium-style { font-size: 12px; color: var(--faint); margin-bottom: 14px; }
.v3-podium-stats { display: flex; justify-content: center; gap: 22px; }
.v3-podium-stats .st .n { font-family: var(--mono); font-size: 16px; font-weight: 700; font-variant-numeric: tabular-nums; }
.v3-podium-stats .st .l { font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: var(--faint); }

/* Tabela de dados */
.v3-table-wrap { border: 1px solid var(--line); border-radius: var(--radius-l); background: var(--bg); box-shadow: var(--shadow-s); overflow-x: auto; }
.v3-table { width: 100%; border-collapse: collapse; font-size: 13.5px; min-width: 760px; }
.v3-table th {
    text-align: left; font-size: 10.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
    color: var(--faint); padding: 14px 18px; border-bottom: 1px solid var(--line); background: var(--surface);
    white-space: nowrap;
}
.v3-table th.num, .v3-table td.num { text-align: right; font-variant-numeric: tabular-nums; }
.v3-table td { padding: 13px 18px; border-bottom: 1px solid var(--line); vertical-align: middle; }
.v3-table tbody tr:last-child td { border-bottom: none; }
.v3-table tbody tr { transition: background .12s ease; }
.v3-table tbody tr:hover { background: var(--surface); }
.v3-table .pos { font-family: var(--mono); font-size: 12.5px; color: var(--faint); width: 48px; }
.v3-table .who { display: flex; align-items: center; gap: 12px; }
.v3-table .who img { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; }
.v3-table .who .nm { font-weight: 650; color: var(--ink); letter-spacing: -.005em; }
.v3-table .who .st { font-size: 11.5px; color: var(--faint); }
.v3-table td.num { font-family: var(--mono); }
.v3-table td.num.hl { font-weight: 700; }

/* Paginação */
.v3-pagination { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 28px; }
.v3-pagination a, .v3-pagination span {
    min-width: 34px; height: 34px; display: inline-flex; align-items: center; justify-content: center;
    font-family: var(--mono); font-size: 13px; border-radius: var(--radius-s); color: var(--muted); padding: 0 8px;
}
.v3-pagination a:hover { background: var(--surface-2); color: var(--ink); }
.v3-pagination .is-current { background: var(--ink); color: #fff; font-weight: 700; }
.v3-pagination .gap { color: var(--faint); }

@media (max-width: 780px) {
    .v3-podium { grid-template-columns: 1fr; }
    .v3-podium-card.is-champion { order: -1; }
}

/* Categorias (Ranking Geral) — grade de ícones, sem scrollbar */
.v3-cat-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(104px, 1fr));
    gap: 10px; margin-bottom: 28px;
}
.v3-cat {
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    padding: 14px 8px 12px;
    background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-m);
    font-size: 12px; font-weight: 650; color: var(--muted); text-align: center;
    transition: transform .13s ease, box-shadow .13s ease, border-color .13s ease, color .13s ease;
}
.v3-cat svg { width: 20px; height: 20px; color: var(--faint); transition: color .13s ease; }
.v3-cat:hover { transform: translateY(-2px); box-shadow: var(--shadow-s); border-color: var(--line-strong); color: var(--ink); }
.v3-cat:hover svg { color: var(--accent-deep); }
.v3-cat.is-active {
    background: var(--ink); border-color: var(--ink); color: #fff;
    box-shadow: var(--shadow-m);
}
.v3-cat.is-active svg { color: var(--accent); }

/* Cards de clã */
.v3-clan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.v3-clan-card {
    position: relative; display: block;
    background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-l);
    box-shadow: var(--shadow-s); padding: 22px;
    border-top: 3px solid var(--clan-accent, var(--accent));
    transition: transform .15s ease, box-shadow .15s ease;
}
.v3-clan-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-m); }
.v3-clan-rank { position: absolute; top: 16px; right: 18px; font-family: var(--mono); font-size: 13px; font-weight: 700; color: var(--faint); }
.v3-clan-head { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.v3-clan-logo { width: 46px; height: 46px; border-radius: 12px; object-fit: cover; flex-shrink: 0; }
.v3-clan-logo.fallback {
    display: flex; align-items: center; justify-content: center;
    background: var(--surface-2); color: var(--clan-accent, var(--accent-deep)); font-weight: 800; font-size: 16px;
}
.v3-clan-head h3 { font-size: 16.5px; font-weight: 750; letter-spacing: -.01em; }
.v3-clan-head .sv { font-size: 12px; color: var(--faint); }
.v3-clan-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; padding-top: 14px; border-top: 1px solid var(--line); }
.v3-clan-stats .st .n { font-family: var(--mono); font-size: 15px; font-weight: 700; font-variant-numeric: tabular-nums; }
.v3-clan-stats .st .l { font-size: 10px; letter-spacing: .07em; text-transform: uppercase; color: var(--faint); }
.v3-clan-motd { font-size: 12.5px; color: var(--muted); margin-top: 12px; font-style: italic; }
.v3-myclan {
    display: inline-flex; flex-direction: column; gap: 2px;
    background: var(--accent-soft); border: 1px solid rgba(232,89,12,.25);
    border-radius: var(--radius-m); padding: 12px 18px; font-size: 12px; color: var(--accent-deep);
}
.v3-myclan b { font-size: 15px; color: var(--ink); }

@media (max-width: 900px) { .v3-clan-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .v3-clan-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Jogadores
   ============================================================ */
.v3-player-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.v3-player-card {
    display: flex; align-items: center; gap: 14px;
    background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-m);
    box-shadow: var(--shadow-s); padding: 16px;
    transition: transform .14s ease, box-shadow .14s ease;
}
.v3-player-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-m); }
.v3-player-av-wrap { position: relative; flex-shrink: 0; }
.v3-player-av-wrap img { width: 52px; height: 52px; border-radius: 14px; object-fit: cover; }
.v3-presence {
    position: absolute; bottom: -3px; right: -3px; width: 13px; height: 13px; border-radius: 50%;
    background: var(--faint); border: 2.5px solid var(--bg);
}
.v3-presence.is-on { background: var(--good); }
.v3-player-body { min-width: 0; }
.v3-player-body h3 { font-size: 14.5px; font-weight: 700; letter-spacing: -.01em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 2px; }
.v3-player-id { display: flex; align-items: center; gap: 6px; font-size: 11px; color: var(--faint); margin-bottom: 8px; }
.v3-player-id button { color: var(--faint); padding: 2px; border-radius: 4px; display: inline-flex; }
.v3-player-id button:hover { color: var(--accent-deep); background: var(--surface-2); }

@media (max-width: 1000px) { .v3-player-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .v3-player-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Regras
   ============================================================ */
.v3-rules-highlights { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; margin-bottom: 44px; }
.v3-rules-highlight {
    background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-m);
    border-left: 3px solid var(--accent);
    box-shadow: var(--shadow-s); padding: 18px 20px;
}
.v3-rules-highlight strong { display: block; font-size: 14.5px; letter-spacing: -.01em; margin-bottom: 4px; }
.v3-rules-highlight p { font-size: 13px; color: var(--muted); }
.v3-rules-grid { display: grid; grid-template-columns: 1fr 300px; gap: 40px; align-items: start; }
.v3-rules-section { margin-bottom: 44px; }
.v3-rules-section:last-child { margin-bottom: 0; }
.v3-rules-section-head { display: flex; gap: 18px; margin-bottom: 18px; }
.v3-rules-section-head .idx { font-size: 26px; font-weight: 700; color: var(--accent); line-height: 1.2; }
.v3-rules-section-head h2 { font-size: 20px; font-weight: 750; letter-spacing: -.015em; margin-bottom: 4px; }
.v3-rules-section-head p { font-size: 14px; color: var(--muted); }
.v3-rules-items { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.v3-rules-item { padding: 14px 0 14px 42px; border-bottom: 1px solid var(--line); }
.v3-rules-item strong { display: block; font-size: 14.5px; margin-bottom: 3px; }
.v3-rules-item p { font-size: 13.5px; color: var(--muted); line-height: 1.65; max-width: 68ch; }
.v3-rules-sidebar { position: sticky; top: calc(var(--nav-h) + 20px); }
.v3-rules-sidebar-card {
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-l);
    padding: 24px;
}
.v3-rules-sidebar-card h3 { font-size: 16px; font-weight: 750; margin: 10px 0 16px; }
.v3-rules-sidebar-card ul { display: flex; flex-direction: column; gap: 10px; }
.v3-rules-sidebar-card li { position: relative; padding-left: 18px; font-size: 13.5px; color: var(--ink); }
.v3-rules-sidebar-card li::before { content: ""; position: absolute; left: 0; top: 7px; width: 7px; height: 7px; border-radius: 2px; background: var(--accent); }
.v3-rules-sidebar-card .note { margin-top: 16px; font-size: 12.5px; color: var(--faint); border-top: 1px solid var(--line); padding-top: 14px; }

@media (max-width: 900px) {
    .v3-rules-highlights { grid-template-columns: 1fr; }
    .v3-rules-grid { grid-template-columns: 1fr; }
    .v3-rules-sidebar { position: static; }
    .v3-rules-item { padding-left: 0; }
}

/* ============================================================
   Perfil do jogador — card contido, largo e legível
   ============================================================ */
.container--profile { max-width: 1480px; }
.v3-page-head--profile {
    padding: calc(var(--nav-h) + 32px) 0 8px;
    background: var(--surface);
}
.v3-section--profile { padding-bottom: 64px; }

.v3-profile-card {
    position: relative;
    border-radius: 28px;
    border: 1px solid var(--line);
    background: var(--bg);
    box-shadow: var(--shadow-m);
    overflow: hidden;
}
.v3-profile-card__cover {
    position: relative;
    height: 180px;
    background-color: #161b24;
    background-image:
        linear-gradient(180deg, rgba(8,10,16,.1) 0%, rgba(8,10,16,.35) 55%, rgba(8,10,16,.9) 100%),
        linear-gradient(120deg, #1a212e 0%, #2c2320 55%, #3d2a1c 100%);
    background-size: cover;
    background-position: center 38%;
}
.v3-profile-card__cover.has-image {
    background-image:
        linear-gradient(180deg, rgba(8,10,16,.15) 0%, rgba(8,10,16,.3) 45%, rgba(14,17,22,.92) 100%),
        var(--v3-cover);
    background-size: cover, cover;
    background-position: center, center 38%;
}
.v3-report-fab {
    position: relative; top: auto; right: auto; z-index: 2;
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(14, 17, 22, .82); color: #fff;
    font-size: 13.5px; font-weight: 700;
    padding: 9px 16px; border-radius: 10px;
    border: 1px solid rgba(255,255,255,.14);
    backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
    transition: background .13s ease, transform .13s ease;
}
.v3-report-fab:hover { background: rgba(14, 17, 22, .95); transform: translateY(-1px); }
.v3-report-fab[disabled],
.v3-report-fab.is-blocked { opacity: .6; cursor: not-allowed; transform: none; }
.v3-report-fab svg { flex-shrink: 0; }
.v3-profile-card__toolbar {
    position: absolute; top: 14px; right: 14px; z-index: 3;
    display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px;
    max-width: calc(100% - 28px);
}
.v3-btn-on-cover {
    background: rgba(14, 17, 22, .55) !important;
    color: #fff !important;
    border-color: rgba(255,255,255,.18) !important;
}
.v3-btn-on-cover:hover {
    background: rgba(14, 17, 22, .78) !important;
    color: #fff !important;
}
.v3-report-tip {
    position: relative; top: auto; right: auto; z-index: 3;
    display: inline-flex;
}
.v3-profile-actions .v3-report-tip {
    position: relative; top: auto; right: auto;
}
.v3-report-tip .v3-report-fab { position: static; }
.v3-report-tip::after {
    content: attr(data-tip);
    position: absolute; top: calc(100% + 8px); right: 0;
    min-width: 190px; max-width: 260px;
    padding: 10px 14px; border-radius: 10px;
    background: rgba(14, 17, 22, .94); color: #fff;
    font-size: 13px; font-weight: 600; line-height: 1.35;
    box-shadow: 0 8px 24px rgba(0,0,0,.22);
    opacity: 0; visibility: hidden; pointer-events: none;
    transform: translateY(-4px);
    transition: opacity .14s ease, transform .14s ease, visibility .14s ease;
    white-space: normal; text-align: left;
    z-index: 5;
}
.v3-report-tip:hover::after,
.v3-report-tip:focus-within::after {
    opacity: 1; visibility: visible; transform: translateY(0);
}

.v3-profile-card__body {
    position: relative; z-index: 2;
    display: grid;
    grid-template-columns: 168px minmax(0, 1fr);
    gap: 28px 36px;
    align-items: center;
    padding: 22px 36px 10px;
    background: var(--bg);
}
.v3-profile-card__media {
    display: grid;
    justify-items: center;
    gap: 12px;
    margin-top: -86px;
}
.v3-profile-avshell {
    position: relative;
    width: 152px; height: 152px;
    display: grid; place-items: center;
}
.steam-avatar { position: relative; display: block; width: 84px; height: 84px; overflow: visible; }
.steam-avatar.v3-av { width: 132px; height: 132px; }
.steam-avatar-img { width: 100%; height: 100%; border-radius: 18px; object-fit: cover; box-shadow: var(--shadow-m); }
.steam-avatar.v3-av .steam-avatar-img,
.steam-avatar.v3-av .steam-avatar-placeholder {
    border-radius: 18px; box-shadow: 0 14px 34px rgba(14,17,22,.18); background: transparent;
}
.steam-avatar-placeholder {
    display: block; width: 100%; height: 100%; border-radius: 18px; background: var(--surface-2);
}
.steam-avatar-placeholder[hidden] { display: none !important; }
.steam-avatar-frame {
    position: absolute; inset: -12%; width: 124%; height: 124%;
    max-width: none; object-fit: contain; pointer-events: none; z-index: 2;
}
.v3-level-pill {
    position: absolute; right: 4px; bottom: 4px; z-index: 3;
    font-family: var(--mono); font-size: 12px; font-weight: 800;
    background: #0e1116; color: var(--accent);
    border: 1px solid rgba(232, 89, 12, .35);
    border-radius: 999px; padding: 5px 12px;
}
.v3-profile-avshell .v3-presence {
    position: absolute; width: 16px; height: 16px;
    bottom: 12px; left: 12px; z-index: 3;
    border-width: 3px;
}
.v3-av-progress { width: 100%; max-width: 152px; }
.v3-av-progress .lp-top,
.v3-av-progress .lp-bot {
    display: flex; justify-content: space-between; gap: 8px;
    font-size: 12px; color: var(--muted);
}
.v3-av-progress .lp-top { margin-bottom: 6px; }
.v3-av-progress .lp-bot { margin-top: 6px; }
.v3-av-progress .lp-top strong { color: var(--ink); font-weight: 700; }
.v3-av-progress .lp-track { height: 8px; border-radius: 999px; background: var(--surface-2); overflow: hidden; }
.v3-av-progress .lp-track span { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--accent), var(--accent-deep)); }

.v3-profile-card__copy { min-width: 0; }
.v3-profile-name-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 8px; }
.v3-profile-name-row h1 { font-size: clamp(32px, 3.6vw, 44px); font-weight: 800; letter-spacing: -.03em; margin: 0; line-height: 1.05; }
.v3-profile-meta {
    display: flex; flex-wrap: wrap; gap: 10px 22px;
    font-size: 14px; color: var(--muted); margin-bottom: 18px;
}
.v3-profile-meta a { color: inherit; text-decoration: underline dotted; text-underline-offset: 3px; }
.v3-profile-meta button { display: inline-flex; vertical-align: middle; margin-left: 4px; color: var(--faint); }
.v3-profile-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.v3-profile-actions .v3-btn { font-size: 14.5px; padding: 12px 20px; }

/* Stats compactos no card; fora do card (painel Steam) volta ao tamanho normal */
.v3-profile-stats {
    display: grid; grid-template-columns: repeat(6, 1fr);
    background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-l);
    box-shadow: var(--shadow-s); margin-top: 20px; overflow: hidden;
}
.v3-profile-stats .st { padding: 14px 16px; border-left: 1px solid var(--line); }
.v3-profile-stats .st:first-child { border-left: none; }
.v3-profile-stats .n { font-size: 18px; font-weight: 700; letter-spacing: -.02em; }
.v3-profile-stats .l { font-size: 11.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--faint); margin-top: 3px; font-weight: 600; }
.v3-profile-stats--in-card {
    background: transparent; border-radius: 0; box-shadow: none; border: none;
    margin-top: 0;
}
.v3-profile-stats--in-card .st { padding: 12px 14px; }
.v3-profile-stats--in-card .n { font-size: 15.5px; font-weight: 700; }
.v3-profile-stats--in-card .l { font-size: 10.5px; }

/* Rodapé do card: stats à esquerda, conduta no canto direito */
.v3-profile-card__foot {
    display: flex; align-items: stretch;
    border-top: 1px solid var(--line); margin-top: 4px;
}
.v3-profile-card__foot .v3-profile-stats--in-card { flex: 1; min-width: 0; }
.v3-conduct--corner {
    display: flex; flex-direction: column; align-items: flex-end; justify-content: center;
    gap: 6px; margin: 0; padding: 10px 18px;
    border-left: 1px solid var(--line); flex-shrink: 0;
}
.v3-conduct--corner .v3-conduct-chip { font-size: 11px; padding: 3px 10px; gap: 6px; }

/* Cabeçalho legado do painel Steam (/jogadores/perfil) */
.v3-profile-head {
    display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.v3-profile-id { display: flex; align-items: center; gap: 20px; }
.v3-profile-av { position: relative; flex-shrink: 0; }
.v3-profile-av > img,
.v3-profile-av .steam-avatar-img {
    width: 84px; height: 84px; border-radius: 20px; object-fit: cover; box-shadow: var(--shadow-m);
}
.v3-profile-av .v3-presence { width: 16px; height: 16px; bottom: -2px; right: -2px; border-width: 3px; }
.v3-profile-head .v3-profile-actions { align-items: center; }
.v3-profile-head .v3-report-fab { position: static; }
.v3-level-badge {
    font-family: var(--mono); font-size: 11px; font-weight: 700;
    background: var(--ink); color: var(--accent); border-radius: 999px; padding: 4px 11px;
}
.v3-profile-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }
.v3-profile-col { display: flex; flex-direction: column; gap: 28px; }

/* Snapshot (escopo Wipe/Geral × categorias) */
.v3-section--profile .v3-panel-head h2 { font-size: 20px; }
.v3-section--profile .v3-panel { padding: 26px 28px; }
.v3-snap-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; }
.v3-snap-tab {
    font-size: 14.5px; font-weight: 650; color: var(--muted);
    background: var(--surface); border: 1px solid var(--line);
    border-radius: 999px; padding: 10px 18px;
    transition: all .12s ease;
}
.v3-snap-tab:hover { color: var(--ink); border-color: var(--line-strong); }
.v3-snap-tab.is-active { background: var(--accent); border-color: var(--accent); color: #fff; }
.v3-snap-heroes { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 14px; margin-bottom: 16px; }
.v3-snap-hero {
    background: var(--surface); border-radius: var(--radius-m); padding: 18px 20px;
}
.v3-snap-hero.is-primary { background: var(--accent-soft); border: 1px solid rgba(232, 89, 12, .25); }
.v3-snap-hero .l { font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--faint); margin-bottom: 4px; font-weight: 650; }
.v3-snap-hero.is-primary .l { color: var(--accent-deep); }
.v3-snap-hero .n { font-size: 28px; font-weight: 750; letter-spacing: -.02em; }
.v3-snap-pills { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 10px; }
.v3-snap-pill {
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    background: var(--bg); border: 1px solid var(--line); border-radius: 12px;
    padding: 14px 16px; font-size: 14.5px;
}
.v3-snap-pill .l { color: var(--muted); font-weight: 550; }
.v3-snap-pill .v { font-weight: 750; font-size: 16px; }
[data-snap-scope-panel][hidden], [data-snap-panel][hidden] { display: none; }

/* Legibilidade nos blocos abaixo do snapshot */
.v3-section--profile .v3-panel-head span { font-size: 13.5px; }
.v3-section--profile .v3-weapon-row { gap: 16px; }
.v3-section--profile .v3-weapon-row img { width: 46px; height: 46px; }
.v3-section--profile .v3-weapon-row .w-top { font-size: 15px; margin-bottom: 8px; }
.v3-section--profile .v3-weapon-row .w-top .mono { font-size: 13px; }
.v3-section--profile .v3-weapon-row .w-track { height: 7px; }
.v3-section--profile .v3-activity-row strong { font-size: 15px; }
.v3-section--profile .v3-item-chip strong { font-size: 14.5px; }
.v3-section--profile .v3-item-chip .mono { font-size: 13px; }
.v3-section--profile .v3-seg button { font-size: 14px; padding: 9px 16px; }

@media (max-width: 1100px) {
    .container--profile { max-width: 100%; }
    .v3-profile-card__body { grid-template-columns: 148px 1fr; padding: 20px 24px 10px; }
}
@media (max-width: 900px) {
    .v3-profile-card__foot { flex-direction: column; }
    .v3-conduct--corner { flex-direction: row; align-items: center; justify-content: flex-start; flex-wrap: wrap; border-left: none; border-top: 1px solid var(--line); }
    .v3-profile-stats { grid-template-columns: repeat(3, 1fr); }
    .v3-profile-stats .st:nth-child(4) { border-left: none; }
    .v3-profile-stats .st { border-top: 1px solid var(--line); }
    .v3-profile-stats .st:nth-child(-n+3) { border-top: none; }
    .v3-profile-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .v3-profile-card__body { grid-template-columns: 1fr; justify-items: start; }
    .v3-profile-card__media { justify-items: start; margin-top: -64px; }
    .v3-profile-card__cover { height: 140px; }
    .v3-profile-card__toolbar { left: 12px; right: 12px; max-width: none; }
    .steam-avatar.v3-av { width: 112px; height: 112px; }
    .v3-profile-avshell { width: 128px; height: 128px; }
    .v3-profile-stats .n { font-size: 16px; }
}

.v3-panel {
    background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-l);
    box-shadow: var(--shadow-s); padding: 22px 24px;
}
.v3-panel-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 18px; }
.v3-panel-head h2 { font-size: 16px; font-weight: 750; letter-spacing: -.01em; }
.v3-panel-head span { font-size: 12px; color: var(--faint); }
.v3-panel-empty { font-size: 13.5px; color: var(--muted); padding: 12px 0; }

.v3-weapon-list { display: flex; flex-direction: column; gap: 14px; }
.v3-weapon-row { display: flex; align-items: center; gap: 14px; }
.v3-weapon-row img { width: 38px; height: 38px; object-fit: contain; flex-shrink: 0; }
.v3-weapon-row .w-body { flex: 1; min-width: 0; }
.v3-weapon-row .w-top { display: flex; justify-content: space-between; gap: 10px; font-size: 13px; margin-bottom: 6px; }
.v3-weapon-row .w-top strong { font-weight: 650; }
.v3-weapon-row .w-top .mono { font-size: 11.5px; color: var(--faint); }
.v3-weapon-row .w-track { height: 5px; border-radius: 999px; background: var(--surface-2); overflow: hidden; }
.v3-weapon-row .w-track span { display: block; height: 100%; border-radius: 999px; background: var(--accent); }

.v3-kill-list { display: flex; flex-direction: column; }
.v3-kill-row { display: flex; gap: 12px; padding: 11px 0; border-top: 1px solid var(--line); }
.v3-kill-row:first-child { border-top: none; }
.v3-kill-row .k-dot { width: 8px; height: 8px; border-radius: 50%; margin-top: 6px; flex-shrink: 0; }
.v3-kill-row.is-kill .k-dot { background: var(--good); }
.v3-kill-row.is-death .k-dot { background: #c25852; }
.v3-kill-row .k-summary { font-size: 13.5px; font-weight: 550; }
.v3-kill-row .k-meta { font-size: 11px; color: var(--faint); margin-top: 1px; }

/* Icone da arma no killfeed */
.v3-kill-row .k-icon {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    border-radius: 9px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .035);
    margin-top: -2px;
}
.v3-kill-row .k-icon img {
    width: 26px;
    height: 26px;
    object-fit: contain;
    display: block;
}
.v3-kill-row .k-icon-fallback { font-size: 15px; line-height: 1; }
.v3-kill-row.is-kill .k-icon { border-color: color-mix(in srgb, var(--good) 32%, var(--line)); }
.v3-kill-row.is-death .k-icon { border-color: color-mix(in srgb, #c25852 32%, var(--line)); }

/* O ponto vira apenas um acento fino ao lado do icone */
.v3-kill-row .k-icon + .k-body { min-width: 0; }

.v3-activity-list { display: flex; flex-direction: column; }
.v3-activity-row { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 12px 0; border-top: 1px solid var(--line); }
.v3-activity-row:first-child { border-top: none; }
.v3-activity-row strong { display: block; font-size: 14px; font-weight: 650; }
.v3-activity-row .mono { font-size: 11px; color: var(--faint); }

.v3-redeem-cats { display: flex; flex-direction: column; gap: 14px; }
.v3-redeem-cat-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.v3-redeem-cat-tab {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 7px 12px; border-radius: 999px; border: 1px solid var(--line);
    background: transparent; color: var(--muted); font-size: 12.5px; font-weight: 600;
    cursor: pointer; transition: color .12s ease, border-color .12s ease, background .12s ease;
}
.v3-redeem-cat-tab em {
    font-style: normal; font-size: 11px; font-variant-numeric: tabular-nums;
    padding: 1px 6px; border-radius: 999px; background: var(--surface); color: var(--faint);
}
.v3-redeem-cat-tab:hover { color: var(--ink); border-color: var(--line-strong); }
.v3-redeem-cat-tab.is-active { background: var(--accent); border-color: var(--accent); color: #fff; }
.v3-redeem-cat-tab.is-active em { background: rgba(255,255,255,.18); color: #fff; }
.v3-redeem-cat-panel[hidden] { display: none; }

.v3-ach-list { display: flex; flex-direction: column; }
.v3-ach-row { display: flex; align-items: flex-start; gap: 12px; padding: 11px 0; border-top: 1px solid var(--line); }
.v3-ach-row:first-child { border-top: none; }
.v3-ach-row .a-ic {
    width: 34px; height: 34px; border-radius: 10px; flex-shrink: 0;
    background: var(--accent-soft); display: flex; align-items: center; justify-content: center; font-size: 15px;
}
.v3-ach-row strong { display: block; font-size: 13.5px; font-weight: 650; }
.v3-ach-row span { font-size: 12px; color: var(--muted); }

/* ============================================================
   Detalhe do servidor
   ============================================================ */
.v3-server-detail-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: 24px; align-items: start; }
.v3-map-img { border-radius: var(--radius-m); overflow: hidden; border: 1px solid var(--line); }
.v3-map-img img { width: 100%; display: block; }
.v3-map-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(90px, 1fr)); gap: 10px; margin-top: 14px; }
.v3-map-stats .ms { background: var(--surface); border-radius: var(--radius-s); padding: 10px 12px; }
.v3-map-stats .ms b { display: block; font-size: 14px; font-variant-numeric: tabular-nums; }
.v3-map-stats .ms span { font-size: 10.5px; letter-spacing: .05em; text-transform: uppercase; color: var(--faint); }
.v3-map-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 14px; }
.v3-map-foot .mono { font-size: 11px; color: var(--faint); }

.v3-online-list { display: flex; flex-direction: column; }
.v3-online-row {
    display: flex; align-items: center; gap: 11px;
    padding: 9px 0; border-top: 1px solid var(--line);
    transition: background .12s ease;
}
.v3-online-row:first-child { border-top: none; }
.v3-online-row:hover { background: var(--surface); }
.v3-online-row img { width: 30px; height: 30px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.v3-online-row .nm { flex: 1; min-width: 0; font-size: 13.5px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.v3-online-row .pos { font-size: 11.5px; color: var(--faint); width: 22px; flex-shrink: 0; }
.v3-online-row .val { font-size: 12px; color: var(--muted); }

@media (max-width: 900px) { .v3-server-detail-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Dashboard
   ============================================================ */
.v3-flash {
    background: var(--good-soft); color: var(--good);
    border: 1px solid rgba(18, 145, 94, .25); border-radius: var(--radius-m);
    padding: 13px 18px; font-size: 13.5px; margin-bottom: 22px;
}
.v3-flash strong { margin-right: 8px; }
.v3-flash.is-error { background: #fdf0ef; color: #b91c1c; border-color: rgba(185, 28, 28, .25); }
.v3-notif-actions { display: flex; align-items: center; gap: 14px; }
.v3-notif-actions form { display: inline-flex; }
.v3-notif-actions button { font: inherit; }
.v3-notif-clear { font-size: 12.5px; color: var(--faint); }
.v3-notif-clear:hover { color: #b91c1c; }
.v3-notif-list { display: flex; flex-direction: column; }
.v3-notif-row { display: flex; align-items: flex-start; gap: 12px; padding: 13px 0; border-top: 1px solid var(--line); }
.v3-notif-row:first-child { border-top: none; }
.v3-notif-row.is-unread { position: relative; padding-left: 14px; }
.v3-notif-row.is-unread::before { content: ""; position: absolute; left: 0; top: 20px; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.v3-notif-row .n-body { flex: 1; min-width: 0; }
.v3-notif-row strong { display: block; font-size: 13.5px; font-weight: 700; }
.v3-notif-row p { font-size: 13px; color: var(--muted); margin: 2px 0 3px; }
.v3-notif-row .mono { font-size: 10.5px; color: var(--faint); }

/* ============================================================
   Abas do painel (dashboard por categorias)
   ============================================================ */
.v3-tabs {
    display: flex; gap: 6px; flex-wrap: wrap;
    border-bottom: 1px solid var(--line); margin-bottom: 28px;
}
.v3-tab {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 14px; font-weight: 600; color: var(--muted);
    padding: 11px 16px; border-radius: 10px 10px 0 0;
    border-bottom: 2px solid transparent; margin-bottom: -1px;
    transition: color .12s ease, background .12s ease;
}
.v3-tab:hover { color: var(--ink); background: var(--surface); }
.v3-tab.is-active { color: var(--accent-deep); font-weight: 700; border-bottom-color: var(--accent); }
.v3-tab .tb {
    min-width: 18px; height: 18px; padding: 0 5px;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--accent); color: #fff; border-radius: 999px;
    font-size: 10.5px; font-weight: 800;
}
[data-dash-panel][hidden] { display: none; }
.v3-overview-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 14px; margin-bottom: 24px; }
.v3-overview-card {
    background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-m);
    box-shadow: var(--shadow-s); padding: 18px 20px; text-align: left; cursor: pointer;
    transition: transform .13s ease, box-shadow .13s ease;
}
.v3-overview-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-m); }
.v3-overview-card .n { font-family: var(--mono); font-size: 24px; font-weight: 700; font-variant-numeric: tabular-nums; }
.v3-overview-card .l { font-size: 12.5px; color: var(--muted); margin-top: 2px; }
.v3-overview-card.is-warn { border-left: 3px solid var(--warn); }
.v3-overview-card.is-accent { border-left: 3px solid var(--accent); }

/* ============================================================
   Navbar: carrinho + dropdown de perfil (estilo v1)
   ============================================================ */
.v3-nav-cart { position: relative; display: inline-flex; padding: 8px; border-radius: 9px; color: var(--muted); }
.v3-nav-cart:hover { background: var(--surface); color: var(--ink); }
.v3-nav-cart .b {
    position: absolute; top: 1px; right: 1px;
    min-width: 15px; height: 15px; padding: 0 4px;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--accent); color: #fff; border-radius: 999px;
    font-size: 9.5px; font-weight: 800;
}
.v3-nav-cart .b.is-empty { display: none; }

.v3-nav-profile { position: relative; }
.v3-nav-profile-btn {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 5px 9px 5px 5px; border-radius: 10px;
    transition: background .13s ease;
    position: relative;
}
.v3-nav-profile-btn:hover, .v3-nav-profile.is-open .v3-nav-profile-btn { background: var(--surface); }
.v3-nav-profile-btn img { width: 29px; height: 29px; border-radius: 50%; }
.v3-nav-profile-btn .nm { font-size: 13.5px; font-weight: 600; color: var(--ink); }
.v3-nav-profile-btn .gems {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 12px; font-weight: 700; color: var(--accent-deep);
}
.v3-nav-profile-btn .car { color: var(--faint); transition: transform .16s ease; }
.v3-nav-profile.is-open .car { transform: rotate(180deg); }
.v3-nav-profile-btn .alert-dot {
    position: absolute; top: 4px; left: 27px;
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--accent); border: 2px solid var(--bg);
}

.v3-nav-dropdown {
    position: absolute; top: calc(100% + 10px); right: 0; z-index: 120;
    width: 258px;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow-l);
    padding: 8px;
    opacity: 0; visibility: hidden; transform: translateY(-6px);
    transition: opacity .15s ease, transform .15s ease, visibility .15s;
}
.v3-nav-profile.is-open .v3-nav-dropdown { opacity: 1; visibility: visible; transform: none; }
.v3-nav-dropdown-user { display: flex; align-items: center; gap: 12px; padding: 12px 12px 10px; }
.v3-nav-dropdown-user img { width: 44px; height: 44px; border-radius: 10px; }
.v3-nav-dropdown-user .nm { font-size: 14px; font-weight: 700; color: var(--ink); }
.v3-nav-dropdown-user .id { font-size: 11px; color: var(--faint); margin-top: 1px; }
.v3-nav-dropdown-user .gm {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 12px; font-weight: 700; color: var(--accent-deep); margin-top: 4px;
}
.v3-nav-dropdown-sep { height: 1px; background: var(--line); margin: 6px 4px; }
.v3-nav-dropdown-item {
    display: flex; align-items: center; gap: 11px;
    width: 100%; text-align: left;
    padding: 10px 12px; border-radius: 9px;
    font-size: 13.5px; font-weight: 550; color: var(--muted);
    transition: background .12s ease, color .12s ease;
}
.v3-nav-dropdown-item:hover { background: var(--surface); color: var(--ink); }
.v3-nav-dropdown-item svg { color: var(--faint); flex-shrink: 0; }
.v3-nav-dropdown-item:hover svg { color: var(--ink); }
.v3-nav-dropdown-item .badge {
    margin-left: auto;
    min-width: 18px; height: 18px; padding: 0 5px;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--accent); color: #fff; border-radius: 999px;
    font-size: 10px; font-weight: 800;
}
.v3-nav-dropdown-item.is-danger { color: #c22a2a; }
.v3-nav-dropdown-item.is-danger svg { color: #c22a2a; }
.v3-nav-dropdown-item.is-danger:hover { background: #fdeaea; color: #a01f1f; }
.v3-nav-dropdown form { display: block; }

/* ============================================================
   Perfil: progresso de nível, report, itens, fauna
   ============================================================ */
.v3-level-progress { margin-top: 24px; max-width: 520px; }
.v3-level-progress .lp-top { display: flex; justify-content: space-between; gap: 12px; font-size: 12.5px; color: var(--muted); margin-bottom: 7px; }
.v3-level-progress .lp-top b { color: var(--ink); }
.v3-level-progress .lp-track { height: 7px; border-radius: 999px; background: var(--surface-2); overflow: hidden; }
.v3-level-progress .lp-track span { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--accent), var(--accent-deep)); }

.v3-report > summary {
    cursor: pointer; font-size: 14px; font-weight: 700; color: var(--ink);
    list-style: none; display: flex; align-items: center; gap: 8px;
}
.v3-report > summary::before { content: "⚑"; color: var(--accent-deep); }
.v3-report > summary::-webkit-details-marker { display: none; }
.v3-report[open] > summary { margin-bottom: 16px; }
.v3-report-form { display: flex; flex-direction: column; gap: 12px; }
.v3-report-form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.v3-report-form label { display: flex; flex-direction: column; gap: 5px; font-size: 12px; font-weight: 650; color: var(--muted); }
.v3-report-form input, .v3-report-form textarea {
    font: inherit; font-size: 13.5px; color: var(--ink);
    border: 1px solid var(--line-strong); border-radius: var(--radius-s);
    padding: 9px 12px; background: var(--bg); resize: vertical;
}
.v3-report-form input:focus, .v3-report-form textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.v3-report-form button[type="submit"] { align-self: flex-start; }
.v3-report-form label { position: relative; }

/* Autocomplete de jogador (endpoint /leaderboards/suggest) */
.v3-suggest-list {
    position: absolute; top: 100%; left: 0; right: 0; z-index: 80;
    background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-m);
    box-shadow: var(--shadow-m); margin-top: 4px; overflow: hidden; max-height: 280px; overflow-y: auto;
}
.v3-suggest-item {
    display: flex; align-items: center; gap: 10px; width: 100%;
    padding: 9px 12px; text-align: left; font-weight: 500;
    transition: background .1s ease;
}
.v3-suggest-item:hover, .v3-suggest-item.is-focus { background: var(--surface); }
.v3-suggest-item img { width: 28px; height: 28px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.v3-suggest-item .nm { font-size: 13px; font-weight: 650; color: var(--ink); display: block; line-height: 1.25; }
.v3-suggest-item .id { font-family: var(--mono); font-size: 10.5px; color: var(--faint); }

/* Cards de report (Meus reports) */
.v3-report-summary { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 12px; margin-bottom: 20px; }
.v3-report-summary .rs {
    background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-m);
    box-shadow: var(--shadow-s); padding: 14px 16px;
}
.v3-report-summary .rs .n { font-family: var(--mono); font-size: 22px; font-weight: 700; }
.v3-report-summary .rs .l { font-size: 11.5px; color: var(--muted); }
.v3-report-summary .rs.is-open { border-left: 3px solid var(--warn); }
.v3-report-summary .rs.is-reviewing { border-left: 3px solid var(--accent); }
.v3-report-summary .rs.is-resolved { border-left: 3px solid var(--good); }

.v3-report-card {
    border: 1px solid var(--line); border-left-width: 3px; border-radius: var(--radius-m);
    background: var(--bg); box-shadow: var(--shadow-s); padding: 16px 18px; margin-bottom: 12px;
}
.v3-report-card.is-ok { border-left-color: var(--good); }
.v3-report-card.is-warn { border-left-color: var(--warn); }
.v3-report-card.is-muted { border-left-color: var(--line-strong); }
.v3-report-card .rc-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 8px; }
.v3-report-card .rc-top strong { font-size: 14.5px; letter-spacing: -.01em; }
.v3-report-card .rc-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px; }
.v3-report-card .rc-chips span {
    font-size: 11px; color: var(--muted); background: var(--surface);
    border-radius: 999px; padding: 3px 9px;
}
.v3-report-card .rc-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }
.v3-report-card .rc-resolution {
    margin-top: 10px; background: var(--good-soft); border-radius: var(--radius-s);
    padding: 10px 13px; font-size: 12.5px; color: var(--good);
}
.v3-report-card .rc-resolution b { color: var(--ink); }

.v3-item-chip-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.v3-item-chip {
    display: flex; align-items: center; gap: 10px;
    background: var(--surface); border-radius: var(--radius-s); padding: 9px 12px;
}
.v3-item-chip img { width: 30px; height: 30px; object-fit: contain; flex-shrink: 0; }
.v3-item-chip strong { display: block; font-size: 12.5px; font-weight: 650; line-height: 1.3; }
.v3-item-chip .mono { font-size: 11px; color: var(--faint); }
.v3-fauna-row { display: flex; flex-wrap: wrap; gap: 8px; }

/* ============================================================
   Carrinho: presente
   ============================================================ */
.v3-gift { margin-top: 8px; }
.v3-gift > summary { cursor: pointer; font-size: 12px; font-weight: 650; color: var(--accent-deep); list-style: none; }
.v3-gift > summary::-webkit-details-marker { display: none; }
.v3-gift[open] > summary { margin-bottom: 10px; }
.v3-gift form { display: flex; flex-wrap: wrap; gap: 8px; }
.v3-gift input {
    font: inherit; font-size: 12.5px; color: var(--ink);
    border: 1px solid var(--line-strong); border-radius: var(--radius-s);
    padding: 7px 10px; min-width: 170px;
}
.v3-gift input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }

/* ============================================================
   Comparar jogadores
   ============================================================ */
.v3-compare-heads { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 24px; }
.v3-compare-head {
    display: flex; align-items: center; gap: 14px;
    background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-l);
    box-shadow: var(--shadow-s); padding: 16px 20px;
    transition: box-shadow .14s ease;
}
.v3-compare-head:hover { box-shadow: var(--shadow-m); }
.v3-compare-head .tag { font-size: 13px; font-weight: 700; color: var(--accent-deep); }
.v3-compare-head img { width: 46px; height: 46px; border-radius: 12px; object-fit: cover; }
.v3-compare-head strong { display: block; font-size: 15px; }
.v3-compare-head .mono { font-size: 11px; color: var(--faint); }

/* ============================================================
   Arquivo de conquistas
   ============================================================ */
.v3-ach-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.v3-ach-card {
    background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-m);
    box-shadow: var(--shadow-s); padding: 16px 18px;
    display: flex; flex-direction: column; gap: 7px;
    opacity: .62;
}
.v3-ach-card.is-unlocked { opacity: 1; }
.v3-ach-card.is-equipped { border-color: rgba(232, 89, 12, .4); box-shadow: var(--shadow-s), 0 0 0 1px rgba(232, 89, 12, .15); }
.v3-ach-card .top { display: flex; align-items: center; justify-content: space-between; }
.v3-ach-card .ic { font-size: 20px; }
.v3-ach-card .rar { font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: var(--faint); }
.v3-ach-card strong { font-size: 13.5px; font-weight: 700; letter-spacing: -.01em; }
.v3-ach-card p { font-size: 12px; color: var(--muted); line-height: 1.5; flex: 1; }
.v3-ach-card .w-track { height: 5px; border-radius: 999px; background: var(--surface-2); overflow: hidden; }
.v3-ach-card .w-track span { display: block; height: 100%; border-radius: 999px; background: var(--accent); }
.v3-ach-card .foot { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.v3-ach-card .foot .mono { font-size: 10.5px; color: var(--faint); }
.v3-ach-card form { display: inline-flex; }
.v3-ach-card .foot button { font: inherit; }

/* ============================================================
   Detalhe do servidor: regras mini
   ============================================================ */
.v3-rules-mini { display: flex; flex-direction: column; gap: 9px; }
.v3-rules-mini li { position: relative; padding-left: 17px; font-size: 13px; color: var(--ink); }
.v3-rules-mini li::before { content: ""; position: absolute; left: 0; top: 7px; width: 7px; height: 7px; border-radius: 2px; background: var(--accent); }

@media (max-width: 780px) {
    .v3-report-form .row2 { grid-template-columns: 1fr; }
    .v3-item-chip-grid { grid-template-columns: 1fr; }
    .v3-compare-heads { grid-template-columns: 1fr; }
    .v3-ach-grid { grid-template-columns: 1fr; }
    .v3-nav-profile-btn .nm, .v3-nav-profile-btn .gems { display: none; }
    .v3-nav-dropdown { position: fixed; top: calc(var(--nav-h) + 6px); left: 12px; right: 12px; width: auto; }
}
