/* =====================================================================
   BlockWin — visual próprio, independente do tema do Auriabet
   ===================================================================== */

:root {
    --bw-fundo:    #060a1c;
    --bw-fundo-2:  #0a1440;
    --bw-card:     #101a3a;
    --bw-linha:    rgba(255,255,255,.09);
    --bw-texto:    #eaf0ff;
    --bw-dim:      #8b9ac4;
    --bw-roxo:     #7c5cfc;
    --bw-verde:    #22e06a;
    --bw-amarelo:  #ffc93c;
}

* { box-sizing: border-box; }

body.bw {
    margin: 0;
    background: var(--bw-fundo);
    /* Grade de quadradinhos, igual a um tabuleiro de blocos. As duas
       primeiras camadas desenham as linhas; as de baixo dão a cor. */
    background-image:
        linear-gradient(rgba(124,92,252,.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(124,92,252,.07) 1px, transparent 1px),
        radial-gradient(900px 500px at 50% -8%, rgba(124,92,252,.22), transparent 62%),
        linear-gradient(180deg, #0a1440 0%, #060a1c 55%);
    background-size: 34px 34px, 34px 34px, 100% 100%, 100% 100%;
    background-attachment: fixed;
    color: var(--bw-texto);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 14px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

h1, h2, .bw-stat b, .bw-logo-txt { font-family: 'Lexend', 'Inter', sans-serif; }
a { color: inherit; }

/* ---------- topo ---------- */
.bw-topo {
    position: sticky; top: 0; z-index: 30;
    background: rgba(10,20,64,.88);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--bw-linha);
}
.bw-topo-in {
    max-width: 720px; margin: 0 auto; padding: 11px 16px;
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.bw-logo { text-decoration: none; display: flex; align-items: center; }
.bw-logo img { height: 34px; display: block; }
.bw-logo-txt { font-size: 19px; font-weight: 900; letter-spacing: -.5px; line-height: 1; }
.bw-logo-txt b { color: var(--bw-amarelo); }
.bw-logo-txt i { color: #43b3ff; font-style: normal; }

.bw-topo-acoes { display: flex; align-items: center; gap: 8px; }

.bw-btn-ghost, .bw-btn-roxo, .bw-btn-verde {
    display: inline-block; text-align: center; text-decoration: none;
    border: 0; border-radius: 30px; cursor: pointer;
    font-family: inherit; font-weight: 700; font-size: 12.5px;
    padding: 10px 18px; letter-spacing: .3px;
}
.bw-btn-ghost { background: transparent; border: 1px solid var(--bw-linha); color: var(--bw-texto); }
.bw-btn-ghost:hover { border-color: rgba(255,255,255,.28); }
.bw-btn-roxo { background: var(--bw-roxo); color: #fff; }
.bw-btn-roxo:hover { filter: brightness(1.1); }
.bw-btn-verde {
    background: var(--bw-verde); color: #032b12;
    box-shadow: 0 0 28px -6px rgba(34,224,106,.65);
}
.bw-btn-grande { padding: 16px 28px; font-size: 15px; width: 100%; max-width: 380px; }
.bw-btn-largo { width: 100%; padding: 15px; font-size: 14.5px; }

.bw-saldo {
    background: rgba(0,0,0,.3); border: 1px solid var(--bw-linha);
    border-radius: 30px; padding: 6px 15px; text-decoration: none; text-align: right;
}
.bw-saldo span { display: block; font-size: 8.5px; color: var(--bw-dim); text-transform: uppercase; letter-spacing: .5px; }
.bw-saldo b { font-size: 13.5px; color: var(--bw-verde); }

/* ---------- hero ---------- */
.bw-hero { max-width: 720px; margin: 0 auto; padding: 26px 16px 34px; text-align: center; }

.bw-pill {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(34,224,106,.1); border: 1px solid rgba(34,224,106,.3);
    border-radius: 30px; padding: 7px 16px; font-size: 12.5px;
    color: var(--bw-verde); margin-bottom: 18px;
}
.bw-pill b { color: #fff; }
.bw-pill-dot {
    width: 8px; height: 8px; border-radius: 50%; background: var(--bw-verde);
    box-shadow: 0 0 0 0 rgba(34,224,106,.7); animation: bwPulse 1.9s infinite;
}
@keyframes bwPulse {
    70%  { box-shadow: 0 0 0 8px rgba(34,224,106,0); }
    100% { box-shadow: 0 0 0 0 rgba(34,224,106,0); }
}

.bw-hero h1 {
    font-size: 30px; font-weight: 900; line-height: 1.14;
    letter-spacing: -1px; margin: 0 0 20px;
}
.bw-hero-img {
    width: 100%; max-width: 440px; border-radius: 16px;
    display: block; margin: 0 auto 20px;
    box-shadow: 0 18px 50px -18px rgba(0,0,0,.85);
}
.bw-hero-sub { font-size: 14px; color: var(--bw-dim); margin: 0 0 22px; }

/* tabuleiro desenhado, quando não há imagem enviada */
.bw-hero-fake {
    background: linear-gradient(160deg, #142a7a, #0a1440);
    border: 1px solid rgba(124,92,252,.35);
    border-radius: 16px; padding: 22px;
    max-width: 380px; margin: 0 auto 20px;
    box-shadow: 0 18px 50px -18px rgba(0,0,0,.85);
}
.bw-grid-demo { display: grid; grid-template-columns: repeat(8, 1fr); gap: 4px; }
.bw-grid-demo span { aspect-ratio: 1; border-radius: 4px; background: rgba(255,255,255,.05); }
.bw-grid-demo .c1 { background: #ff5f5f; }
.bw-grid-demo .c2 { background: #3ba1ff; }
.bw-grid-demo .c3 { background: #ffc93c; }
.bw-grid-demo .c4 { background: #a855f7; }
.bw-grid-demo .c5 { background: #22e06a; }
.bw-grid-demo .c6 { background: #ff8a3d; }
.bw-grid-demo .c7 { background: #2dd4bf; }
.bw-grid-demo span:not(.c0) { box-shadow: inset 0 -3px 0 rgba(0,0,0,.22), inset 0 2px 0 rgba(255,255,255,.25); }

/* ---------- estatísticas ---------- */
.bw-stats {
    max-width: 720px; margin: 0 auto 34px; padding: 0 16px;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
}
.bw-stat {
    background: var(--bw-card); border: 1px solid var(--bw-linha);
    border-radius: 14px; padding: 15px 10px; text-align: center;
}
.bw-stat b { display: block; font-size: 19px; font-weight: 800; color: var(--bw-verde); }
.bw-stat span { font-size: 9.5px; color: var(--bw-dim); text-transform: uppercase; letter-spacing: .5px; }

/* ---------- seções ---------- */
.bw-secao { max-width: 720px; margin: 0 auto; padding: 34px 16px; }

/* Faixa da seção com a grade mais visível, separando do resto */
.bw-secao-grade {
    background-image:
        linear-gradient(rgba(124,92,252,.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(124,92,252,.1) 1px, transparent 1px);
    background-size: 26px 26px;
    border-top: 1px solid var(--bw-linha);
    border-bottom: 1px solid var(--bw-linha);
}
.bw-secao-hd { text-align: center; margin-bottom: 24px; }
.bw-ico { color: var(--bw-verde); display: flex; justify-content: center; margin-bottom: 10px; }
.bw-secao-hd h2 { font-size: 25px; font-weight: 900; letter-spacing: -.6px; margin: 0 0 5px; }
.bw-secao-hd p { font-size: 13.5px; color: var(--bw-dim); margin: 0; }

.bw-passos {
    display: flex; gap: 12px;
    overflow-x: auto; scroll-snap-type: x mandatory;
    scrollbar-width: none;
    margin: 0 -16px; padding: 0 16px 6px;
}
.bw-passos::-webkit-scrollbar { display: none; }

.bw-passo {
    flex: 0 0 84%; max-width: 320px; scroll-snap-align: center;
    background: var(--bw-card); border: 1px solid var(--bw-linha);
    border-radius: 14px; padding: 16px 16px 18px 56px; position: relative;
}
.bw-passo-n {
    position: absolute; left: 16px; top: 16px; z-index: 2;
    width: 30px; height: 30px; border-radius: 50%;
    background: var(--bw-verde); color: #032b12;
    font-weight: 800; font-size: 13.5px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 0 4px rgba(6,10,28,.85);
}
.bw-passo strong { display: block; font-size: 15px; margin-bottom: 4px; }
.bw-passo p { font-size: 12.5px; color: var(--bw-dim); margin: 0; line-height: 1.55; }

/* ---------- CTA ---------- */
.bw-cta {
    max-width: 720px; margin: 0 auto; padding: 40px 16px 46px;
    text-align: center; border-top: 1px solid var(--bw-linha);
}
.bw-cta h2 { font-size: 26px; font-weight: 900; letter-spacing: -.7px; margin: 0 0 8px; }
.bw-cta p { font-size: 14px; color: var(--bw-dim); margin: 0 0 22px; }

/* ---------- rodapé ---------- */
.bw-rodape {
    text-align: center; padding: 26px 16px 34px;
    border-top: 1px solid var(--bw-linha);
    background: rgba(10,20,64,.5);
}
.bw-rodape-logo { display: inline-block; margin-bottom: 12px; }
img.bw-rodape-logo { height: 36px; }
.bw-rodape p { font-size: 12px; color: var(--bw-dim); margin: 0 0 5px; }
.bw-rodape-aviso { font-size: 11px !important; opacity: .7; }
.bw-rodape-links { margin-top: 12px !important; display: flex; gap: 16px; justify-content: center; }
.bw-rodape-links a { font-size: 12px; color: var(--bw-dim); text-decoration: none; }
.bw-rodape-links a:hover { color: var(--bw-texto); }

/* ---------- login e cadastro ---------- */
.bw-auth {
    min-height: 100vh; display: flex; flex-direction: column;
    align-items: center; justify-content: center; padding: 26px 18px;
}
.bw-auth-logo { margin-bottom: 22px; text-decoration: none; }
.bw-auth-logo img { height: 52px; display: block; }
.bw-auth-logo .bw-logo-txt { font-size: 27px; }

.bw-auth-card {
    background: rgba(16,26,58,.92); border: 1px solid var(--bw-linha);
    border-radius: 18px; padding: 26px 22px;
    width: 100%; max-width: 380px;
    box-shadow: 0 22px 60px -20px rgba(0,0,0,.8);
}
.bw-auth-card h1 { font-size: 24px; font-weight: 800; letter-spacing: -.5px; margin: 0 0 5px; }
.bw-auth-sub { font-size: 13px; color: var(--bw-dim); margin: 0 0 20px; }

.bw-auth-card input[type=text],
.bw-auth-card input[type=tel],
.bw-auth-card input[type=password] {
    width: 100%; padding: 14px 15px; margin-bottom: 12px;
    border-radius: 12px; font-size: 14.5px; font-family: inherit;
    border: 1px solid var(--bw-linha); background: rgba(0,0,0,.28); color: var(--bw-texto);
}
.bw-auth-card input::placeholder { color: rgba(139,154,196,.75); }
.bw-auth-card input:focus { outline: none; border-color: var(--bw-roxo); }

.bw-senha-wrap { position: relative; }
.bw-senha-wrap input { padding-right: 48px !important; }
.bw-olho {
    position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
    margin-top: -6px; background: none; border: 0; cursor: pointer;
    color: var(--bw-dim); padding: 8px; line-height: 0;
}
.bw-olho.on { color: var(--bw-roxo); }

.bw-auth-troca { text-align: center; font-size: 13px; color: var(--bw-dim); margin: 16px 0 0; }
.bw-auth-troca a { color: #43b3ff; text-decoration: none; font-weight: 600; }

.bw-alerta { padding: 11px 13px; border-radius: 10px; font-size: 12.5px; margin-bottom: 13px; }
.bw-alerta.erro { background: rgba(255,95,95,.14); border: 1px solid rgba(255,95,95,.3); color: #ffb3b3; }
.bw-alerta.ok   { background: rgba(34,224,106,.12); border: 1px solid rgba(34,224,106,.3); color: #86efac; }

/* ---------- telas maiores ---------- */
@media (min-width: 620px) {
    .bw-hero h1 { font-size: 40px; }
    .bw-passos { grid-template-columns: repeat(2, 1fr); }
}

/* ---------------------------------------------------------------------
   Barra inferior (só para quem está logado) e área principal
   --------------------------------------------------------------------- */

.bw-main { min-height: 50vh; }

/* Espaço para a barra não cobrir o conteúdo do fim da página */
body.bw-com-barra { padding-bottom: 68px; }

/* Botão de "+" ao lado do saldo no topo */
.bw-mais {
    width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
    background: var(--bw-verde); color: #032b12;
    font-size: 21px; font-weight: 700; line-height: 1;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none;
}

/* ---------------------------------------------------------------------
   Compatibilidade: as páginas herdadas (depósito, saque, conta, bônus,
   afiliados) usam estas classes do tema antigo. Aqui elas ganham a
   aparência do site novo, para não precisarmos reescrever cada página.
   --------------------------------------------------------------------- */

.block, section.block {
    max-width: 720px; margin: 0 auto; padding: 18px 16px;
}
.block-hd h2 { font-size: 20px; font-weight: 800; letter-spacing: -.4px; margin: 0 0 14px; }

.card, .promo-card {
    background: var(--bw-card); border: 1px solid var(--bw-linha);
    border-radius: 14px; padding: 15px; margin-bottom: 12px;
}

.btn, .btn-primary {
    display: inline-block; text-align: center; text-decoration: none;
    border: 0; border-radius: 30px; cursor: pointer;
    font-family: inherit; font-weight: 700; font-size: 13.5px; padding: 13px 22px;
    background: var(--bw-roxo); color: #fff;
}
.btn-primary { background: var(--bw-verde); color: #032b12; }
.btn-ghost {
    background: transparent; border: 1px solid var(--bw-linha); color: var(--bw-texto);
}

input[type=text], input[type=tel], input[type=email],
input[type=password], input[type=number], select, textarea {
    font-family: inherit; color: var(--bw-texto);
    background: rgba(0,0,0,.28); border: 1px solid var(--bw-linha);
    border-radius: 12px; padding: 13px 14px; font-size: 14px;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--bw-roxo); }

.alert {
    padding: 12px 14px; border-radius: 12px; font-size: 13px; margin-bottom: 14px;
    border: 1px solid transparent;
}
.alert-success { background: rgba(34,224,106,.12); border-color: rgba(34,224,106,.3); color: #86efac; }
.alert-error, .alert-danger { background: rgba(255,95,95,.13); border-color: rgba(255,95,95,.3); color: #ffb3b3; }
.alert-info { background: rgba(124,92,252,.12); border-color: rgba(124,92,252,.3); color: #c7bcff; }
.alert-warning { background: rgba(255,201,60,.12); border-color: rgba(255,201,60,.3); color: #ffdf99; }

table { width: 100%; border-collapse: collapse; font-size: 13px; }
th { text-align: left; font-size: 10.5px; text-transform: uppercase;
     letter-spacing: .5px; color: var(--bw-dim); padding: 8px 6px; }
td { padding: 10px 6px; border-top: 1px solid var(--bw-linha); }

/* ---------------------------------------------------------------------
   Banners da landing (carrossel horizontal)
   --------------------------------------------------------------------- */

.lp-banners { max-width: 720px; margin: 0 auto; padding: 14px 0 6px; }

.lp-carrossel {
    display: flex; gap: 10px;
    overflow-x: auto; scroll-snap-type: x mandatory;
    scrollbar-width: none; padding: 0 16px;
}
.lp-carrossel::-webkit-scrollbar { display: none; }

.lp-banner {
    flex: 0 0 100%; scroll-snap-align: center;
    position: relative; border-radius: 14px; overflow: hidden;
    text-decoration: none; color: inherit;
    border: 1px solid var(--bw-linha);
}
.lp-banner img {
    width: 100%; aspect-ratio: 21/9; object-fit: cover; display: block;
}
.lp-banner-txt {
    position: absolute; left: 0; right: 0; bottom: 0;
    padding: 26px 14px 12px;
    background: linear-gradient(180deg, transparent, rgba(0,0,0,.82));
}
.lp-banner-txt strong { display: block; font-size: 15px; font-weight: 800; letter-spacing: -.3px; }
.lp-banner-txt span { font-size: 11.5px; opacity: .85; }

.lp-dots { display: flex; gap: 6px; justify-content: center; margin-top: 10px; }
.lp-dots span {
    width: 6px; height: 6px; border-radius: 50%;
    background: rgba(255,255,255,.25); transition: all .2s;
}
.lp-dots span.on { background: var(--bw-verde); width: 18px; border-radius: 4px; }

/* Passo com banner: a imagem ocupa o topo do card, como no mercado */
.bw-passo.com-img { padding: 0 0 16px; overflow: hidden; }
.bw-passo-img {
    width: 100%; aspect-ratio: 16/7; object-fit: cover;
    display: block; margin-bottom: 13px;
}
.bw-passo.com-img strong,
.bw-passo.com-img p { padding: 0 15px; }
/* Com imagem o número sai do canto e vira selo sobre o banner */
.bw-passo.com-img .bw-passo-n {
    top: auto; left: auto; right: 12px;
    margin-top: -40px; position: relative; float: right;
    width: 34px; height: 34px; font-size: 15px;
}

/* Blocos livres */
.lp-bloco { text-align: center; }
.lp-bloco-img { width: 100%; max-width: 420px; border-radius: 14px; display: block; margin: 0 auto 14px; }
.lp-bloco h2 { font-size: 22px; font-weight: 800; letter-spacing: -.5px; margin: 0 0 8px; }
.lp-bloco p { font-size: 13.5px; color: var(--bw-dim); margin: 0 0 16px; line-height: 1.6; }

/* ---------------------------------------------------------------------
   IMAGENS — nunca estouram o layout
   Qualquer imagem enviada pelo admin, em qualquer tamanho ou proporção,
   é cortada para caber. Sem isso, uma foto grande empurra a página
   inteira para o lado.
   --------------------------------------------------------------------- */

body.bw img { max-width: 100%; height: auto; }

/* Banner do passo: altura fixa, imagem cortada no centro */
.bw-passo .bw-passo-img,
.bw-passo img {
    width: 100% !important;
    height: 140px !important;
    aspect-ratio: auto !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block;
    border-radius: 0;
}

/* Banner do carrossel */
.lp-banner img {
    width: 100% !important;
    height: 168px !important;
    aspect-ratio: auto !important;
    object-fit: cover !important;
    object-position: center !important;
}

/* Imagem do topo e dos blocos livres */
.bw-hero-img, .lp-bloco-img {
    width: 100%; max-width: 420px; height: auto;
    max-height: 300px; object-fit: contain;
    margin-left: auto; margin-right: auto;
}

/* Logo: altura fixa, largura acompanha */
.bw-logo img { height: 34px !important; width: auto !important; max-width: 150px; object-fit: contain; }
.bw-auth-logo img { height: 52px !important; width: auto !important; max-width: 220px; object-fit: contain; }
img.bw-rodape-logo { height: 34px !important; width: auto !important; object-fit: contain; }

/* ---------------------------------------------------------------------
   Fundo quadriculado também nas telas de login e cadastro
   --------------------------------------------------------------------- */

body.bw.bw-login, .bw-auth {
    background-image:
        linear-gradient(rgba(124,92,252,.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(124,92,252,.08) 1px, transparent 1px);
    background-size: 30px 30px;
}

/* Nada de rolagem lateral em nenhuma tela */
html, body.bw { overflow-x: hidden; max-width: 100%; }

/* ---------------------------------------------------------------------
   BARRA INFERIOR — 5 itens, com "Jogar" elevado no centro
   --------------------------------------------------------------------- */

body.bw-com-barra { padding-bottom: 84px; }

.bw-barra {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
    display: grid; grid-template-columns: repeat(5, 1fr);
    align-items: end;
    background: rgba(8,14,38,.97);
    backdrop-filter: blur(14px);
    border-top: 1px solid var(--bw-linha);
    padding-bottom: env(safe-area-inset-bottom);
}
.bw-barra a {
    display: flex; flex-direction: column; align-items: center; gap: 4px;
    padding: 11px 2px 10px; text-decoration: none;
    color: var(--bw-dim); font-size: 10px; font-weight: 600;
}
.bw-barra a.on { color: var(--bw-verde); }
.bw-barra a.on svg { filter: drop-shadow(0 0 6px rgba(34,224,106,.5)); }

/* O botão do meio sobe e ganha o anel verde */
.bw-barra-jogar { position: relative; color: var(--bw-verde) !important; }
.bw-jogar-circ {
    width: 54px; height: 54px; border-radius: 50%;
    background: #0b1233; border: 2px solid rgba(34,224,106,.55);
    display: flex; align-items: center; justify-content: center;
    margin-top: -26px; margin-bottom: 2px;
    box-shadow: 0 0 22px -4px rgba(34,224,106,.55), 0 6px 16px rgba(0,0,0,.6);
}
.bw-barra-jogar.on .bw-jogar-circ {
    border-color: var(--bw-verde);
    box-shadow: 0 0 28px -2px rgba(34,224,106,.8), 0 6px 16px rgba(0,0,0,.6);
}

/* ---------------------------------------------------------------------
   BANNER DO TOPO DAS TELAS INTERNAS
   --------------------------------------------------------------------- */

.lp-topo-banner {
    display: block; width: 100%; max-width: 720px;
    margin: 0 auto 16px; text-decoration: none;
    border-radius: 0 0 16px 16px; overflow: hidden;
}
.lp-topo-banner img {
    width: 100% !important; height: 132px !important;
    object-fit: cover !important; object-position: center !important;
    display: block;
}

/* Cartão de saldo grande, usado nas telas internas */
.bw-saldo-card {
    display: flex; align-items: center; gap: 13px;
    background: var(--bw-card); border: 1px solid var(--bw-linha);
    border-radius: 14px; padding: 14px; margin-bottom: 14px;
}
.bw-saldo-ico {
    width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
    background: rgba(34,224,106,.13); border: 1px solid rgba(34,224,106,.4);
    color: var(--bw-verde); font-weight: 800; font-size: 15px;
    display: flex; align-items: center; justify-content: center;
}
.bw-saldo-card div span {
    display: block; font-size: 10px; color: var(--bw-dim);
    text-transform: uppercase; letter-spacing: .6px;
}
.bw-saldo-card div b { font-size: 23px; font-weight: 800; letter-spacing: -.5px; }

/* Fichas de valor rápido (depósito e entrada do jogo) */
.bw-fichas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin-bottom: 12px; }
.bw-ficha-v {
    position: relative; padding: 15px 6px; border-radius: 12px; cursor: pointer;
    border: 1px solid var(--bw-linha); background: var(--bw-card);
    color: inherit; font-family: inherit; font-size: 15px; font-weight: 800;
    text-align: center;
}
.bw-ficha-v.on { border-color: var(--bw-verde); background: rgba(34,224,106,.12); color: var(--bw-verde); }
.bw-ficha-tag {
    position: absolute; top: -9px; left: 50%; transform: translateX(-50%);
    font-size: 8.5px; font-weight: 800; letter-spacing: .4px;
    padding: 2px 9px; border-radius: 20px; white-space: nowrap;
    text-transform: uppercase;
}
.bw-ficha-tag.min   { background: #22e06a; color: #032b12; }
.bw-ficha-tag.medio { background: #f59e0b; color: #2b1a02; }
.bw-ficha-tag.top   { background: #ef4444; color: #fff; }
.bw-ficha-tag.bonus { background: #7c5cfc; color: #fff; }
.bw-ficha-v.tem-bonus { border-color: rgba(255,201,60,.55); }

/* Caixa de destaque (recompensa mínima, avisos) */
.bw-destaque {
    border: 1px solid rgba(34,224,106,.35); border-radius: 12px;
    background: rgba(34,224,106,.08); padding: 14px; text-align: center;
    margin-bottom: 14px;
}
.bw-destaque span { font-size: 12.5px; color: var(--bw-dim); display: block; }
.bw-destaque b { font-size: 22px; font-weight: 800; color: var(--bw-amarelo); }

.bw-aviso-box {
    border: 1px solid rgba(255,201,60,.35); border-radius: 12px;
    background: rgba(255,201,60,.07); padding: 12px 14px;
    font-size: 12.5px; color: #ffdf99; line-height: 1.5; margin-bottom: 14px;
}

/* ---------------------------------------------------------------------
   ÍCONES — trava de tamanho
   Os ícones vinham dimensionados pelo CSS antigo do cassino. Sem ele,
   um SVG sem width/height estica até ocupar a tela inteira (era o que
   quebrava a página de conta). Aqui todo SVG ganha um teto.
   --------------------------------------------------------------------- */

body.bw svg { max-width: 100%; max-height: 100%; vertical-align: middle; }

/* Ícone dentro de botão, link ou item de lista: tamanho de ícone mesmo */
body.bw .btn svg,
body.bw a svg,
body.bw button svg,
body.bw li svg,
body.bw td svg,
body.bw .acc-hero svg,
body.bw .acc-tabs svg {
    width: 18px !important; height: 18px !important;
    flex: 0 0 auto; display: inline-block;
}

/* A barra de baixo e o botão de jogar têm tamanhos próprios */
body.bw .bw-barra a svg { width: 20px !important; height: 20px !important; }
body.bw .bw-jogar-circ svg { width: 24px !important; height: 24px !important; }

/* Nada de animação herdada girando sem motivo */
body.bw .bw-jogar-circ,
body.bw .bw-jogar-circ svg,
body.bw .bw-barra svg { animation: none !important; transform: none !important; }

/* ---------------------------------------------------------------------
   PERFIL
   --------------------------------------------------------------------- */

.pf-wrap { max-width: 640px; margin: 0 auto; padding: 0 16px 20px; }

.pf-card {
    background: var(--bw-card); border: 1px solid var(--bw-linha);
    border-radius: 16px; padding: 15px; margin-bottom: 12px;
}
.pf-card-hd {
    display: flex; align-items: center; justify-content: space-between;
    font-size: 11px; font-weight: 700; color: var(--bw-dim);
    text-transform: uppercase; letter-spacing: .7px; margin-bottom: 11px;
}
.pf-card-hd a { color: var(--bw-verde); text-decoration: none; font-size: 11px; }
.pf-vazio { font-size: 12.5px; color: var(--bw-dim); text-align: center; padding: 16px 0; margin: 0; }

/* cartão do jogador */
.pf-eu { display: flex; align-items: center; gap: 13px; }
.pf-av {
    width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0;
    background: linear-gradient(135deg, #6d8bff, #7c5cfc);
    color: #fff; font-weight: 800; font-size: 21px;
    display: flex; align-items: center; justify-content: center;
}
.pf-eu-info strong { display: block; font-size: 17px; letter-spacing: -.3px; }
.pf-eu-info span { font-size: 13px; color: var(--bw-dim); }

/* saldo */
.pf-saldo {
    background: linear-gradient(135deg, rgba(34,224,106,.15), rgba(34,224,106,.03));
    border: 1px solid rgba(34,224,106,.32);
    border-radius: 16px; padding: 16px; margin-bottom: 12px;
}
.pf-saldo > div:first-child span {
    font-size: 10.5px; color: var(--bw-dim);
    text-transform: uppercase; letter-spacing: .6px; display: block;
}
.pf-saldo b { font-size: 30px; font-weight: 800; letter-spacing: -.8px; color: var(--bw-verde); }
.pf-saldo-btns { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-top: 13px; }

.pf-btn-verde, .pf-btn-linha {
    display: block; text-align: center; text-decoration: none;
    padding: 13px; border-radius: 12px; border: 0; cursor: pointer;
    font-family: inherit; font-weight: 700; font-size: 13.5px;
}
.pf-btn-verde { background: var(--bw-verde); color: #032b12; }
.pf-btn-verde.sm { padding: 11px 15px; font-size: 12.5px; }
.pf-btn-verde.largo { width: 100%; margin-top: 4px; }
.pf-btn-linha { background: transparent; border: 1px solid var(--bw-linha); color: var(--bw-texto); }

/* números */
.pf-nums { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 12px; }
.pf-num {
    background: var(--bw-card); border: 1px solid var(--bw-linha);
    border-radius: 14px; padding: 14px; text-align: center;
}
.pf-num b { display: block; font-size: 19px; font-weight: 800; letter-spacing: -.4px; }
.pf-num span { font-size: 10px; color: var(--bw-dim); text-transform: uppercase; letter-spacing: .4px; }

/* link */
.pf-link-row { display: flex; gap: 8px; }
.pf-link-row input {
    flex: 1; min-width: 0; padding: 11px; border-radius: 11px; font-size: 12px;
    border: 1px solid var(--bw-linha); background: rgba(0,0,0,.3);
    color: inherit; font-family: inherit;
}
.pf-mais {
    display: block; margin-top: 11px; font-size: 12px;
    color: var(--bw-verde); text-decoration: none;
}

/* transações */
.pf-tx {
    display: flex; align-items: center; justify-content: space-between;
    padding: 11px 0; border-top: 1px solid var(--bw-linha);
}
.pf-tx:first-of-type { border-top: 0; }
.pf-tx strong { display: block; font-size: 13.5px; }
.pf-tx > div:first-child span { font-size: 11px; color: var(--bw-dim); }
.pf-tx-dir { text-align: right; }
.pf-tx-dir b { display: block; font-size: 14px; }
.pf-tx-dir b.pos { color: var(--bw-verde); }
.pf-tx-dir b.neg { color: #ff8f8f; }
.pf-tag {
    font-size: 9px; text-transform: uppercase; letter-spacing: .4px;
    padding: 2px 7px; border-radius: 20px; background: rgba(255,255,255,.08);
    color: var(--bw-dim);
}
.pf-tag.ok   { background: rgba(34,224,106,.16); color: #86efac; }
.pf-tag.pend { background: rgba(255,201,60,.16); color: #ffdf99; }
.pf-tag.nao  { background: rgba(255,95,95,.16); color: #ffb3b3; }

/* dobras */
.pf-abre {
    width: 100%; display: flex; align-items: center; justify-content: space-between;
    background: none; border: 0; cursor: pointer; padding: 0;
    color: var(--bw-texto); font-family: inherit; font-size: 13.5px; font-weight: 700;
}
.pf-abre span { color: var(--bw-dim); }
.pf-dobra { display: none; padding-top: 14px; }
.pf-dobra.on { display: block; }
.pf-dobra input {
    width: 100%; padding: 13px; margin-bottom: 10px; border-radius: 12px;
    font-size: 13.5px; font-family: inherit;
    border: 1px solid var(--bw-linha); background: rgba(0,0,0,.3); color: inherit;
}

.pf-sair {
    display: block; text-align: center; text-decoration: none;
    padding: 15px; border-radius: 14px; margin-top: 6px;
    background: linear-gradient(135deg, #ff6b6b, #e0345c); color: #fff;
    font-weight: 800; font-size: 13.5px; letter-spacing: .5px;
}

/* ---------------------------------------------------------------------
   TOPO DAS TELAS DA CONTA (account-nav)
   --------------------------------------------------------------------- */

.an-topo {
    max-width: 640px; margin: 0 auto 14px; padding: 0 16px;
}
.an-saldo {
    background: linear-gradient(135deg, rgba(34,224,106,.14), rgba(34,224,106,.03));
    border: 1px solid rgba(34,224,106,.3);
    border-radius: 16px; padding: 15px; margin-bottom: 10px;
}
.an-saldo span {
    display: block; font-size: 10.5px; color: var(--bw-dim);
    text-transform: uppercase; letter-spacing: .6px;
}
.an-saldo b {
    font-size: 28px; font-weight: 800; letter-spacing: -.7px; color: var(--bw-verde);
}
.an-btns { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.an-btn {
    display: block; text-align: center; text-decoration: none;
    padding: 12px; border-radius: 12px;
    border: 1px solid var(--bw-linha); background: var(--bw-card);
    color: var(--bw-texto); font-weight: 700; font-size: 13.5px;
}
.an-btn.on { background: var(--bw-verde); border-color: var(--bw-verde); color: #032b12; }

/* O bloco de conteúdo das telas herdadas */
.bw-main .block, .bw-main section.block { padding-top: 4px; }

/* ---------------------------------------------------------------------
   DEPÓSITO E SAQUE
   --------------------------------------------------------------------- */

.dp-wrap, .sq-wrap { max-width: 640px; margin: 0 auto; padding: 0 16px 20px; }

.dp-label, .sq-label {
    display: block; font-size: 10.5px; color: var(--bw-dim);
    text-transform: uppercase; letter-spacing: .6px; margin: 16px 0 9px;
}

/* fichas de valor */
.dp-fichas { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.dp-ficha {
    position: relative; padding: 16px 6px; border-radius: 13px; cursor: pointer;
    border: 1px solid var(--bw-linha); background: var(--bw-card);
    color: var(--bw-texto); font-family: inherit; font-size: 15.5px; font-weight: 800;
    text-align: center; transition: border-color .15s, background .15s, transform .1s;
}
.dp-ficha:active { transform: scale(.97); }
.dp-ficha.on {
    border-color: var(--bw-verde); background: rgba(34,224,106,.12); color: var(--bw-verde);
}
.dp-ficha.tem-bonus { border-color: rgba(255,201,60,.5); }
.dp-tag {
    position: absolute; top: -9px; left: 50%; transform: translateX(-50%);
    font-size: 8.5px; font-weight: 800; letter-spacing: .4px; text-transform: uppercase;
    padding: 2px 9px; border-radius: 20px; white-space: nowrap;
}
.dp-tag.min   { background: #22e06a; color: #032b12; }
.dp-tag.medio { background: #f59e0b; color: #2b1a02; }
.dp-tag.top   { background: #ef4444; color: #fff; }
.dp-tag.bonus { background: #7c5cfc; color: #fff; }

/* campo de valor */
.dp-input-valor, .sq-input-valor {
    display: flex; align-items: center; gap: 4px;
    border: 1px solid var(--bw-linha); background: rgba(0,0,0,.3);
    border-radius: 13px; padding: 4px 14px;
}
.dp-input-valor span, .sq-input-valor span {
    font-size: 15px; font-weight: 700; color: var(--bw-dim); flex-shrink: 0;
}
.dp-input-valor input, .sq-input-valor input {
    flex: 1; min-width: 0; border: 0 !important; background: transparent !important;
    padding: 14px 4px !important; font-size: 17px; font-weight: 700;
    color: var(--bw-texto); font-family: inherit;
}
.dp-input-valor input:focus, .sq-input-valor input:focus { outline: none; }

/* campos comuns do saque */
.sq-campo {
    display: flex; align-items: center; gap: 10px;
    border: 1px solid var(--bw-linha); background: rgba(0,0,0,.3);
    border-radius: 13px; padding: 3px 14px; margin-bottom: 11px;
}
.sq-campo strong {
    font-size: 11px; color: var(--bw-dim); flex-shrink: 0;
    text-transform: uppercase; letter-spacing: .5px;
}
.sq-campo input {
    flex: 1; min-width: 0; border: 0 !important; background: transparent !important;
    padding: 14px 0 !important; font-size: 14px; color: var(--bw-texto); font-family: inherit;
}
.sq-campo input:focus { outline: none; }

/* botão principal */
.dp-btn, .sq-btn, button.dp-btn, button.sq-btn {
    width: 100%; padding: 16px; margin-top: 16px;
    border: 0; border-radius: 30px; cursor: pointer;
    background: linear-gradient(135deg, #22e06a, #12b455); color: #032b12;
    font-family: inherit; font-weight: 800; font-size: 15px;
    box-shadow: 0 0 26px -6px rgba(34,224,106,.6);
}
.dp-btn:disabled, .sq-btn:disabled { opacity: .45; box-shadow: none; cursor: not-allowed; }

/* PIX gerado */
.dp-qr {
    background: #fff; border-radius: 16px; padding: 14px;
    max-width: 250px; margin: 0 auto 16px;
}
.dp-qr img { width: 100%; display: block; }
.dp-copia { display: flex; gap: 8px; margin-bottom: 8px; }
.dp-copia input {
    flex: 1; min-width: 0; padding: 12px; border-radius: 11px; font-size: 11.5px;
    border: 1px solid var(--bw-linha); background: rgba(0,0,0,.3);
    color: inherit; font-family: monospace;
}
.dp-espera {
    text-align: center; font-size: 12.5px; color: var(--bw-dim);
    padding: 14px 0; display: flex; align-items: center;
    justify-content: center; gap: 9px;
}
.dp-espera::before {
    content: ''; width: 14px; height: 14px; border-radius: 50%;
    border: 2px solid rgba(34,224,106,.3); border-top-color: var(--bw-verde);
    animation: dpGira .8s linear infinite;
}
@keyframes dpGira { to { transform: rotate(360deg); } }

/* Título das telas internas */
.bw-main h1 { font-size: 21px; font-weight: 800; letter-spacing: -.5px; margin: 0 0 5px; }
.bw-main h2 { font-size: 17px; font-weight: 800; letter-spacing: -.3px; }
.bw-main .lead, .bw-main .muted { font-size: 12.5px; color: var(--bw-dim); }

/* ---------------------------------------------------------------------
   CABEÇALHO DA ÁREA DO JOGADOR (account-nav)
   --------------------------------------------------------------------- */

.an-saldo {
    max-width: 640px; margin: 0 auto 14px; padding: 16px;
    background: linear-gradient(135deg, rgba(34,224,106,.14), rgba(34,224,106,.03));
    border: 1px solid rgba(34,224,106,.3); border-radius: 16px;
}
.an-saldo > div:first-child span {
    display: block; font-size: 10.5px; color: var(--bw-dim);
    text-transform: uppercase; letter-spacing: .6px;
}
.an-saldo b { font-size: 28px; font-weight: 800; letter-spacing: -.8px; color: var(--bw-verde); }
.an-btns { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-top: 12px; }
.an-btn {
    display: block; text-align: center; text-decoration: none;
    padding: 12px; border-radius: 12px; font-weight: 700; font-size: 13px;
}
.an-btn.verde { background: var(--bw-verde); color: #032b12; }
.an-btn.linha { border: 1px solid var(--bw-linha); color: var(--bw-texto); }

/* ---------------------------------------------------------------------
   DEPÓSITO
   --------------------------------------------------------------------- */

.dp-label {
    display: block; font-size: 11px; color: var(--bw-dim);
    text-transform: uppercase; letter-spacing: .7px; margin: 16px 0 12px;
}

.dp-fichas { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.dp-ficha {
    position: relative; padding: 16px 6px; border-radius: 13px; cursor: pointer;
    border: 1px solid var(--bw-linha); background: var(--bw-card);
    color: var(--bw-texto); font-family: inherit; font-size: 16px; font-weight: 800;
    text-align: center; transition: border-color .15s, background .15s, transform .1s;
}
.dp-ficha:active { transform: scale(.97); }
.dp-ficha.on { border-color: var(--bw-verde); background: rgba(34,224,106,.13); color: var(--bw-verde); }
.dp-ficha.tem-bonus { border-color: rgba(255,201,60,.5); }
.dp-ficha.tem-bonus.on { border-color: var(--bw-amarelo); background: rgba(255,201,60,.12); color: var(--bw-amarelo); }

.dp-tag {
    position: absolute; top: -9px; left: 50%; transform: translateX(-50%);
    font-size: 8.5px; font-weight: 800; letter-spacing: .4px;
    padding: 3px 10px; border-radius: 20px; white-space: nowrap; text-transform: uppercase;
}
.dp-tag.min   { background: #22e06a; color: #032b12; }
.dp-tag.medio { background: #f59e0b; color: #2b1a02; }
.dp-tag.top   { background: #ef4444; color: #fff; }
.dp-tag.bonus { background: #7c5cfc; color: #fff; }

.dp-input-valor {
    display: flex; align-items: center; gap: 10px;
    border: 1px solid var(--bw-linha); background: rgba(0,0,0,.3);
    border-radius: 13px; padding: 4px 15px;
}
.dp-input-valor span { font-size: 15px; font-weight: 800; color: var(--bw-dim); }
.dp-input-valor input {
    flex: 1; min-width: 0; border: 0; background: transparent; color: inherit;
    font-family: inherit; font-size: 17px; font-weight: 700; padding: 14px 0;
}
.dp-input-valor input:focus { outline: none; }

.dp-erro { font-size: 12.5px; color: #ffb3b3; margin-top: 10px; }
.dp-erro:empty { display: none; }

.dp-btn-verde {
    border: 0; border-radius: 30px; cursor: pointer;
    background: var(--bw-verde); color: #032b12;
    font-family: inherit; font-weight: 800; font-size: 15px; padding: 16px;
    box-shadow: 0 0 28px -8px rgba(34,224,106,.8);
}
.dp-btn-verde.largo { width: 100%; margin-top: 18px; }
.dp-btn-verde:disabled { opacity: .5; box-shadow: none; }

.dp-aviso {
    font-size: 11.5px; color: var(--bw-dim); text-align: center;
    margin: 12px 0 0; line-height: 1.5;
}

/* ---------------------------------------------------------------------
   TELA DE JOGAR (torneio de blocos) — cara do site novo
   --------------------------------------------------------------------- */

.bl-wrap { max-width: 640px; margin: 0 auto; padding: 0 16px 20px; }

.bl-top { margin-bottom: 14px; }
.bl-label { font-size: 9.5px !important; letter-spacing: 1.2px !important; }
.bl-top strong { font-size: 19px !important; letter-spacing: -.4px; }

/* prêmio do dia */
.bl-premio-card {
    background: linear-gradient(135deg, rgba(124,92,252,.2), rgba(124,92,252,.04)) !important;
    border: 1px solid rgba(124,92,252,.42) !important;
    border-radius: 18px !important; padding: 22px 16px !important;
}
.bl-premio-card > span {
    font-size: 10.5px !important; letter-spacing: .8px !important;
}
.bl-premio-card b {
    font-size: 38px !important; letter-spacing: -1.2px !important;
    color: #b18bff !important; margin: 4px 0 6px !important;
}
.bl-premio-sub { font-size: 12px !important; }

.bl-mini-item {
    background: transparent !important; border: 0 !important;
    padding: 6px !important;
}
.bl-mini-item b { font-size: 26px !important; letter-spacing: -.6px; }
.bl-mini-item span { font-size: 9.5px !important; }

.bl-como { font-size: 13px !important; line-height: 1.7 !important; }

/* botão principal, roxo como no site de referência */
.bl-btn-jogar {
    background: linear-gradient(135deg, #8b5cf6, #6d28d9) !important;
    color: #fff !important; border-radius: 30px !important;
    font-size: 16px !important; padding: 17px !important;
    box-shadow: 0 0 32px -8px rgba(139,92,246,.9) !important;
}

/* ranking */
.bl-rank-item { padding: 11px 0 !important; }
.bl-rank-pos { font-size: 15px !important; }
.bl-rank-item b { color: #b18bff !important; }

/* tabuleiro */
#blCanvas { border-radius: 14px !important; border-color: rgba(124,92,252,.35) !important; }
.bl-controles button {
    border-radius: 14px !important; padding: 16px 0 !important;
    background: var(--bw-card) !important; border-color: var(--bw-linha) !important;
}
.bl-controles .bl-baixar {
    background: rgba(139,92,246,.18) !important; border-color: rgba(139,92,246,.5) !important;
}

/* ---------------------------------------------------------------------
   DEPÓSITO — demais peças da tela
   --------------------------------------------------------------------- */

.dp-wrap { max-width: 640px; margin: 0 auto; padding: 0 16px 20px; }

.dp-saldo {
    background: linear-gradient(135deg, rgba(34,224,106,.14), rgba(34,224,106,.03));
    border: 1px solid rgba(34,224,106,.3);
    border-radius: 16px; padding: 16px; margin-bottom: 6px; text-align: center;
}
.dp-saldo span {
    display: block; font-size: 10.5px; color: var(--bw-dim);
    text-transform: uppercase; letter-spacing: .6px;
}
.dp-saldo b {
    font-size: 28px; font-weight: 800; letter-spacing: -.8px; color: var(--bw-verde);
}

.dp-card {
    background: var(--bw-card); border: 1px solid var(--bw-linha);
    border-radius: 16px; padding: 18px 16px; margin-bottom: 12px; text-align: center;
}

.dp-btn-linha {
    display: block; width: 100%; text-align: center; text-decoration: none;
    padding: 14px; border-radius: 30px; margin-top: 10px;
    border: 1px solid var(--bw-linha); background: transparent;
    color: var(--bw-texto); font-family: inherit; font-weight: 700; font-size: 13.5px;
    cursor: pointer;
}

/* QR Code */
.dp-qr-card {
    background: var(--bw-card); border: 1px solid var(--bw-linha);
    border-radius: 18px; padding: 18px; margin-bottom: 12px; text-align: center;
}
.dp-qr-hd { font-size: 14px; font-weight: 700; margin-bottom: 14px; }
.dp-qr-img {
    background: #fff; border-radius: 14px; padding: 12px;
    max-width: 230px; margin: 0 auto 16px;
}
.dp-qr-img img, .dp-qr-img canvas, .dp-qr-img svg {
    width: 100% !important; height: auto !important; display: block;
}

.dp-copy-row { display: flex; gap: 8px; margin-bottom: 12px; }
.dp-copy-row input {
    flex: 1; min-width: 0; padding: 12px; border-radius: 11px; font-size: 11px;
    border: 1px solid var(--bw-linha); background: rgba(0,0,0,.32);
    color: inherit; font-family: inherit;
}

/* Aguardando pagamento */
.dp-aguardando {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    font-size: 12.5px; color: var(--bw-dim);
    padding: 13px; border-radius: 12px;
    background: rgba(255,201,60,.08); border: 1px solid rgba(255,201,60,.28);
    margin-bottom: 12px;
}
.dp-spin {
    width: 16px; height: 16px; flex-shrink: 0;
    border: 2px solid rgba(255,201,60,.3); border-top-color: var(--bw-amarelo);
    border-radius: 50%; animation: dpGira .8s linear infinite;
}
@keyframes dpGira { to { transform: rotate(360deg); } }

.dp-passos-pix {
    text-align: left; font-size: 12.5px; color: var(--bw-dim);
    line-height: 1.7; margin: 0; padding-left: 20px;
}
.dp-passos-pix li { margin-bottom: 4px; }

.dp-vazio { font-size: 13px; color: var(--bw-dim); margin: 0 0 14px; }

/* ---------------------------------------------------------------------
   TELA DE JOGAR — cartão único com banner, valores e prêmio
   --------------------------------------------------------------------- */

/* Cartão com borda luminosa girando em volta.
   O truque: um retângulo maior atrás, com um gradiente cônico que
   roda. Ele só aparece na moldura porque o cartão de dentro cobre o
   meio. Assim a luz "corre" pela borda sem precisar de imagem. */
.jg-card {
    position: relative;
    border-radius: 20px;
    margin-bottom: 14px;
    padding: 2px;                    /* espessura da moldura */
    background: rgba(124,92,252,.18);
    box-shadow: 0 14px 44px -18px rgba(0,0,0,.9);
    isolation: isolate;
}

.jg-card::before {
    content: '';
    position: absolute; inset: -60%;
    z-index: -1;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        transparent 250deg,
        #ff2d55 300deg,
        #ff7a3d 330deg,
        #ffc93c 350deg,
        transparent 360deg
    );
    animation: jgGira 3s linear infinite;
}

/* O miolo: cobre o gradiente e deixa só a moldura acesa */
.jg-card::after {
    content: '';
    position: absolute; inset: 2px;
    border-radius: 18px;
    background: var(--bw-card);
    z-index: -1;
}

@keyframes jgGira { to { transform: rotate(360deg); } }

/* O conteúdo precisa do mesmo arredondamento para não vazar */
.jg-card > * { position: relative; z-index: 1; }
.jg-banner { border-radius: 18px 18px 0 0; overflow: hidden; }

/* Quem prefere menos movimento na tela não vê a animação */
@media (prefers-reduced-motion: reduce) {
    .jg-card::before { animation: none; }
}

.jg-banner { line-height: 0; border-radius: 18px 18px 0 0; overflow: hidden; }
.jg-banner img {
    width: 100% !important; height: 148px !important;
    object-fit: cover !important; object-position: center !important;
    display: block;
}

.jg-corpo { padding: 18px 16px 20px; border-radius: 0 0 18px 18px; }

.jg-label {
    display: block; font-size: 11px; color: var(--bw-dim);
    text-transform: uppercase; letter-spacing: .9px; margin-bottom: 12px;
}

/* botões de valor */
.jg-valores { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 12px; }
.jg-valor {
    padding: 16px 6px; border-radius: 13px; cursor: pointer;
    border: 1px solid var(--bw-linha); background: rgba(255,255,255,.04);
    color: var(--bw-texto); font-family: inherit; font-size: 16px; font-weight: 800;
    transition: background .15s, border-color .15s, transform .1s;
}
.jg-valor:active { transform: scale(.97); }
.jg-valor.on {
    background: #dce7ff; border-color: #dce7ff; color: #0a1440;
}

/* campo do valor */
.jg-input {
    display: flex; align-items: center; gap: 10px;
    border: 1px solid var(--bw-linha); background: rgba(0,0,0,.32);
    border-radius: 13px; padding: 4px 16px; margin-bottom: 14px;
}
.jg-input span { font-size: 15px; font-weight: 800; color: var(--bw-dim); }
.jg-input input {
    flex: 1; min-width: 0; border: 0; background: transparent; color: inherit;
    font-family: inherit; font-size: 18px; font-weight: 700; padding: 14px 0;
}
.jg-input input:focus { outline: none; }

/* prêmio */
.jg-premio {
    border: 1px solid rgba(124,92,252,.45); border-radius: 14px;
    background: linear-gradient(135deg, rgba(124,92,252,.16), rgba(124,92,252,.03));
    padding: 15px; text-align: center; margin-bottom: 14px;
}
.jg-premio span {
    display: block; font-size: 11.5px; color: var(--bw-dim);
    text-transform: uppercase; letter-spacing: .6px;
}
.jg-premio b {
    display: block; font-size: 27px; font-weight: 800;
    letter-spacing: -.8px; color: var(--bw-amarelo); margin: 3px 0 2px;
}
.jg-premio small { font-size: 11px; color: var(--bw-dim); }

/* mini números */
.jg-mini { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 16px; }
.jg-mini div { text-align: center; }
.jg-mini b { display: block; font-size: 21px; font-weight: 800; letter-spacing: -.4px; }
.jg-mini span { font-size: 9.5px; color: var(--bw-dim); text-transform: uppercase; letter-spacing: .5px; }

/* botão principal */
.jg-btn {
    width: 100%; border: 0; border-radius: 30px; cursor: pointer;
    background: linear-gradient(135deg, #2bff8a, #17d96a); color: #032b12;
    font-family: inherit; font-weight: 800; font-size: 16px; padding: 17px;
    box-shadow: 0 0 34px -8px rgba(34,224,106,.95);
}
.jg-btn:active { transform: scale(.99); }

.jg-obs {
    font-size: 11px; color: var(--bw-dim); text-align: center;
    margin: 12px 0 0; line-height: 1.5;
}
