*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{

    background:
    linear-gradient(
        rgba(0,0,0,.55),
        rgba(0,0,0,.55)
    ),
    url('../img/fondo.jpg');

    background-size:cover;
    background-position:center;
    background-attachment:fixed;

    min-height:100vh;
}

/* NAVBAR */

.navbar-bingo{

    background:rgba(0,0,0,.25);

    backdrop-filter:blur(15px);

    border-bottom:1px solid rgba(255,255,255,.15);

    padding:12px 20px;

    position:sticky;

    top:0;

    z-index:999;
}

.logo-bingo{

    width:75px;

    height:75px;

    border-radius:15px;

    object-fit:cover;

    animation:logoPulse 3s infinite ease-in-out;
}

@keyframes logoPulse{

    0%{
        transform:scale(1);
    }

    50%{
        transform:scale(1.12);
    }

    100%{
        transform:scale(1);
    }

}

.brand-title{

    margin-left:12px;

    font-size:42px;

    font-weight:900;

    line-height:1;
}

.brand-title .bingo{

    color:#FFD700;

    text-shadow:
    0 0 12px #FFD700,
    0 0 25px #FFD700;
}

.brand-title .menez{

    color:white;

    text-shadow:
    0 0 10px rgba(255,255,255,.5);
}
.menu-bingo{

    display:flex;

    align-items:center;

    gap:18px;

    flex-wrap:wrap;
}

.menu-bingo a{

    display:flex;

    align-items:center;

    gap:6px;

    color:white;

    text-decoration:none;

    font-weight:800;

    font-size:15px;

    transition:.3s;
}

.menu-bingo a:hover{

    color:#FFD700;
}

.menu-bingo svg{

    width:18px;

    height:18px;
}

.social-icon{

    width:22px;

    height:22px;
}

.social-icon:hover{

    transform:scale(1.15);
}
/* HERO */

.hero{
min-height:85vh;
display:flex;
align-items:center;
justify-content:center;
padding:30px 15px;
    margin-top: 20px;
    padding-top: 10px;

}

.hero-card{
    width:100%;
    max-width:420px;
    margin:0 auto;
    padding:15px;

    border-radius:20px;

    background:rgba(0,0,0,.35);
    backdrop-filter:blur(15px);

    transform:scale(0.95);
}

.logo-principal{
width:180px;
max-width:100%;
display:block;
margin:0 auto 15px;
margin-bottom:20px;
}

.hero-title{
color:white;
font-size:30px;
font-weight:800;
margin-bottom:15px;
}

.premio-box{
margin-bottom:30px;
}

.premio{

    color:#FFD700;

    font-size:42px;

    font-weight:900;

    text-align:center;

    white-space:nowrap;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:10px;
}
.cartones-box{
background:rgba(255,255,255,.15);
border-radius:20px;
padding:12px;
color:white;
font-weight:700;
margin-bottom:20px;
}

/* PROGRESS */

.progress{

    height:30px;

    border-radius:50px;

    overflow:hidden;

    background:
    rgba(255,255,255,.15);

    margin:15px 0 25px;
}

.progress-bar{

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:16px;

    font-weight:900;

    color:white;

    background:
    linear-gradient(
        90deg,
        #00ff84,
        #00c853,
        #00ff84
    );

    background-size:200% 100%;

    animation:
    moverBarra 3s linear infinite,
    brilloBarra 2s infinite;
}

@keyframes moverBarra{

    0%{
        background-position:0% 0%;
    }

    100%{
        background-position:200% 0%;
    }

}
@keyframes brilloBarra{

    0%{
        filter:brightness(1);
    }

    50%{
        filter:brightness(1.25);
    }

    100%{
        filter:brightness(1);
    }

}
/* BOTONES */
.btn-comprar{
    width:100%;
    margin-top:20px;
}

.btn-comprar,
.btn-pago{

    margin:auto;

    width:100%;

    display:flex;

    align-items:center;

    justify-content:center;

    text-align:center;

    border:none;

    border-radius:30px;

    padding:0 20px;

    background:
    linear-gradient(
    180deg,
    #00ff84,
    #00c853
    );

    color:white;

    font-size:18px;

    font-weight:900;

    text-decoration:none;

    box-shadow:
    0 10px 25px rgba(0,0,0,.25);

    transition:.3s;

    letter-spacing:.5px;
    gap:8px;
}
.btn-comprar span,
.btn-pago span{

    width:100%;

    text-align:center;
}
/* FORMULARIO */

.compra-card{

    max-width:480px;

    margin:10px auto;

    padding:8px;
}

.form-title{
text-align:center;
color:white;
font-size: 24px;
font-weight:800;
margin-bottom: 8px;
}

.card{
background:rgba(0,0,0,.35)!important;
border:none!important;
border-radius:30px!important;
backdrop-filter:blur(15px);
}

.form-label{
color:white;
font-weight:700;
margin-bottom:8px;
}

.input-icon{
position:relative;
margin-bottom:20px;
}

.input-icon i{
position:absolute;
left:18px;
top:17px;
color:#ff4b7d;
}

.form-control{

    width:100%;

    height:42px;

    border:none;

    border-radius:25px;

    padding-left:50px;

    font-size:14px;

    background:white;

    box-shadow:
    0 5px 15px rgba(0,0,0,.10);
}

.form-control:focus{
box-shadow:0 0 15px #FFD700;
}

.total-box{

    background:
    linear-gradient(
    135deg,
    rgba(255,255,255,.18),
    rgba(255,255,255,.08)
    );

    border-radius:25px;

    padding:20px;

    margin:25px 0;

    text-align:center;

    border:
    1px solid rgba(255,255,255,.15);
}

.total-label{
color:white;
font-weight:700;
}

.total-monto{
color:#FFD700;
font-size:42px;
font-weight:800;
}

.boton-centro{
text-align:center;
}

.error-box{
    background:linear-gradient(180deg,#ff3b3b,#c40000);
    color:#fff;

    padding:12px 14px;
    margin-bottom:12px;

    border-radius:12px;

    font-size:14px;
    font-weight:600;

    line-height:1.4;

    box-shadow:0 8px 20px rgba(255,0,0,.25);
}

.icon-whatsapp{

    width:20px !important;

    height:20px !important;

    max-width:20px !important;

    max-height:20px !important;

    object-fit:contain;

    margin-right:8px;

    display:inline-block;
}

.btn-soporte{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    background:#25D366;
    color:white;
    text-decoration:none;
      padding:8px 10px;
    border-radius:50px;
    font-weight:800;
        font-size:12px;
       min-width:auto;
    box-shadow:0 8px 20px rgba(0,0,0,.25);
    transition:.3s;
}

.btn-soporte:hover{
    background:#1ebe5d;
    color:white;
    transform:translateY(-3px);
}

.btn-soporte svg{
    width:18px;
    height:18px;
}

.btn-cantidad{

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    font-size:32px;

    font-weight:900;

    color:white;

    cursor:pointer;

    background:
    linear-gradient(
    180deg,
    #e0d2c7,
    #bcaea3
    );

    box-shadow:
    0 6px 15px rgba(0,0,0,.25);

    transition:.3s;
}

.btn-cantidad:hover{

    transform:scale(1.08);
}

.btn-cantidad.mas{

    background:
    linear-gradient(
    180deg,
    #4CAF50,
    #2E7D32
    );
}

.cantidad-numero{

    width:80px;

    height:60px;

    background:white;

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:34px;

    font-weight:900;

    color:#E53935;

    border:3px solid #FF5252;

    box-shadow:
    0 5px 15px rgba(0,0,0,.20);

    font-family:'Baloo 2',cursive;
}
/* ==========================
   CANTIDAD DE CARTONES
========================== */

.cantidad-box{
    text-align:center;
    margin:25px 0;
}

.contador-cartones{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:15px;
}

.btn-cantidad{
    width:60px;
    height:60px;
    border:none;
    border-radius:50%;
    font-size:32px;
    font-weight:800;
    color:white;
    background:#c7b8ac;
    cursor:pointer;
    transition:.3s;
}

.btn-cantidad.mas{
    background:#28a745;
}

.btn-cantidad:hover{
    transform:scale(1.08);
}


@media(max-width:768px){

    .navbar-bingo{
        padding:12px;
    }

    .logo-bingo{
        width:48px;
        height:48px;
    }

    .brand-title{
        font-size:32px;
    }
    .hero{
        padding:20px 10px;
    }

    .hero-card{
        width:100%;
        max-width:520px;
        padding:20px;
    }

    .logo-principal{
        width:170px;
    }

    .premio{
        font-size:36px;
        white-space:nowrap;
    }

    .progress{
        height:28px;
    }

    .btn-comprar,
    .btn-pago{
        width:100%;
        min-width:unset;
    }

    .compra-card{
        width:92%;
        max-width:420px;
        padding:12px;
   
 }
}

body,
input,
button,
select,
textarea,
.form-control,
.form-label,
.btn,
.btn-comprar,
.btn-pago,
.total-label,
.total-monto{

    font-family:'Baloo 2',cursive !important;
}

.form-control{

    font-family:'Baloo 2',cursive;

    font-weight:700;

    color:#555;
}

.form-control::placeholder{

    color:#999;
}
.whatsapp-float{

position:fixed;

right:20px;
bottom:20px;

width:60px;
height:60px;

border:none;

border-radius:50%;

background:none;

padding:0;

display:flex;
align-items:center;
justify-content:center;

cursor:pointer;

z-index:9999;

box-shadow:
0 0 20px rgba(37,211,102,.5);

}

.whatsapp-float img{

width:35px;
height:35px;

display:block;

margin:auto;

}

.panel-whatsapp{

position:fixed;

right:-350px;

bottom:90px;

width:300px;

background:
rgba(15,23,42,.96);

backdrop-filter:blur(20px);

border-radius:20px;

overflow:hidden;

z-index:99999;

transition:.35s;

}

.panel-whatsapp.abierto{

right:20px;

}

.wa-header{

background:#25D366;

padding:15px;

font-weight:900;

display:flex;

justify-content:space-between;

color:white;

}

.wa-body{

padding:20px;

text-align:center;

color:white;

}

.btn-wa{

display:block;

background:#25D366;

padding:12px;

border-radius:12px;

text-decoration:none;

font-weight:900;

color:white;

margin-top:15px;

}

.wa-float img{

width:34px;
height:34px;

}

.wa-float.oculto{

right:-35px;

}

.flyer-principal{

    width:100%;

     max-width: 500px;

   border-radius:20px;

    display:block;

    margin:auto;
    
    
 object-fit:contain;
 
    box-shadow:
    0 10px 40px rgba(0,0,0,.35);
}
@keyframes flyerFloat{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-10px);
    }

    100%{
        transform:translateY(0);
    }

}
.cartones-disponibles{

    margin-top:12px;

    color:white;

    font-size:20px;

    font-weight:800;

    text-align:center;

    text-shadow:
    0 3px 8px rgba(0,0,0,.4);
}
@media(max-width:768px){

.menu-bingo{

    gap:10px;

    font-size:12px;
}

.social-icon{

    width:24px;

    height:24px;
}

.logo-bingo{

    width:55px;

    height:55px;
}

.brand-title{

    font-size:28px;
}

.flyer-principal{

    width:100%;

      max-width: 500px;
object-fit:contain;
     border-radius:20px;

    display:block;

    margin:0 auto 20px;

    box-shadow:
    0 10px 30px rgba(0,0,0,.35);

    transition:.3s;
}

.flyer-principal:hover{

    transform:scale(1.02);
}
.navbar-contenido{

    display:flex;

    align-items:center;

    justify-content:flex-start;

    gap:25px;
}

.menu-bingo{

    display:flex;

    align-items:center;

    gap:18px;

    flex-wrap:wrap;
}

.menu-bingo a{

    display:flex;

    align-items:center;

    gap:6px;

    color:white;

    text-decoration:none;

    font-weight:800;

    font-size:15px;

    transition:.3s;
}

.menu-bingo a:hover{

    color:#FFD700;
}

.menu-bingo svg{

    width:18px;

    height:18px;
}

.social-icon{

    width:22px;

    height:22px;
}

.logo-bingo{

    width:85px;

    height:85px;

    animation:logoPulse 3s infinite ease-in-out;
}
}
@media(max-width:768px){

    .logo-bingo{

        width:65px;

        height:65px;
    }

    .navbar-contenido{

        gap:12px;
    }

    .menu-bingo{

        gap:10px;
    }

    .menu-bingo a{

        font-size:12px;
    }

    .social-icon{

        width:18px;

        height:18px;
    }

}
.badge-hoy{

    position:absolute;

    top:-18px;

    right:20px;

    background:
    linear-gradient(
        180deg,
        #ff9800,
        #ff5722
    );

    color:white;

    font-weight:900;

    padding:10px 18px;

    border-radius:30px;

    margin:0;

    box-shadow:
    0 8px 20px rgba(0,0,0,.3);

    animation:
    fuego 1.5s infinite;

    z-index:10;
}
@keyframes fuego{

    0%{
        transform:scale(1);
    }

    50%{
        transform:scale(1.1);
    }

    100%{
        transform:scale(1);
    }

}
.cartones-info{

    color:white;

    font-size:24px;

    font-weight:900;

    text-align:center;

    margin-top:25px;

    margin-bottom:15px;

    text-shadow:
    0 3px 10px rgba(0,0,0,.35);
}
.contador-pago{

    margin-top:25px;

    font-size:55px;

    font-weight:900;

    color:#FFD700;

    text-align:center;

    text-shadow:
    0 0 20px #FFD700;

    animation:
    pulsePago 1s infinite;
}

@keyframes pulsePago{

    0%{
        transform:scale(1);
    }

    50%{
        transform:scale(1.05);
    }

    100%{
        transform:scale(1);
    }

}
.pago-card{

    padding:25px;

    border-radius:30px !important;

    background:
    linear-gradient(
    135deg,
    rgba(255,255,255,.12),
    rgba(255,255,255,.05)
    ) !important;

    border:
    1px solid rgba(255,255,255,.15) !important;
}

.titulo-pago{

    color:#FFD700;

    text-align:center;

    font-size:28px;

    font-weight:800;

    margin-bottom:25px;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:10px;
}

.dato-pago{

    background:
    rgba(255,255,255,.08);

    padding:15px;

    border-radius:20px;

    margin-bottom:12px;

    display:flex;

    align-items:center;

    gap:12px;

    color:white;

    font-size:18px;
}

.dato-pago svg{

    width:22px;

    height:22px;

    color:#FFD700;
}

.dato-pago strong{

    margin-left:auto;

    color:#00ff84;
}
.resumen-pago{

    display:flex;

    flex-direction:column;

    gap:12px;

    margin-bottom:20px;
}

.item-resumen{

    background:
    rgba(255,255,255,.10);

    border-radius:20px;

    padding:14px 18px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    color:white;

    font-size:18px;

    font-weight:700;
}

.item-resumen strong{

    color:#FFD700;

    font-size:28px;
}

.pago-card{

    background:rgba(255,255,255,.10) !important;

    border:none !important;

    border-radius:22px !important;

    padding:12px !important;

    margin-top:10px !important;
}

.pago-card h4{

    color:#FFD700;

    margin-bottom:15px;

    font-size:24px;

    font-weight:800;
}

.dato-linea{

    background:
    rgba(255,255,255,.08);

    padding:10px;

    border-radius:15px;

    margin-bottom:10px;

    color:white;

    font-weight:700;
}

.contador-pago{

    font-size:52px;

    font-weight:900;

    color:#FFD700;

    text-align:center;

    margin:15px 0;

    text-shadow:
    0 0 20px #FFD700;
}

.btn-pago{

    width:100%;

    max-width:280px;
    height:52px;
}
/* ==========================
   RESUMEN DE PAGO
========================== */

.resumen-pago{

    display:flex;

    gap:12px;

    margin-bottom:15px;
}

.resumen-item{

    flex:1;

    background:rgba(255,255,255,.10);

    backdrop-filter:blur(10px);

    border-radius:18px;

    padding:12px;

    min-height:90px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;
}

.resumen-label{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:8px;

    color:white;

    font-weight:700;

    margin-bottom:8px;

    font-size:16px;
}

.resumen-label svg{

    width:20px;

    height:20px;

    color:#FFD700;
}

.resumen-valor{

    color:#FFD700;

    font-size:32px;

    font-weight:900;

    line-height:1;

    text-align:center;

    text-shadow:
    0 0 10px rgba(255,215,0,.5);
}

/* ==========================
   PAGO MOVIL
========================== */

.pago-card{

    background:
    rgba(255,255,255,.10) !important;

    border:none !important;

    border-radius:25px !important;

    padding:15px !important;
}

.titulo-pago{

    color:#FFD700;

    font-size:28px;

    font-weight:900;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:10px;

    margin-bottom:15px;
}

.dato-pago{

    background:rgba(255,255,255,.08);

    border-radius:14px;

    padding:8px 12px;

    margin-bottom:8px;

    display:flex;

    align-items:center;

    gap:8px;

    color:white;

    font-size:14px;
}

.dato-pago svg{

    width:20px;

    height:20px;

    color:#FFD700;
}

.dato-pago strong{

    margin-left:auto;

    color:#00ff84;
}

/* ==========================
   CONTADOR
========================== */

.contador-pago{

    margin:8px 0 12px 0;

    text-align:center;

    font-size:42px;

    font-weight:900;

    color:#FFD700;

    text-shadow:
    0 0 15px #FFD700;
}

/* ==========================
   MOVIL
========================== */

@media(max-width:768px){

    .resumen-pago{

        flex-direction:column;
    }

    .resumen-valor{

        font-size:24px;
    }

    .contador-pago{

        font-size:42px;
    }

}
.btn-como-jugar{

    width:max-content;

    margin:15px 0 15px 15px;

    background:
    linear-gradient(
    180deg,
    #FFD54F,
    #FFA000
    );

    color:#5D4037;

    border-radius:50px;

    padding:10px 18px;

    display:flex;

    align-items:center;

    gap:10px;

    font-weight:900;

    cursor:pointer;

    box-shadow:
    0 8px 20px rgba(255,193,7,.35);

    animation:pulseJuego 2s infinite;
}

.icon-info{

    width:34px;

    height:34px;

    background:white;

    color:#FF6F00;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:22px;

    font-weight:900;
}
.modal-juego{

position:fixed;

top:0;
left:0;

width:100%;
height:100%;

background:rgba(0,0,0,.75);

display:none;

justify-content:center;
align-items:center;

z-index:99999;

padding:20px;

}

.modal-contenido{

width:100%;
max-width:420px;

max-height:88vh;

overflow-y:auto;

background:
linear-gradient(
180deg,
#14213d,
#0f172a
);

border-radius:28px;

padding:25px;

border:2px solid rgba(255,215,0,.25);

box-shadow:
0 0 35px rgba(255,215,0,.2);

color:white;

}

.modal-contenido h2{

text-align:center;

color:#FFD700;

margin-bottom:20px;

font-size:28px;

}

.paso{

display:flex;

align-items:center;

gap:15px;

padding:12px;

margin-bottom:12px;

border-radius:18px;

background:
rgba(255,255,255,.05);

}

.icono{

width:50px;
height:50px;

border-radius:50%;

display:flex;

align-items:center;
justify-content:center;

background:
linear-gradient(
180deg,
#FFD700,
#ff9800
);

font-size:24px;

flex-shrink:0;

}

.paso b{

display:block;

font-size:17px;

margin-bottom:3px;

}

.paso span{

font-size:14px;

color:#d6d6d6;

}

.modos{

margin-top:20px;

}

.modos h3{

text-align:center;

color:#FFD700;

margin-bottom:15px;

}

.modo{

background:
rgba(255,255,255,.05);

padding:10px;

border-radius:14px;

margin-bottom:8px;

font-weight:700;

}

.aviso{

margin-top:18px;

padding:14px;

border-radius:15px;

background:
linear-gradient(
180deg,
#FFD700,
#ff9800
);

color:#222;

font-weight:900;

text-align:center;

}

.btn-cerrar-modal{

width:100%;

margin-top:20px;

height:55px;

border:none;

border-radius:18px;

background:
linear-gradient(
180deg,
#00ff84,
#00c853
);

font-size:18px;

font-weight:900;

color:white;

cursor:pointer;

}

.btn-cerrar-modal:hover{

transform:scale(1.02);

transition:.25s;

}

.modal-contenido::-webkit-scrollbar{

width:5px;

}

.modal-contenido::-webkit-scrollbar-thumb{

background:#FFD700;

border-radius:10px;

}

.btn-cerrar-modal{

    margin-top:15px;

    border:none;

    background:#00c853;

    color:white;

    padding:12px 25px;

    border-radius:30px;

    font-weight:800;
}
.soporte-flotante{

    position:fixed;

    right:20px;

    bottom:40px;

    width:65px;

    height:65px;

    background:#25D366;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    box-shadow:
    0 10px 25px rgba(0,0,0,.35);

    z-index:9999;

    animation:
    whatsappPulse 2s infinite;
}

.soporte-flotante img{

    width:35px;

    height:35px;
}

@keyframes whatsappPulse{

    0%{
        transform:scale(1);
    }

    50%{
        transform:scale(1.1);
    }

    100%{
        transform:scale(1);
    }

}
@keyframes pulseJuego{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-4px);
    }

    100%{
        transform:translateY(0);
    }

}
@media(max-width:768px){

    .btn-como-jugar{

        width:max-content;

      margin:15px 0 15px 15px;

        padding:10px 15px;

        font-size:14px;
    }

    .soporte-flotante{

        width:58px;

        height:58px;

        right:15px;

        bottom:15px;
    }

    .soporte-flotante img{

        width:28px;

        height:28px;
    }

}
.card-sala{

background:
rgba(255,255,255,.12);

backdrop-filter:blur(15px);

border-radius:25px;

padding:25px;

box-shadow:
0 10px 30px rgba(0,0,0,.25);

margin-bottom:20px;

}

.input-admin{

height:55px;

border:none;

border-radius:20px;

padding:0 20px;

font-size:18px;

width:100%;
}

.btn-guardar{

background:
linear-gradient(
180deg,
#00ff84,
#00c853
);

color:white;

border:none;

border-radius:50px;

padding:14px 30px;

font-weight:800;
}
.btn-admin{

display:inline-flex;

align-items:center;

justify-content:center;

padding:12px 18px;

min-width:140px;

height:50px;

border:none;

border-radius:50px;

font-size:15px;

font-weight:800;

color:white;

text-decoration:none;

cursor:pointer;

transition:.3s;

margin:5px;
}

/* ===== BOTONES SALAS ===== */

.botones-sala{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:10px;

    margin-top:20px;
}

.btn-admin{

    width:100%;

    height:42px;

    border:none;

    border-radius:22px;

    font-size:13px;

    font-weight:800;

    display:flex;

    align-items:center;

    justify-content:center;

    text-decoration:none;

    color:white;

    padding:0 12px;
}

.btn-guardar{

    background:linear-gradient(
    180deg,
    #00ff84,
    #00c853
    );
}

.btn-iniciar{

    background:linear-gradient(
    180deg,
    #2196F3,
    #1565C0
    );
}

.btn-finalizar{

    background:linear-gradient(
    180deg,
    #ff5252,
    #d50000
    );
}
.estado-pago{

margin-top:15px;

padding:12px;

border-radius:15px;

font-weight:800;

text-align:center;
}

.pendiente{

background:#fff3cd;

color:#856404;
}

.aprobado{

background:#d4edda;

color:#155724;
}
.btn-comprar-mas{

display:block;

margin-top:10px;

padding:10px;

border-radius:15px;

text-align:center;

font-weight:800;

text-decoration:none;

background:
rgba(255,255,255,.15);

color:white;

font-size:15px;

transition:.3s;

}

.btn-comprar-mas:hover{

background:
rgba(255,255,255,.25);

}
.usuario-activo{

background:
rgba(255,255,255,.10);

border-radius:20px;

padding:20px;

margin-bottom:20px;

text-align:center;

font-weight:800;

color:white;

line-height:2;
}

.bola-mini{

width:55px;
height:55px;

display:flex;
flex-direction:column;
justify-content:center;
align-items:center;

border-radius:50%;

background:
radial-gradient(
circle at 30% 30%,
#fff6c4,
#ffd700,
#ff9800
);

}

.mini-letra{

font-size:12px;
font-weight:900;
line-height:1;

}

.mini-numero{

font-size:18px;
font-weight:900;
line-height:1;

}

/* ===== BINGO EN VIVO ===== */

.bola-actual{

width:140px;
height:140px;

margin:20px auto;

border-radius:50%;

background:
radial-gradient(
circle at 30% 25%,
#fff5f8,
#ff9ac4,
#ff4f8b
);

display:flex;
flex-direction:column;
justify-content:center;
align-items:center;

position:relative;

box-shadow:
0 0 25px rgba(255,105,180,.8),
0 0 50px rgba(255,105,180,.5);

}

.letra-bola{

font-size:28px;
font-weight:900;

color:white;

line-height:1;

text-shadow:
0 3px 8px rgba(0,0,0,.35);

}

.numero-bola{

font-size:52px;
font-weight:900;

color:#222;

line-height:1;

}

.ultimas-bolas{

display:flex;

justify-content:center;

gap:8px;

flex-wrap:nowrap;

overflow-x:auto;

padding:10px 0;

}

@media(max-width:768px){

.bola-actual{

width:120px;
height:120px;

}

.numero-bola{

font-size:42px;

}

.letra-bola{

font-size:22px;

}
.modo-actual{

margin-top:15px;

font-size:18px;

font-weight:900;

color:#FFD700;

text-align:center;

}
.limite-cartones{

margin-top:20px;

text-align:center;

font-size:18px;

font-weight:800;

color:white;

padding:12px;

border-radius:15px;

background:
rgba(255,215,0,.08);

border:1px solid
rgba(255,215,0,.25);

}
.panel-datos{

position:fixed;

left:0;
bottom:-100%;

width:100%;
max-width:500px;

height:70vh;

background:#08142f;

border-top-left-radius:25px;
border-top-right-radius:25px;

z-index:999999;

transition:.4s;

padding:20px;

box-shadow:
0 -10px 40px rgba(0,0,0,.4);

}

.panel-datos.abierto{

bottom:0;

}

.datos-handle{

width:70px;
height:6px;

background:rgba(255,255,255,.3);

border-radius:20px;

margin:auto;
margin-bottom:20px;

}

.datos-header{

text-align:center;

font-size:24px;

font-weight:900;

color:#FFD700;

margin-bottom:20px;

}

.datos-body{

display:flex;
flex-direction:column;
gap:12px;

}

.datos-body p{

color:white;
text-align:center;

}

.datos-body input{

padding:12px;

border:none;

border-radius:12px;

}

.btn-guardar-datos{

padding:14px;

border:none;

border-radius:15px;

font-weight:900;

background:
linear-gradient(
180deg,
#FFD700,
#FF9800
);

cursor:pointer;

}

}
.nav-whatsapp{

display:flex;
align-items:center;
gap:6px;

text-decoration:none;

color:white;

font-weight:800;

}

.nav-whatsapp img{

width:22px;
height:22px;

}
/*=========================
CONTENEDOR DEL FLYER
=========================*/

.hero-card{

position:relative;

}
/*=========================
BARRA SUPERIOR
=========================*/

.hero-top{

display:flex;

justify-content:space-between;

align-items:center;

margin-bottom:20px;

padding:0 10px;

}

/*=========================
CONTADOR
=========================*/

.contador-flyer{

display:flex;

align-items:center;

gap:4px;

padding:5px 9px;

background:rgba(15,23,42,.85);

backdrop-filter:blur(8px);

border-radius:20px;

color:#fff;

font-size:13px;

font-weight:900;

box-shadow:
0 4px 12px rgba(0,0,0,.25);

margin-left:5px;

}

.contador-flyer svg{

width:14px;
height:14px;

color:#FFD700;

}

#contadorIndex{

font-size:13px;

font-weight:900;

}

.contador-flyer.urgente{

background:
linear-gradient(
135deg,
#ff3b30,
#ff9800
);

animation:latido .6s infinite;

}

@keyframes latido{

0%{
transform:scale(1);
}

50%{
transform:scale(1.08);
}

100%{
transform:scale(1);
}

}
/*==================================
REGISTRO COMPRA
==================================*/

.registro-info{
    display:flex;
    gap:10px;
    align-items:flex-start;

    padding:12px;
    margin:10px 0 12px;

    background:rgba(255,255,255,.08);
    border-radius:14px;

    color:#fff;
    line-height:1.4;
    font-size:12.5px;
}
.registro-icono{

width:48px;
height:48px;

border-radius:50%;

background:linear-gradient(180deg,#FFD700,#ff9800);

display:flex;
justify-content:center;
align-items:center;

color:#222;

flex-shrink:0;

}

.btn-registro{

width:100%;

margin-top:20px;

padding:15px;

border:none;

border-radius:18px;

background:linear-gradient(180deg,#00e676,#00c853);

color:#fff;

font-size:18px;

font-weight:800;

cursor:pointer;

transition:.25s;

box-shadow:0 12px 30px rgba(0,230,118,.35);

}

.btn-registro:hover{

transform:translateY(-2px);

box-shadow:0 15px 35px rgba(0,230,118,.45);

}
.input-bingo{
    width:100%;
    margin-bottom:12px;

    padding:14px 16px;

    border-radius:16px;

    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.15);

    color:#fff;

    outline:none;
}

.input-bingo::placeholder{
    color:rgba(255,255,255,.6);
}
.input-bingo:focus{

outline:none;

border:1px solid #FFD700;

box-shadow:0 0 15px rgba(255,215,0,.3);

}
.compra-card .card-body{
    padding:20px;
}

.form-title{
    margin-bottom:10px;
}

hr{
    border:0;
    height:1px;
    background:rgba(255,255,255,.15);
    margin:18px 0;
}
.input-monto-wrapper{
    display:flex;
    align-items:center;
    background:rgba(0,0,0,.3);
    border-radius:12px;
    padding:10px 15px;
    margin-bottom:10px;
}

.prefijo{
    color:#FFD700;
    font-weight:900;
    margin-right:8px;
}

.input-monto{
    width:100%;
    border:none;
    background:transparent;
    color:white;
    font-size:20px;
    font-weight:700;
    outline:none;
}
.minimo-alerta{
    margin-top:10px;
    margin-bottom:10px;
    text-align:center;
    color:#ffffff !important;
    font-weight:800;
    font-size:14px;
    padding:6px 10px;
    border-radius:10px;
    background:rgba(0,0,0,.25);
    border:1px solid rgba(255,255,255,.15);
    text-shadow:0 2px 6px rgba(0,0,0,.6);
}
@keyframes pulseError{
    0%{ box-shadow:0 0 0px rgba(255,0,0,.2); }
    50%{ box-shadow:0 0 15px rgba(255,0,0,.5); }
    100%{ box-shadow:0 0 0px rgba(255,0,0,.2); }
}
/* =========================
MODAL OVERLAY
========================= */
.modal{
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(6px);
    justify-content: center;
    align-items: center;
}

/* =========================
CONTENIDO DEL MODAL
========================= */
.modal-content{
    width: 320px;
    background: linear-gradient(145deg, #1c1f2e, #141726);
    border-radius: 18px;
    padding: 25px;
    text-align: center;
    color: #fff;
    box-shadow: 0 0 25px rgba(0,0,0,0.6);
    animation: popIn 0.25s ease-in-out;
    position: relative;
    overflow: hidden;
}

/* =========================
TÍTULO
========================= */
.modal-content h2{
    font-size: 20px;
    margin-bottom: 10px;
    font-family: 'Fredoka', sans-serif;
}

/* =========================
MENSAJE
========================= */
.modal-content p{
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 20px;
}

/* =========================
BOTÓN
========================= */
.modal-content button{
    background: linear-gradient(90deg, #FFD100, #ffb300);
    border: none;
    padding: 10px 18px;
    border-radius: 12px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s;
    color: #111;
    width: 100%;
}

.modal-content button:hover{
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 209, 0, 0.5);
}

/* =========================
ANIMACIÓN DE ENTRADA
========================= */
@keyframes popIn{
    from{
        transform: scale(0.7);
        opacity: 0;
    }
    to{
        transform: scale(1);
        opacity: 1;
    }
}

/* =========================
EFECTO ERROR (ROJO)
========================= */
.modal-error{
    border: 2px solid #ff3b3b;
    box-shadow: 0 0 20px rgba(255, 59, 59, 0.4);
}

/* =========================
EFECTO ÉXITO (VERDE)
========================= */
.modal-success{
    border: 2px solid #00e676;
    box-shadow: 0 0 20px rgba(0, 230, 118, 0.4);
}

/* =========================
BRILLO ANIMADO
========================= */
.modal-content::before{
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 60%);
    animation: shine 4s linear infinite;
}

@keyframes shine{
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hamburger{
position:fixed;
top:15px;
right:15px;
z-index:9999;
background:rgba(0,0,0,.4);
padding:10px;
border-radius:10px;
cursor:pointer;
color:white;
}

.side-menu{
position:fixed;
top:0;
right:-260px;
width:260px;
height:100%;
background:#1e293b;
z-index:99999;
padding:20px;
transition:.3s;
display:flex;
flex-direction:column;
gap:15px;
}

.side-menu a{
color:white;
text-decoration:none;
font-weight:700;
display:flex;
gap:10px;
align-items:center;
padding:10px;
border-radius:10px;
}

.side-menu a:hover{
background:rgba(255,255,255,.1);
}
.top-info-row{
    width:100%;
    display:flex;
    justify-content:flex-start;
    padding:6px 15px 0 15px;
    margin-top:8px;
}

.como-jugar-box{
    display:inline-block;
 margin-top:6px;
    padding:7px 12px;
    border-radius:12px;

    background:rgba(0,0,0,.35);
    color:#FFD700;

    font-weight:800;
    font-size:13px;

    cursor:pointer;

    backdrop-filter:blur(10px);
}

.saldo-box{
    display:flex;
    align-items:center;
    gap:6px;
    background:rgba(0,0,0,.3);
    padding:10px 15px;
    border-radius:15px;
    color:#FFD700;
    font-weight:800;
}

.bote-box{
    background:linear-gradient(180deg,#FFD700,#ff9800);
    padding:15px;
    border-radius:20px;
    text-align:center;
    margin-bottom:15px;
}

.bote-monto{
    font-size:34px;
    font-weight:900;
}
.fix-down{
    margin-top:70px; /* 👈 ESTO lo baja debajo del topbar */
    padding-left:15px;
}

.como-jugar-box{
    display:inline-block;

    padding:8px 12px;
    border-radius:12px;

    background:rgba(0,0,0,.35);
    color:#FFD700;

    font-weight:800;
    font-size:13px;

    cursor:pointer;

    backdrop-filter:blur(10px);
}
@keyframes pop {
    0% { transform: scale(.7); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}
.modal-global{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.75);
    backdrop-filter:blur(8px);
    z-index:999999;
    display:flex;
    justify-content:center;
    align-items:center;
}

.modal-card{
    width:90%;
    max-width:360px;
    background:rgba(20,25,40,.95);
    border:1px solid rgba(255,215,0,.25);
    border-radius:25px;
    padding:25px;
    text-align:center;
    color:white;
    box-shadow:0 0 25px rgba(0,0,0,.5);
    animation:pop .25s ease;
}

.modal-card .icon{
    font-size:45px;
    margin-bottom:10px;
}

.modal-card h2{
    color:#FFD700;
    margin-bottom:10px;
}

.modal-card p{
    font-size:14px;
    opacity:.9;
}

.modal-card button{
    margin-top:15px;
    padding:10px 18px;
    border:none;
    border-radius:12px;
    background:#FFD700;
    font-weight:900;
    cursor:pointer;
}

.loader{
    width:35px;
    height:35px;
    border:4px solid rgba(255,255,255,.2);
    border-top:4px solid #FFD700;
    border-radius:50%;
    margin:15px auto;
    animation:spin 1s linear infinite;
}

@keyframes spin{
    100%{ transform:rotate(360deg); }
}
.hero-card,
.flyer-principal{
    transform:none !important;
}
@media (max-width: 768px){

.card{
    width:95% !important;
    padding:15px !important;
}

h2{
    font-size:18px;
}

input{
    font-size:14px;
}

button{
    font-size:14px;
}
}
.login-mini{
    width:34px;
    height:34px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:10px;
    background:rgba(255,255,255,.08);
    color:white;
    margin-left:8px;
}
.login-mini:hover{
    background:rgba(255,215,0,.2);
    color:#FFD700;
    transform:scale(1.05);
}

.modal-validando{

position:fixed;

inset:0;

display:none;

align-items:center;

justify-content:center;

z-index:999999;

background:rgba(0,0,0,.55);

pointer-events:none;

}


.modal-validando .ganador-premium{

pointer-events:none;

}
.top-btn{

display:flex;
align-items:center;
justify-content:center;
gap:7px;

}

.top-btn svg{

width:18px;
height:18px;
stroke-width:2.4;
flex-shrink:0;

}
.usuario-activo{

background:rgba(255,255,255,.08);

padding:12px;

border-radius:14px;

display:flex;

flex-direction:column;

gap:8px;

}


.info-usuario{

display:flex;

align-items:center;

gap:8px;

font-size:15px;

font-weight:700;

color:#fff;

line-height:1.2;

}


.info-usuario svg{

width:15px;

height:15px;

stroke-width:2.3;

color:#FFD700;

flex-shrink:0;

}


.info-usuario strong{

color:#FFD700;

}
