/* =============================================================================
   LOBBY v2 — cópia EXATA do mock "Truco Online Lobby v2.dc.html".
   Cores, fontes (Barlow / Barlow Condensed / Material Symbols Rounded) e
   animações idênticas ao mock. Escopo: classes lv-* (card também serve o preview
   do CreateRoomDialog) e o wrapper .lobby-v2 (decoração de fundo da página).
   ========================================================================== */

/* ---- Animações (idênticas ao mock) ---------------------------------------- */
@keyframes goldPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(243,196,63,.35), 0 8px 24px -6px rgba(243,196,63,.5); }
    50%      { box-shadow: 0 0 0 7px rgba(243,196,63,0), 0 8px 30px -4px rgba(243,196,63,.7); }
}
@keyframes greenPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37,208,138,.4), 0 10px 28px -8px rgba(37,208,138,.6); }
    50%      { box-shadow: 0 0 0 9px rgba(37,208,138,0), 0 12px 34px -6px rgba(37,208,138,.8); }
}
@keyframes liveBlink {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: .4; transform: scale(.65); }
}
@keyframes sheen {
    0%   { transform: translateX(-140%) skewX(-18deg); }
    100% { transform: translateX(360%) skewX(-18deg); }
}
@keyframes bob {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-30px); }
}
@keyframes auraDrift {
    0%, 100% { transform: translate(0,0) scale(1); }
    50%      { transform: translate(40px,-30px) scale(1.12); }
}

/* ---- Ícone Material Symbols Rounded --------------------------------------- */
.lv-ico {
    font-family: 'Material Symbols Rounded';
    font-weight: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
    font-variation-settings: 'opsz' 24, 'wght' 400, 'FILL' 0, 'GRAD' 0;
}

/* =============================================================================
   PÁGINA — fundo ambiente (auras + naipes flutuantes)
   ========================================================================== */
.lobby-v2 {
    position: relative;
    font-family: 'Barlow', system-ui, sans-serif;
    color: #e8edf2;
}

.lv-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.lv-bg__aura {
    position: absolute;
    border-radius: 50%;
}
.lv-bg__aura--a {
    top: -12%; right: 8%;
    width: 560px; height: 560px;
    background: radial-gradient(circle, rgba(37,208,138,.10), transparent 65%);
    animation: auraDrift 16s ease-in-out infinite;
}
.lv-bg__aura--b {
    bottom: -18%; left: 18%;
    width: 620px; height: 620px;
    background: radial-gradient(circle, rgba(243,196,63,.07), transparent 65%);
    animation: auraDrift 20s ease-in-out infinite reverse;
}

.lv-bg__suit {
    position: absolute;
    font-family: 'Barlow';
    font-weight: 700;
    line-height: 1;
}
.lv-bg__suit > span { display: inline-block; }
.lv-bg__suit--spade   { top: 18%; left: 38%; font-size: 200px; color: #fff;     opacity: .018; transform: rotate(-14deg); }
.lv-bg__suit--spade > span   { animation: bob 9s ease-in-out infinite; }
.lv-bg__suit--heart   { top: 52%; right: 14%; font-size: 150px; color: #ef6a5e; opacity: .03;  transform: rotate(12deg); }
.lv-bg__suit--heart > span   { animation: bob 11s ease-in-out infinite 1s; }
.lv-bg__suit--diamond { bottom: 8%; left: 30%; font-size: 130px; color: #f3c43f; opacity: .028; transform: rotate(-8deg); }
.lv-bg__suit--diamond > span { animation: bob 13s ease-in-out infinite .5s; }
.lv-bg__suit--club    { top: 8%; left: 14%; font-size: 120px; color: #fff;     opacity: .016; transform: rotate(16deg); }
.lv-bg__suit--club > span    { animation: bob 10s ease-in-out infinite 2s; }

.lv-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 26px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 8px 4px 40px;
}

/* =============================================================================
   LINHA-HERÓI — card de stats + atalho "Jogo Rápido"
   ========================================================================== */
.lv-hero {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.lv-stats {
    flex: 1;
    min-width: 340px;
    padding: 22px 26px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(17,24,34,.85), rgba(13,19,27,.85));
    border: 1px solid rgba(255,255,255,.07);
    backdrop-filter: blur(4px);
}
.lv-stats__eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #5d6b7a;
    margin-bottom: 18px;
}
.lv-stats__row { display: flex; gap: 26px; }
.lv-stat { display: flex; flex-direction: column; }
.lv-stat__val {
    font-family: 'Barlow Condensed';
    font-weight: 700;
    font-size: 50px;
    line-height: .85;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.lv-stat__val--open    { color: #25d08a; }
.lv-stat__val--live    { color: #ef6a5e; }
.lv-stat__val--players { color: #f3c43f; }
.lv-stat__label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #6b7888;
    margin-top: 8px;
}
.lv-stat__sep { width: 1px; background: rgba(255,255,255,.07); }
.lv-stat__live-dot {
    width: 12px; height: 12px;
    border-radius: 50%;
    background: #ef6a5e;
    animation: liveBlink 1.1s ease-in-out infinite;
}

.lv-quick {
    position: relative;
    overflow: hidden;
    flex: 1.25;
    min-width: 340px;
    padding: 24px 28px;
    border-radius: 20px;
    background: linear-gradient(120deg, #0c3326, #0a1f1a 55%, #0d1118);
    border: 1px solid rgba(37,208,138,.28);
}
.lv-quick__suit-a {
    position: absolute;
    top: -40px; right: -10px;
    font-size: 230px; font-weight: 700;
    color: #25d08a; opacity: .10;
    line-height: 1; font-family: 'Barlow';
    transform: rotate(8deg);
}
.lv-quick__suit-b {
    position: absolute;
    top: 30px; right: 90px;
    font-size: 120px; color: #f3c43f;
    opacity: .10; transform: rotate(-12deg);
}
.lv-quick__body { position: relative; }
.lv-quick__badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 12px;
    border-radius: 20px;
    background: rgba(37,208,138,.16);
    border: 1px solid rgba(37,208,138,.35);
    margin-bottom: 16px;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #25d08a;
}
.lv-quick__badge .lv-blink {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #25d08a;
    animation: liveBlink 1.1s ease-in-out infinite;
}
.lv-quick__title {
    font-family: 'Barlow Condensed';
    font-weight: 700;
    font-size: 38px;
    line-height: .95;
    color: #fff;
    letter-spacing: .5px;
}
.lv-quick__desc {
    font-size: 14px;
    color: #9fb0ad;
    margin-top: 8px;
    max-width: 330px;
}
.lv-quick__cta {
    margin-top: 20px;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    border: none;
    border-radius: 13px;
    cursor: pointer;
    background: linear-gradient(135deg, #2ee69a, #13a06a);
    color: #04231a;
    font-family: 'Barlow Condensed';
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 1.5px;
    animation: greenPulse 2.6s ease-in-out infinite;
}
.lv-quick__cta:hover { filter: brightness(1.08); }
.lv-quick__cta .lv-ico { font-size: 22px; }

/* Botão secundário do herói: leva à prática guiada (/tutorial). Sempre disponível, incl. convidados. */
.lv-quick__ghost {
    margin-top: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 11px;
    cursor: pointer;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .12);
    color: #cfe9df;
    font-family: 'Barlow', system-ui, sans-serif;
    font-weight: 600;
    font-size: 13px;
    transition: .15s;
}
.lv-quick__ghost:hover { background: rgba(37, 208, 138, .12); border-color: rgba(37, 208, 138, .4); }
.lv-quick__ghost .lv-ico { font-size: 18px; color: #cfe9df; }

/* Faísca que cruza o botão (sheen) */
.lv-sheen {
    position: absolute;
    top: 0; left: 0;
    width: 30%; height: 100%;
    pointer-events: none;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.5), transparent);
    animation: sheen 3s ease-in-out infinite;
}
.lv-sheen--gold {
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.55), transparent);
    animation-duration: 3.5s;
}

/* =============================================================================
   TOOLBAR — busca + abas + "Nova Mesa"
   ========================================================================== */
.lv-toolbar {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}
.lv-search {
    flex: 1;
    min-width: 220px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 14px;
    height: 48px;
    border-radius: 13px;
    background: rgba(8,11,17,.8);
    border: 1px solid rgba(255,255,255,.08);
}
.lv-search .lv-ico { font-size: 20px; color: #55626f; }
.lv-search__input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #e8edf2;
    font-family: 'Barlow';
    font-size: 14.5px;
    height: 100%;
}
.lv-search__input::placeholder { color: #55626f; }

.lv-tabs {
    display: flex;
    gap: 6px;
    background: rgba(8,11,17,.8);
    padding: 5px;
    border-radius: 13px;
    border: 1px solid rgba(255,255,255,.08);
}
.lv-tab {
    padding: 9px 18px;
    border: none;
    border-radius: 9px;
    cursor: pointer;
    white-space: nowrap;
    font-family: 'Barlow';
    font-weight: 600;
    font-size: 13px;
    letter-spacing: .5px;
    transition: .15s;
    background: transparent;
    color: #7c8896;
}
.lv-tab.is-active {
    background: linear-gradient(135deg, #27d68f, #13a06a);
    color: #04231a;
    box-shadow: 0 4px 12px -4px rgba(37,208,138,.5);
}

.lv-newtable {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 0 22px;
    height: 48px;
    border: none;
    border-radius: 13px;
    cursor: pointer;
    background: linear-gradient(135deg, #ffd968, #f3c43f 45%, #d99220);
    color: #3a2700;
    font-family: 'Barlow Condensed';
    font-weight: 700;
    font-size: 17px;
    letter-spacing: 1.2px;
    animation: goldPulse 3s ease-in-out infinite;
}
.lv-newtable:hover { filter: brightness(1.06); }
.lv-newtable .lv-ico { font-size: 21px; }

/* =============================================================================
   CABEÇALHO DE SEÇÃO
   ========================================================================== */
.lv-sec {
    display: flex;
    align-items: center;
    gap: 12px;
}
.lv-sec__title {
    font-family: 'Barlow Condensed';
    font-weight: 700;
    font-size: 19px;
    letter-spacing: 1.5px;
    color: #cdd6df;
}
.lv-sec__count {
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: #25d08a;
    background: rgba(37,208,138,.12);
    border: 1px solid rgba(37,208,138,.25);
}
.lv-sec__rule {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,.08), transparent);
}

/* =============================================================================
   GRADE + ESTADO VAZIO (filtro)
   ========================================================================== */
.lv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 18px;
}
.lv-empty {
    text-align: center;
    padding: 60px 0;
    color: #55626f;
}
.lv-empty .lv-ico { font-size: 44px; opacity: .6; }
.lv-empty__t {
    font-family: 'Barlow Condensed';
    font-weight: 700;
    font-size: 22px;
    margin-top: 8px;
    color: #7c8896;
}

/* =============================================================================
   PAGINAÇÃO VISUAL DA GRADE
   ========================================================================== */
.lv-pager {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 22px;
}

/* Instância do topo (acima da grade): margem invertida para respirar antes dos cards. */
.lv-pager--top { margin-top: 0; margin-bottom: 18px; }
.lv-pager__btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 9px 16px;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 11px;
    cursor: pointer;
    font-family: 'Barlow';
    font-weight: 600;
    font-size: 13px;
    letter-spacing: .3px;
    transition: .15s;
    background: rgba(255,255,255,.03);
    color: #cdd6df;
}
.lv-pager__btn:hover:not(:disabled) {
    border-color: rgba(37,208,138,.4);
    color: #fff;
}
.lv-pager__btn:disabled {
    opacity: .38;
    cursor: default;
}
.lv-pager__btn .lv-ico { font-size: 19px; }
.lv-pager__label {
    font-family: 'Barlow Condensed';
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1px;
    color: #7c8896;
    white-space: nowrap;
}

/* =============================================================================
   CARD DE MESA (.lv-card) — também usado no preview do CreateRoomDialog
   ========================================================================== */
.lv-card {
    position: relative;
    height: 100%;
    padding: 18px;
    border-radius: 16px;
    background: linear-gradient(180deg, #111822, #0d131b);
    border: 1px solid rgba(255,255,255,.07);
    box-shadow: 0 10px 30px -16px rgba(0,0,0,.7);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    font-family: 'Barlow', system-ui, sans-serif;
}

/* Recorte apenas decorativo (barra + naipe), arredondado como o card. O card em si não
   recorta — assim o fogo (cv-fire) e a moldura (cv-frame) do avatar não são cortados. */
.lv-card__clip {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}
.lv-card--interactive.lv-card--open:hover {
    transform: translateY(-5px);
    border-color: #25d08a;
    box-shadow: 0 20px 44px -18px rgba(37,208,138,.32);
}
.lv-card--interactive.lv-card--live:hover {
    transform: translateY(-5px);
    border-color: #ef6a5e;
    box-shadow: 0 20px 44px -18px rgba(239,106,94,.35);
}

.lv-card__bar {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
}
.lv-card--open .lv-card__bar { background: linear-gradient(90deg, #25d08a, transparent); }
.lv-card--live .lv-card__bar { background: linear-gradient(90deg, #ef6a5e, transparent); }

.lv-card__suit {
    position: absolute;
    right: -6px; bottom: -22px;
    font-size: 128px;
    line-height: 1;
    opacity: .06;
    pointer-events: none;
    font-family: 'Barlow';
}
.lv-card--open .lv-card__suit { color: #25d08a; }
.lv-card--live .lv-card__suit { color: #ef6a5e; }

.lv-card__body { position: relative; }

.lv-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.lv-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 11px;
    border-radius: 7px;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 1.5px;
}
.lv-card--open .lv-status { background: rgba(37,208,138,.12); color: #25d08a; }
.lv-card--live .lv-status { background: rgba(239,106,94,.12); color: #ef6a5e; }
.lv-status__dot { width: 6px; height: 6px; border-radius: 50%; }
.lv-card--open .lv-status__dot { background: #25d08a; }
.lv-card--live .lv-status__dot { background: #ef6a5e; animation: liveBlink 1.1s ease-in-out infinite; }

.lv-priv { font-size: 20px; }
.lv-priv--public  { color: #25d08a; }
.lv-priv--private { color: #ef6a5e; }

.lv-card__name {
    font-family: 'Barlow Condensed';
    font-weight: 700;
    font-size: 23px;
    letter-spacing: .3px;
    color: #fff;
    margin: 13px 0 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.lv-card__host {
    font-size: 12px;
    color: #65727f;
    margin-bottom: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.lv-card__host b { color: #9aa6b3; font-weight: 600; }

.lv-seats {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 15px;
}
.lv-seats__row { display: flex; gap: 7px; }
.lv-seat {
    width: 32px; height: 32px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}
.lv-seat--host {
    color: #06281b;
    font-weight: 700;
    font-family: 'Barlow Condensed';
    font-size: 15px;
    /* sem box-shadow próprio: o cv-fire (Em Chamas) usa box-shadow para o glow e seria
       sobrescrito; a separação fica pela borda + moldura cosmética (cv-frame). */
}
.lv-card--open .lv-seat--host { background: linear-gradient(160deg, #25d08a, #25d08acc); border: 2px solid #25d08a; }
.lv-card--live .lv-seat--host { background: linear-gradient(160deg, #ef6a5e, #ef6a5ecc); border: 2px solid #ef6a5e; }
.lv-seat--filled {
    background: rgba(37,208,138,.14);
    color: #25d08a;
    border: 2px solid rgba(37,208,138,.4);
    font-size: 17px;
}
.lv-seat--empty {
    background: #141b25;
    color: #3c4754;
    border: 2px dashed #2a3340;
    font-size: 17px;
}

/* Tooltip 100% CSS com o nome do jogador — sem TooltipService/ElementReference, para
   sobreviver aos re-renders do lobby a cada evento do hub. É um <span> filho real (não
   pseudo-elemento: ::before do assento pertence à moldura cv-frame e ::after ao cv-fire).
   O card não recorta overflow (decisão do cv-fire), então o balão escapa sem cortes. */
.lv-seat--host,
.lv-seat--filled { position: relative; }
.lv-seat__tip {
    position: absolute;
    bottom: calc(100% + 9px);
    left: 50%;
    transform: translate(-50%, 4px);
    background: #111822;
    border: 1px solid rgba(37,208,138,.45);
    border-radius: 8px;
    padding: 5px 10px;
    font: 600 12px/1.15 'Barlow', system-ui, sans-serif;
    color: #e8eef5;
    white-space: nowrap;
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    opacity: 0;
    pointer-events: none;
    z-index: 10;
    box-shadow: 0 8px 20px -10px rgba(0,0,0,.8);
    transition: opacity .14s ease, transform .14s ease;
}
/* Setinha do balão. */
.lv-seat__tip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: rgba(37,208,138,.45);
}
/* Em mesas ao vivo o balão acompanha o coral do card. */
.lv-card--live .lv-seat__tip { border-color: rgba(239,106,94,.45); }
.lv-card--live .lv-seat__tip::after { border-top-color: rgba(239,106,94,.45); }
.lv-seat:hover > .lv-seat__tip {
    opacity: 1;
    transform: translate(-50%, 0);
}
.lv-count {
    font-family: 'Barlow Condensed';
    font-weight: 700;
    font-size: 16px;
    color: #8a97a6;
    margin-left: 2px;
}

.lv-card__foot {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 13px;
    border-top: 1px solid rgba(255,255,255,.06);
    margin-bottom: 14px;
}
.lv-card__foot-label {
    font-size: 12.5px;
    color: #65727f;
    margin-right: auto;
}
.lv-tag {
    padding: 4px 9px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .5px;
}
.lv-tag--mode {
    color: #c4cdd6;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
}
.lv-tag--rule {
    color: #f3c43f;
    background: rgba(243,196,63,.12);
    border: 1px solid rgba(243,196,63,.25);
}
.lv-tag--rule-manilha {
    color: #5aa9f5;
    background: rgba(90,169,245,.12);
    border: 1px solid rgba(90,169,245,.25);
}

.lv-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border-radius: 11px;
    cursor: pointer;
    font-family: 'Barlow Condensed';
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
    transition: .15s;
}
.lv-btn .lv-ico { font-size: 19px; }
.lv-btn--enter {
    border: none;
    background: linear-gradient(135deg, #27d68f, #13a06a);
    color: #04231a;
    box-shadow: 0 6px 18px -6px rgba(37,208,138,.6);
}
.lv-btn--enter:hover { filter: brightness(1.08); transform: translateY(-1px); }
.lv-btn--watch {
    background: transparent;
    border: 1px solid rgba(239,106,94,.4);
    color: #ef6a5e;
}
.lv-btn--watch:hover { background: rgba(239,106,94,.1); transform: translateY(-1px); }
/* Ícones .lv-ico não herdam a cor do texto do botão neste app (ver comentário em
   truco-theme.css) — o olho de "Assistir/EM JOGO" precisa ser declarado em vermelho. */
.lv-btn--watch .lv-ico { color: #ef6a5e; }
.lv-btn:disabled { opacity: .55; cursor: default; filter: none; transform: none; }
/* "EM JOGO" (assistir desativado): não esmaece como os demais desativados — mantém o
   olho e a borda em vermelho vivo, sinalizando com clareza que a mesa está em jogo. */
.lv-btn--watch:disabled { opacity: 1; cursor: default; color: #c98b86; }
.lv-btn--watch:disabled .lv-ico { color: #ef6a5e; }

/* =============================================================================
   RESPONSIVO (foco mobile-first) — o herói empilha, stats/tipografia encolhem
   e a grade vira coluna única. Os dois blocos do herói têm min-width:340px:
   abaixo disso precisam soltar essa âncora para não estourar a viewport.
   ========================================================================== */

/* Tablet: herói (stats + Jogo Rápido) passa a empilhar em largura cheia. */
@media (max-width: 760px) {
    .lv-stats,
    .lv-quick { flex-basis: 100%; min-width: 0; }
    .lv-quick__desc { max-width: none; }
    .lv-quick__suit-a { font-size: 180px; }
}

@media (max-width: 600px) {
    .lv-toolbar { flex-direction: column; align-items: stretch; }
    .lv-tabs { flex-direction: column; }
    .lv-tab { flex: 1; text-align: center; }
    .lv-newtable { justify-content: center; }
}

/* Celular: encolhe a tipografia do herói, CTA em largura cheia, grade 1 coluna. */
@media (max-width: 540px) {
    .lv-content { gap: 18px; padding-bottom: 32px; }

    .lv-stats { padding: 18px; }
    .lv-stats__eyebrow { margin-bottom: 14px; letter-spacing: 2px; }
    .lv-stats__row { gap: 12px; justify-content: space-between; }
    .lv-stat__val { font-size: 38px; }
    .lv-stat__label { letter-spacing: 1px; font-size: 10px; }

    .lv-quick { padding: 20px 18px; }
    .lv-quick__title { font-size: 30px; }
    .lv-quick__cta { width: 100%; justify-content: center; }

    .lv-sec__title { font-size: 17px; }
    .lv-grid { grid-template-columns: 1fr; }

    .lv-pager { gap: 10px; }
    .lv-pager__btn { padding: 8px 12px; }
    .lv-pager__txt { display: none; }
    .lv-pager__label { font-size: 14px; }
}

/* Movimento reduzido: congela auras/naipes/glows/sheen (vale para /salas e Home,
   que compartilham os primitivos lv-*). cv-fire já é congelado globalmente. */
@media (prefers-reduced-motion: reduce) {
    .lv-bg__suit > span,
    .lv-bg__aura,
    .lv-quick__cta,
    .lv-newtable,
    .lv-sheen,
    .lv-blink,
    .lv-stat__live-dot,
    .lv-card--live .lv-status__dot { animation: none !important; }
}
