*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#f3f6fb;
    color:#001b6e;
}

/* HEADER */

.header{
    width:100%;
    background:linear-gradient(135deg,#00134d,#002ea6,#0047ff);
    padding:2px 20px;
    box-shadow:0 5px 25px rgba(0,0,0,0.20);
    position:sticky;
    top:0;
    z-index:999;
}

.header-content{
    max-width:auto;
    margin:2px ;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo-area{
    display:flex;
    align-items:center;
    gap:10px;
}

.logo{
    width:90px;
    filter:drop-shadow(0 0 10px rgba(255,255,255,0.3));
}

.logo-text h1{
    color:#fff;
    font-size:34px;
    line-height:1;
    margin:0;
    font-weight:700;
}

.logo-text span{
    color:#7dff3a;
    font-size:15px;
    font-weight:600;
    letter-spacing:2px;
}

.menu-btn{
    width:55px;
    height:55px;
    border-radius:15px;
    background:rgba(255,255,255,0.12);
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:30px;
}

/* HERO */

.hero{
    margin:20px;
    border-radius:30px;
    background:linear-gradient(135deg,#001b6e,#003cff);
    padding:45px 30px;
    color:#fff;
    position:relative;
    overflow:hidden;
}

.hero h2{
    font-size:52px;
    line-height:1.1;
}

.hero h2 span{
    color:#7fff00;
}

.hero p{
    margin-top:20px;
    font-size:22px;
    max-width:600px;
}

.balls{
    display:flex;
    gap:15px;
    margin-top:30px;
}

.ball{
    width:90px;
    height:90px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:38px;
    font-weight:bold;
    color:#000;
    box-shadow:0 10px 25px rgba(0,0,0,0.25);
}

.yellow{
    background:#ffd400;
}

.green{
    background:#47d600;
}

.blue{
    background:#008cff;
}

.sorteo{
    margin-top:15px;
    background:rgba(255,255,255,0.12);
    padding:10px 15px;
    border-radius:12px;
    font-size:14px;
    font-weight:600;
    width:fit-content;
}

/* CONTAINER */

.container{
    max-width:auto;
    margin:auto;
    padding:20px;
}

/* CARD */

.card{
    background:#fff;
    border-radius:25px;
    padding:30px;
    margin-bottom:25px;
    box-shadow:0 8px 25px rgba(0,0,0,0.05);
}

.card h3{
    font-size:30px;
    margin-bottom:10px;
}

.sub{
    color:#666;
    margin-bottom:25px;
}

/* NUMBERS */

.numbers{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:18px;
}

.number{
    width:78px;
    height:78px;
    border-radius:50%;
    border:3px solid #dfe5f2;
    background:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:30px;
    font-weight:700;
    color:#001b6e;
    cursor:pointer;
    transition:0.3s;
    margin:auto;
    box-shadow:0 5px 15px rgba(0,0,0,0.06);
}

.number:hover{
    transform:scale(1.08);
    border-color:#12b236;
}

.number.active{
    background:linear-gradient(135deg,#12b236,#0c8d2a);
    color:#fff;
    border:none;
    transform:scale(1.08);
    box-shadow:0 10px 25px rgba(18,178,54,0.4);
}

/* SELECTED */

.selected-title{
    margin-top:30px;
    margin-bottom:15px;
    font-size:20px;
    font-weight:600;
}

.selected{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.selected span{
    width:40px;
    height:40px;
    border-radius:50%;
    background:linear-gradient(135deg,#12b236,#0c8d2a);
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:20px;
    font-weight:bold;
    box-shadow:0 5px 15px rgba(18,178,54,0.35);
}

/* FORM */

.form-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.input-group{
    display:flex;
    flex-direction:column;
}

.input-group label{
    margin-bottom:10px;
    font-weight:600;
}

.input-group input,
.input-group select{
    height:60px;
    border-radius:15px;
    border:1px solid #ddd;
    padding:15px;
    font-size:16px;
}

/* PAYMENTS */

.payments{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    margin-top:20px;
}

.pay-option{
    border:2px solid #ddd;
    border-radius:20px;
    padding:25px;
    text-align:center;
    font-size:24px;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
}

.pay-option:hover{
    border-color:#12b236;
}

.pay-option.active{
    border-color:#12b236;
    background:#f5fff7;
}

/* SUMMARY */

.summary{
    background:#fff;
    border-radius:25px;
    padding:30px;
    box-shadow:0 8px 25px rgba(0,0,0,0.05);
}

.summary h3{
    font-size:32px;
}

.line{
    display:flex;
    justify-content:space-between;
    margin-top:10px;
    font-size:20px;
}

.total{
    color:#12b236;
    font-size:30px;
    font-weight:bold;
}

.notice{
    margin-top:25px;
    background:#effff2;
    color:#188a34;
    padding:20px;
    border-radius:20px;
    font-weight:600;
}

.btn{
    width:100%;
    height:75px;
    border:none;
    border-radius:20px;
    background:linear-gradient(135deg,#12b236,#0b8b29);
    color:#fff;
    font-size:25px;
    font-weight:bold;
    margin-top:25px;
    cursor:pointer;
    transition:0.3s;
}

.btn:hover{
    transform:translateY(-3px);
}

/* MESSAGE */

.message{
    background:#fff;
    padding:25px;
    border-radius:20px;
    margin-bottom:25px;
    font-size:20px;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

/* FOOTER */

.footer{
    text-align:center;
    padding:40px;
    color:#666;
}


#datosTarjeta{
    margin-top:20px;
}

#datosTarjeta .input-group{
    margin-bottom:15px;
}


@media (max-width:768px){

.container{
    padding:12px;
}

.hero{
    margin:10px;
    padding:18px;
}

.hero h2{
    font-size:26px;
}

.hero p{
    font-size:14px;
    margin-top:8px;
}

.ball{
    width:45px;
    height:45px;
    font-size:18px;
}

.sorteo{
    font-size:12px;
    padding:8px 12px;
}

.ball{
    width:60px;
    height:60px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:24px;
    font-weight:bold;
    color:#000;
}

.card{
    padding:20px;
    border-radius:20px;
}

.card h3{
    font-size:22px;
}

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

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

.numbers{
    grid-template-columns:repeat(3,1fr);
    gap:12px;
}

.number{
    width:80px;
    height:80px;
    border-radius:50%;
    background:#fff;
    border:3px solid #e8edf8;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:34px;
    font-weight:700;
    color:#002ea6;
    cursor:pointer;
    transition:.3s;
    box-shadow:
        0 4px 10px rgba(0,0,0,.05),
        inset 0 0 10px rgba(255,255,255,.8);
}

.number:hover{
    transform:translateY(-4px);
}

.number.active{
    background:linear-gradient(
        135deg,
        #12b236,
        #18d44b
    );

    color:white;
    border:none;

    box-shadow:
        0 10px 25px rgba(18,178,54,.4);
}

.summary{
    
    bottom:0;
    z-index:999;
    box-shadow:0 -10px 30px rgba(0,0,0,.15);
}


.btn{
    height:65px;
    font-size:20px;
}

}




.jackpot-card{
    background: linear-gradient(135deg,#FFD700,#FFB800);
    border-radius:20px;
    padding:30px;
    margin-bottom:25px;
    text-align:center;
    box-shadow:0 8px 20px rgba(0,0,0,.15);
}

.jackpot-title{
    font-size:20px;
    font-weight:700;
    color:#333;
}

.jackpot-amount{
    font-size:40px;
    font-weight:800;
    color:#0A2A8A;
    margin:10px 0;
}

.jackpot-info{
    font-size:14px;
    color:#555;
}

