/* Loto6 v1.1.9 */
/* =========================================================
   DESIGN SYSTEM
========================================================= */

:root{
    --primary:#0d6efd;
    --primary-dark:#0958d9;
    --primary-light:#eaf3ff;

    --background:#f1f3f6;
    --surface:#ffffff;
    --surface-soft:#f8fafc;

    --text:#172033;
    --muted:#778195;

    --border:#e5e9ef;

    --success:#18a66a;
    --warning:#f5a623;

    --shadow-sm:
        0 2px 6px rgba(20,35,60,.04),
        0 1px 2px rgba(20,35,60,.03);

    --shadow:
        0 12px 35px rgba(24,43,72,.08);

    --shadow-lg:
        0 25px 70px rgba(24,43,72,.12);
}

*{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    margin:0;
    min-height:100vh;

    font-family:"Inter",sans-serif;

    color:var(--text);

    background:
        radial-gradient(
            circle at 10% 0%,
            rgba(13,110,253,.055),
            transparent 30%
        ),
        var(--background);
}


/* =========================================================
   NAVBAR
========================================================= */

.navbar{
    height:72px;

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

    border-bottom:1px solid rgba(20,40,70,.08);

    backdrop-filter:blur(16px);

    position:sticky;
    top:0;
    z-index:100;
}

.nav-container{
    max-width:1240px;
    height:100%;

    margin:auto;
    padding:0 24px;

    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo{
    display:flex;
    align-items:center;
    gap:11px;

    color:var(--text);

    text-decoration:none;

    font-size:18px;
    font-weight:800;
    letter-spacing:-.5px;
}

.logo-icon{
    width:39px;
    height:39px;

    border-radius:11px;

    display:grid;
    place-items:center;

    color:white;

    background:linear-gradient(
        145deg,
        #2b83ff,
        #0d6efd
    );

    box-shadow:
        0 7px 16px rgba(13,110,253,.25);
}

.logo span{
    color:var(--primary);
}

.nav-right{
    display:flex;
    align-items:center;
    gap:15px;
}

.demo-badge{
    padding:7px 11px;

    border-radius:8px;

    background:#f3f6fa;

    color:#7a8495;

    font-size:10px;
    font-weight:700;

    letter-spacing:.7px;
}


/* =========================================================
   PAGE
========================================================= */

.page{
    width:100%;
    max-width:1255px;

    margin:auto;

    padding:34px 24px 70px;
}


/* =========================================================
   HERO
========================================================= */

.hero{
    position:relative;

    overflow:hidden;

    min-height:250px;

    padding:42px;

    border-radius:22px;

    color:white;

    background:
        linear-gradient(
            115deg,
            #0a5ddd 0%,
            #0d6efd 45%,
            #2783ff 100%
        );

    box-shadow:
        0 22px 55px rgba(13,110,253,.20);
}

.hero::before{
    content:"";

    position:absolute;

    width:420px;
    height:420px;

    right:-130px;
    top:-210px;

    border-radius:50%;

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

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

.hero::after{
    content:"";

    position:absolute;

    width:600px;
    height:1px;

    left:-100px;
    bottom:45px;

    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.35),
        transparent
    );

    transform:rotate(-8deg);
}

.hero-content{
    position:relative;
    z-index:2;
}

.hero-label{
    display:inline-flex;
    align-items:center;
    gap:7px;

    padding:7px 11px;

    border-radius:8px;

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

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

    font-size:10px;
    font-weight:700;

    letter-spacing:1px;
}

.live-dot{
    width:6px;
    height:6px;

    border-radius:50%;

    background:#7dffca;

    box-shadow:0 0 10px #7dffca;
}

.hero h1{
    margin:21px 0 8px;

    font-size:clamp(32px,4vw,49px);

    font-weight:800;

    letter-spacing:-2px;

    line-height:1.05;
}

.hero p{
    margin:0;

    color:rgba(255,255,255,.76);

    font-size:14px;
}

.hero-jackpot{
    position:absolute;

    right:45px;
    bottom:32px;

    text-align:right;

    z-index:3;
}

.hero-jackpot-label{
    display:block;

    color:rgba(255,255,255,.65);

    font-size:10px;

    text-transform:uppercase;

    letter-spacing:1.5px;
}

.hero-jackpot-value{
    display:block;

    margin-top:4px;

    font-size:32px;

    font-weight:800;

    letter-spacing:-1px;
}


/* =========================================================
   GRID
========================================================= */

.dashboard{
    display:grid;

    grid-template-columns:
        minmax(0,1fr)
        350px;

    gap:22px;

    margin-top:22px;
}


/* =========================================================
   CARD
========================================================= */

.card{
    border:1px solid var(--border);

    border-radius:20px;

    background:var(--surface);

    box-shadow:var(--shadow-sm);

    overflow:hidden;
}


/* =========================================================
   NUMBERS CARD
========================================================= */

.number-card{
    padding:28px;
}

.card-header-custom{
    display:flex;
    align-items:center;
    justify-content:space-between;

    margin-bottom:25px;
}

.title{
    font-size:17px;
    font-weight:800;

    letter-spacing:-.3px;
}

.subtitle{
    margin-top:5px;

    color:var(--muted);

    font-size:11px;
}

.selection-counter{
    min-width:78px;

    padding:8px 12px;

    border-radius:10px;

    text-align:center;

    background:var(--primary-light);

    color:var(--primary);

    font-size:12px;
    font-weight:800;
}


/* =========================================================
   NUMBER GRID
========================================================= */

.numbers{
    display:grid;

    grid-template-columns:
        repeat(10,minmax(0,1fr));

    gap:10px;
}

.number{
    position:relative;

    width:100%;
    aspect-ratio:1;

    padding:0;

    border-radius:50%;

    border:1px solid #e0e5eb;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #f1f4f7
        );

    color:#566174;

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

    cursor:pointer;

    box-shadow:
        0 2px 3px rgba(20,30,50,.05),
        inset 0 1px 0 white;

    transition:
        transform .18s ease,
        box-shadow .18s ease,
        border-color .18s ease,
        background .18s ease;
}

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

    border-color:#9fc6ff;

    color:var(--primary);

    box-shadow:
        0 7px 16px rgba(13,110,253,.12),
        0 0 0 3px rgba(13,110,253,.05);
}

.number.selected{
    color:white;

    border-color:var(--primary);

    background:
        linear-gradient(
            145deg,
            #2380ff,
            #0d6efd
        );

    box-shadow:
        0 7px 18px rgba(13,110,253,.30),
        0 0 0 4px rgba(13,110,253,.08),
        inset 0 1px 0 rgba(255,255,255,.25);

    transform:translateY(-2px);
}


/* =========================================================
   RIGHT COLUMN
========================================================= */

.right-column{
    display:flex;

    flex-direction:column;

    gap:22px;
}


/* =========================================================
   COUNTDOWN
========================================================= */

.countdown{
    padding:25px;
}

.small-label{
    color:var(--muted);

    font-size:10px;

    text-transform:uppercase;

    letter-spacing:1.3px;

    font-weight:700;
}

.timer{
    margin-top:10px;

    color:var(--text);

    font-size:39px;

    font-weight:800;

    letter-spacing:-2px;
}

.timer span{
    color:var(--primary);
}

.progress-wrap{
    height:5px;

    margin-top:18px;

    overflow:hidden;

    border-radius:10px;

    background:#edf0f4;
}

.progress{
    width:72%;
    height:100%;

    border-radius:10px;

    background:
        linear-gradient(
            90deg,
            #0d6efd,
            #5ba0ff
        );
}

.next-info{
    display:flex;
    justify-content:space-between;

    margin-top:15px;

    color:var(--muted);

    font-size:11px;
}

.next-info strong{
    color:var(--text);
}


/* =========================================================
   COUPON
========================================================= */

.coupon{
    padding:25px;
}

.coupon-top{
    display:flex;
    justify-content:space-between;
    align-items:center;

    margin-bottom:18px;
}

.coupon-number{
    color:#9aa3b1;

    font-size:10px;
}

.ticket{
    min-height:145px;

    padding:18px;

    border:1px dashed #dce2e9;

    border-radius:14px;

    background:#fafbfd;
}

.ticket-empty{
    min-height:108px;

    display:grid;
    place-items:center;

    text-align:center;

    color:#a1a9b5;

    font-size:11px;

    line-height:1.6;
}

.ticket-balls{
    display:flex;

    flex-wrap:wrap;

    gap:8px;
}

.mini-ball{
    width:39px;
    height:39px;

    display:grid;
    place-items:center;

    border-radius:50%;

    color:white;

    background:
        linear-gradient(
            145deg,
            #2380ff,
            #0d6efd
        );

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

    box-shadow:
        0 4px 10px rgba(13,110,253,.20);
}

.coupon-details{
    margin-top:18px;

    padding-top:17px;

    border-top:1px solid var(--border);
}

.detail{
    display:flex;
    justify-content:space-between;

    margin:10px 0;

    font-size:11px;
}

.detail span{
    color:var(--muted);
}

.detail strong{
    font-weight:700;
}

.play-button{
    width:100%;

    margin-top:18px;

    padding:14px;

    border:0;

    border-radius:11px;

    color:white;

    background:
        linear-gradient(
            135deg,
            #2380ff,
            #0d6efd
        );

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

    box-shadow:
        0 8px 20px rgba(13,110,253,.20);

    transition:.2s;
}

.play-button:hover{
    transform:translateY(-2px);

    box-shadow:
        0 12px 27px rgba(13,110,253,.28);
}


/* =========================================================
   INFO CARDS
========================================================= */

.info-grid{
    display:grid;

    grid-template-columns:
        repeat(3,1fr);

    gap:15px;

    margin-top:22px;
}

.info-card{
    padding:20px;

    border:1px solid var(--border);

    border-radius:17px;

    background:white;

    box-shadow:var(--shadow-sm);
}

.info-icon{
    width:34px;
    height:34px;

    display:grid;
    place-items:center;

    border-radius:9px;

    color:var(--primary);

    background:var(--primary-light);

    font-size:14px;

    margin-bottom:15px;
}

.info-label{
    color:var(--muted);

    font-size:10px;

    text-transform:uppercase;

    letter-spacing:1px;
}

.info-value{
    margin-top:5px;

    font-size:15px;

    font-weight:800;
}



/* =========================================================
   BALANCE
========================================================= */

.balance-actions{
    display:flex;
    gap:9px;
    margin-top:12px;
}

.balance-button{
    flex:1;
    border:0;
    border-radius:10px;
    padding:10px 12px;
    color:white;
    background:linear-gradient(135deg,#2380ff,#0d6efd);
    font-size:11px;
    font-weight:800;
    cursor:pointer;
    transition:.2s;
}

.balance-button:hover{
    transform:translateY(-1px);
    box-shadow:0 8px 18px rgba(13,110,253,.18);
}

.balance-button.secondary{
    color:#4d596b;
    background:#f3f6fa;
    border:1px solid var(--border);
}

.locked-note{
    display:none;
    margin-top:12px;
    padding:10px 12px;
    border-radius:10px;
    background:#fff5f5;
    color:#c53a3a;
    border:1px solid #ffd8d8;
    font-size:10px;
    line-height:1.5;
}

.locked-note.show{
    display:block;
}

.schedule-card{
    margin-top:22px;
    padding:22px 25px;
}

.schedule-times{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:9px;
    margin-top:14px;
}

.schedule-time{
    padding:10px 8px;
    text-align:center;
    border:1px solid var(--border);
    border-radius:10px;
    background:#f8fafc;
    color:#687386;
    font-size:11px;
    font-weight:800;
}

.schedule-time.active{
    color:white;
    background:linear-gradient(135deg,#2380ff,#0d6efd);
    border-color:#0d6efd;
    box-shadow:0 5px 14px rgba(13,110,253,.18);
}

.schedule-time.closed{
    color:#b24747;
    background:#fff5f5;
    border-color:#ffd8d8;
}

.balance-modal{
    position:fixed;
    inset:0;
    z-index:1100;
    display:none;
    align-items:center;
    justify-content:center;
    padding:20px;
    background:rgba(22,29,42,.48);
    backdrop-filter:blur(10px);
}

.balance-modal.show{
    display:flex;
}

.balance-box{
    width:min(420px,100%);
    padding:28px;
    border-radius:20px;
    background:white;
    box-shadow:0 30px 80px rgba(20,35,60,.22);
}

.balance-box h3{
    margin:0;
    font-size:19px;
    font-weight:800;
}

.balance-box p{
    margin:7px 0 20px;
    color:var(--muted);
    font-size:11px;
}

.balance-input{
    width:100%;
    padding:13px 14px;
    border:1px solid var(--border);
    border-radius:11px;
    outline:none;
    font-size:14px;
    font-weight:700;
}

.balance-input:focus{
    border-color:#9fc6ff;
    box-shadow:0 0 0 3px rgba(13,110,253,.08);
}

.balance-presets{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:8px;
    margin-top:10px;
}

.balance-preset{
    padding:10px;
    border:1px solid var(--border);
    border-radius:9px;
    background:#f8fafc;
    color:#566174;
    font-size:11px;
    font-weight:800;
    cursor:pointer;
}

.balance-modal-actions{
    display:flex;
    gap:9px;
    margin-top:18px;
}

.balance-modal-actions button{
    flex:1;
    padding:12px;
    border-radius:10px;
    font-size:11px;
    font-weight:800;
    cursor:pointer;
}

#confirmBalance{
    border:0;
    color:white;
    background:#0d6efd;
}

#cancelBalance{
    border:1px solid var(--border);
    color:#596476;
    background:#f8fafc;
}

@media(max-width:700px){
    .schedule-times{
        grid-template-columns:repeat(5,1fr);
        gap:6px;
    }

    .schedule-time{
        padding:9px 4px;
        font-size:10px;
    }
}

/* =========================================================
   RESULT MODAL
========================================================= */

.result{
    position:fixed;

    inset:0;

    z-index:1000;

    display:none;

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

    padding:20px;

    background:rgba(22,29,42,.48);

    backdrop-filter:blur(10px);
}

.result.show{
    display:flex;
}

.result-box{
    width:min(570px,100%);

    padding:35px;

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

    border-radius:24px;

    background:white;

    box-shadow:
        0 30px 80px rgba(20,35,60,.22);

    text-align:center;

    animation:modalIn .35s ease;
}

@keyframes modalIn{
    from{
        opacity:0;
        transform:translateY(20px) scale(.97);
    }

    to{
        opacity:1;
        transform:none;
    }
}

.result-title{
    font-size:20px;

    font-weight:800;
}

.draw-balls{
    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:10px;

    margin:28px 0;
}

.draw-ball{
    width:58px;
    height:58px;

    display:grid;
    place-items:center;

    border-radius:50%;

    color:white;

    background:
        linear-gradient(
            145deg,
            #2380ff,
            #0d6efd
        );

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

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

.result-message{
    color:var(--muted);

    font-size:13px;

    line-height:1.7;
}

.result-message strong{
    color:var(--primary);

    font-size:20px;
}

.close-button{
    margin-top:25px;

    padding:11px 25px;

    border:1px solid var(--border);

    border-radius:10px;

    color:#596476;

    background:#f8fafc;

    font-size:12px;
    font-weight:700;
}


/* =========================================================
   DRAW RESULTS HISTORY
========================================================= */

.results-history-card{
    margin-top:22px;
    padding:25px;
}

.results-live-badge{
    padding:7px 11px;
    border-radius:9px;
    background:#edf7f2;
    color:#16845a;
    font-size:10px;
    font-weight:800;
    letter-spacing:.8px;
}

.draw-results{
    display:grid;
    grid-template-columns:repeat(5,minmax(0,1fr));
    gap:12px;
    margin-top:20px;
}

.draw-result-item{
    min-width:0;
    padding:17px;
    border:1px solid var(--border);
    border-radius:15px;
    background:var(--surface-soft);
}

.draw-result-item.active{
    border-color:#b8d5ff;
    background:linear-gradient(180deg,#f4f8ff,#fff);
}

.draw-result-time{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:8px;
    margin-bottom:13px;
}

.draw-result-time strong{
    font-size:16px;
}

.draw-result-status{
    color:var(--muted);
    font-size:9px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.7px;
}

.result-number-row{
    display:flex;
    flex-wrap:wrap;
    gap:6px;
}

.result-number{
    width:31px;
    height:31px;
    display:grid;
    place-items:center;
    border-radius:50%;
    color:#fff;
    background:linear-gradient(145deg,#2380ff,#0d6efd);
    font-size:10px;
    font-weight:800;
}

.result-empty{
    min-height:73px;
    display:grid;
    place-items:center;
    text-align:center;
    color:#9aa3b1;
    font-size:10px;
    line-height:1.5;
}

.result-meta{
    margin-top:13px;
    padding-top:11px;
    border-top:1px solid var(--border);
    color:var(--muted);
    font-size:9px;
}

.result-meta strong{
    color:var(--text);
}

/* MULTI COUPON */

.coupon-count-badge{
    display:inline-flex;
    align-items:center;
    gap:5px;
    margin-top:8px;
    padding:5px 8px;
    border-radius:8px;
    background:#f0f5ff;
    color:var(--primary);
    font-size:9px;
    font-weight:800;
}

.coupon-balance-hint{
    margin-top:8px;
    color:var(--muted);
    font-size:10px;
}

@media(max-width:1100px){
    .draw-results{
        grid-template-columns:repeat(3,minmax(0,1fr));
    }
}

/* =========================================================
   LOTO6 EXCITING TOP / ACCOUNT / COUPONS
========================================================= */
.top-showcase{
    display:grid;
    grid-template-columns:minmax(0,3fr) minmax(260px,1fr);
    gap:18px;
    align-items:stretch;
}
.hero-exciting{
    min-height:360px;
    isolation:isolate;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.18);
    box-shadow:0 25px 70px rgba(13,110,253,.28),0 0 60px rgba(57,145,255,.12);
}
.hero-exciting::before{opacity:.9;background:radial-gradient(circle at 72% 18%,rgba(255,255,255,.22),transparent 28%),radial-gradient(circle at 20% 90%,rgba(92,173,255,.22),transparent 34%)}
.hero-exciting::after{animation:heroSweep 5s linear infinite}
.hero-glow{position:absolute;border-radius:50%;filter:blur(5px);pointer-events:none;z-index:0}
.hero-glow-one{width:280px;height:280px;right:12%;top:-110px;background:rgba(104,187,255,.22);box-shadow:0 0 100px rgba(104,187,255,.32)}
.hero-glow-two{width:180px;height:180px;left:32%;bottom:-100px;background:rgba(255,255,255,.12);box-shadow:0 0 80px rgba(255,255,255,.22)}
@keyframes heroSweep{0%{transform:translateX(-20%) rotate(-8deg);opacity:.2}50%{opacity:.8}100%{transform:translateX(45%) rotate(-8deg);opacity:.2}}
.hero-exciting .hero-content{max-width:68%}
.hero-exciting h1{font-size:clamp(40px,5vw,64px);text-shadow:0 5px 30px rgba(0,0,0,.16)}
.hero-exciting h1 span{color:#bfe0ff}
.hero-exciting p{max-width:620px;font-size:15px;line-height:1.7}
.hero-stats{display:flex;flex-wrap:wrap;gap:10px;margin-top:28px}
.hero-stats div{padding:10px 14px;border:1px solid rgba(255,255,255,.16);border-radius:12px;background:rgba(255,255,255,.09);backdrop-filter:blur(10px)}
.hero-stats span{display:block;color:rgba(255,255,255,.6);font-size:9px;text-transform:uppercase;letter-spacing:1px}
.hero-stats strong{display:block;margin-top:3px;font-size:12px}
.hero-jackpot{right:34px;bottom:30px}
.hero-jackpot-note{display:block;margin-top:5px;color:rgba(255,255,255,.55);font-size:9px}
.countdown-exciting{position:relative;overflow:hidden;min-height:360px;padding:27px;border-color:#cfe1ff;background:linear-gradient(145deg,#fff,#f3f8ff);box-shadow:0 20px 55px rgba(13,110,253,.13),0 0 38px rgba(86,161,255,.1);display:flex;flex-direction:column;justify-content:center}
.countdown-exciting::before{content:"";position:absolute;inset:-80px auto auto -80px;width:210px;height:210px;border-radius:50%;background:rgba(13,110,253,.1);filter:blur(18px);animation:countPulse 3s ease-in-out infinite}
.countdown-orbit{position:absolute;right:-65px;top:-65px;width:180px;height:180px;border-radius:50%;border:1px solid rgba(13,110,253,.16);box-shadow:0 0 0 20px rgba(13,110,253,.025),0 0 50px rgba(13,110,253,.12);animation:orbitSpin 9s linear infinite}
@keyframes countPulse{0%,100%{transform:scale(.85);opacity:.5}50%{transform:scale(1.15);opacity:1}}
@keyframes orbitSpin{to{transform:rotate(360deg)}}
.countdown-badge{position:relative;z-index:2;display:inline-flex;align-items:center;gap:7px;width:max-content;padding:7px 10px;border-radius:9px;background:#eaf3ff;color:#0d6efd;font-size:9px;font-weight:900;letter-spacing:1px}
.pulse-dot{width:7px;height:7px;border-radius:50%;background:#18a66a;box-shadow:0 0 0 5px rgba(24,166,106,.12),0 0 16px rgba(24,166,106,.55);animation:pulseDot 1.4s infinite}
@keyframes pulseDot{50%{transform:scale(.7);opacity:.55}}
.countdown-exciting .small-label{position:relative;z-index:2;margin-top:22px}
.next-draw-time{position:relative;z-index:2;margin-top:4px;font-size:25px;font-weight:900;color:#0d6efd}
.countdown-exciting .timer{position:relative;z-index:2;margin-top:2px;font-size:34px;letter-spacing:-1.5px}
.countdown-caption{position:relative;z-index:2;margin-top:4px;color:#65738a;font-size:10px;font-weight:700}
.schedule-top{margin-top:18px;padding:12px 14px;background:rgba(255,255,255,.9)}
.schedule-top .schedule-times{margin-top:0}
.schedule-time{display:flex;flex-direction:column;gap:3px;padding:11px 8px}
.schedule-time span{font-size:12px}.schedule-time small{font-size:8px;font-weight:600;color:inherit;opacity:.65}
.user-chip{display:flex;align-items:center;gap:9px;padding:6px 7px 6px 6px;border:1px solid var(--border);border-radius:14px;background:rgba(255,255,255,.8);box-shadow:var(--shadow-sm)}
.user-avatar{width:34px;height:34px;border-radius:10px;display:grid;place-items:center;background:#eaf3ff;color:#0d6efd;font-weight:900;font-size:13px}
.user-chip-copy{display:flex;flex-direction:column;min-width:80px}.user-chip-copy strong{font-size:10px}.user-chip-copy span{font-size:10px;color:#0d6efd;font-weight:800;margin-top:2px}
.nav-add-balance{border:0;border-radius:9px;padding:9px 11px;color:#fff;background:#0d6efd;font-size:9px;font-weight:800;cursor:pointer}
.my-coupons-card{margin-top:22px;padding:25px}.my-coupons-list{margin-top:18px;display:grid;gap:9px}.coupon-history-row{display:grid;grid-template-columns:90px 1fr 110px;align-items:center;gap:12px;padding:12px;border:1px solid var(--border);border-radius:12px;background:#fbfcfe}.coupon-history-time strong{display:block;font-size:12px}.coupon-history-time span{display:block;margin-top:3px;color:var(--muted);font-size:8px;font-weight:800;text-transform:uppercase}.coupon-history-balls{display:flex;gap:6px;flex-wrap:wrap}.coupon-history-balls span{width:27px;height:27px;display:grid;place-items:center;border-radius:50%;background:#edf4ff;color:#0d6efd;font-size:9px;font-weight:900}.coupon-history-meta{text-align:right;color:var(--muted);font-size:9px}.coupon-history-meta strong{color:#18a66a;font-size:11px}.coupon-history-empty{padding:22px;border:1px dashed #dce2e9;border-radius:13px;text-align:center;color:#98a2b2;font-size:10px}.about-card{margin-top:22px;padding:25px;display:flex;gap:15px;align-items:flex-start}.about-icon{width:34px;height:34px;flex:0 0 34px;display:grid;place-items:center;border-radius:10px;background:#eaf3ff;color:#0d6efd;font-weight:900}.about-card p{margin:8px 0 0;color:#687386;font-size:11px;line-height:1.8}.setup-box{position:relative}.setup-logo{width:52px;height:52px;border-radius:15px;display:grid;place-items:center;color:#fff;background:linear-gradient(145deg,#2380ff,#0d6efd);font-size:20px;font-weight:900;box-shadow:0 10px 25px rgba(13,110,253,.25);margin-bottom:17px}.setup-kicker{color:#0d6efd;font-size:9px;font-weight:900;letter-spacing:1.2px}.setup-box h3{margin-top:6px}.setup-label{display:block;margin:13px 0 6px;color:#687386;font-size:10px;font-weight:800}.setup-error{min-height:18px;margin-top:10px;color:#c53a3a;font-size:10px;line-height:1.5}.setup-submit{width:100%;margin-top:4px;padding:13px;border:0;border-radius:11px;color:#fff;background:linear-gradient(135deg,#2380ff,#0d6efd);font-size:11px;font-weight:900;cursor:pointer;box-shadow:0 10px 25px rgba(13,110,253,.2)}
@media(max-width:1000px){.top-showcase{grid-template-columns:1fr}.hero-exciting .hero-content{max-width:100%}.countdown-exciting{min-height:260px}.draw-results{grid-template-columns:repeat(3,minmax(0,1fr))}}
@media(max-width:700px){.user-chip-copy,.nav-add-balance{display:none}.user-chip{padding:5px}.top-showcase{gap:12px}.hero-exciting{min-height:430px}.hero-exciting .hero-content{max-width:100%}.hero-exciting h1{font-size:42px}.hero-jackpot{position:absolute;right:23px;bottom:25px}.hero-stats{margin-top:20px}.schedule-times{grid-template-columns:repeat(5,1fr);gap:5px}.schedule-time{padding:9px 3px}.schedule-time span{font-size:10px}.schedule-time small{font-size:7px}.coupon-history-row{grid-template-columns:65px 1fr}.coupon-history-meta{grid-column:2;text-align:left}.about-card{padding:19px}.draw-results{grid-template-columns:1fr 1fr}.result-box{padding:28px 18px}}

/* =========================================================
   MOBILE
========================================================= */

@media(max-width:1000px){

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

    .right-column{
        display:grid;

        grid-template-columns:1fr 1fr;
    }

    .hero-jackpot{
        position:relative;

        right:auto;
        bottom:auto;

        margin-top:35px;

        text-align:left;
    }
}

@media(max-width:700px){

    .navbar{
        height:64px;
    }

    .page{
        padding:20px 13px 50px;
    }

    .hero{
        padding:28px 23px;

        border-radius:18px;
    }

    .hero h1{
        font-size:38px;

        letter-spacing:-1.7px;
    }

    .hero-jackpot{
        margin-top:28px;
    }

    .hero-jackpot-value{
        font-size:28px;
    }

    .right-column{
        display:flex;
    }

    .number-card{
        padding:20px 14px;
    }

    .numbers{
        grid-template-columns:repeat(6,1fr);

        gap:8px;
    }

    .number{
        font-size:11px;
    }

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

    .nav-right .demo-badge{
        display:none;
    }

    .result-box{
        padding:28px 18px;
    }
}

/* =========================================================
   v1.0.8 NAV / ACCOUNT SUMMARY / COUPON MODAL
========================================================= */
.navbar{
    height:78px;
    background:rgba(255,255,255,.94);
    box-shadow:0 8px 25px rgba(24,43,72,.05);
}

.nav-container{
    max-width:1255px;
    padding:0 24px;
}

.nav-actions{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:10px;
}

.nav-balance-pill{
    min-width:92px;
    padding:8px 13px;
    border:1px solid #e1e7ef;
    border-radius:12px;
    background:#f8fafc;
    display:flex;
    flex-direction:column;
    line-height:1.05;
}

.nav-balance-pill span{
    color:#8a94a4;
    font-size:8px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.8px;
}

.nav-balance-pill strong{
    margin-top:4px;
    color:#16845a;
    font-size:12px;
    font-weight:900;
}

.nav-action{
    min-height:42px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    padding:0 15px;
    border:1px solid #dfe6ef;
    border-radius:12px;
    background:#fff;
    color:#26334a;
    font-size:10px;
    font-weight:900;
    cursor:pointer;
    transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease;
}

.nav-action:hover{
    transform:translateY(-1px);
    box-shadow:0 8px 20px rgba(24,43,72,.09);
}

.nav-action-icon{
    font-size:15px;
    line-height:1;
}

.nav-action-badge{
    min-width:20px;
    height:20px;
    padding:0 5px;
    display:inline-grid;
    place-items:center;
    border-radius:7px;
    background:#edf4ff;
    color:#0d6efd;
    font-size:8px;
    font-weight:900;
}

.nav-add-balance{
    border:0;
    color:#fff;
    background:linear-gradient(135deg,#20bf7a,#0b9f62);
    box-shadow:0 8px 20px rgba(24,166,106,.18);
}

.nav-add-balance:hover{
    box-shadow:0 11px 25px rgba(24,166,106,.27);
}

.account-cards{
    display:grid;
    grid-template-columns:1.35fr 1fr 1fr;
    gap:14px;
    margin-top:18px;
}

.account-card{
    min-height:104px;
    position:relative;
    display:flex;
    align-items:center;
    gap:13px;
    padding:17px 18px;
    overflow:hidden;
    border:1px solid var(--border);
    border-radius:18px;
    background:#fff;
    box-shadow:var(--shadow-sm);
}

.account-card::after{
    content:"";
    position:absolute;
    width:130px;
    height:130px;
    right:-60px;
    top:-70px;
    border-radius:50%;
    background:rgba(255,255,255,.18);
    pointer-events:none;
}

.account-card-icon{
    width:45px;
    height:45px;
    flex:0 0 45px;
    display:grid;
    place-items:center;
    border-radius:13px;
    font-size:16px;
    font-weight:900;
}

.account-card-copy{
    min-width:0;
    display:flex;
    flex-direction:column;
}

.account-card-copy span{
    color:#718096;
    font-size:9px;
    font-weight:800;
}

.account-card-copy strong{
    margin-top:5px;
    color:#18243a;
    font-size:21px;
    font-weight:900;
    letter-spacing:-.6px;
}

.account-card-link,
.account-card-note{
    position:relative;
    z-index:2;
    margin-left:auto;
    align-self:flex-end;
    margin-bottom:1px;
    border:0;
    background:transparent;
    color:#16845a;
    font-size:9px;
    font-weight:900;
    cursor:pointer;
    white-space:nowrap;
}

.account-card-link.secondary{color:#0d6efd}
.account-card-note{color:#8a94a4;cursor:default}

.balance-card{
    border-color:transparent;
    color:#fff;
    background:linear-gradient(135deg,#13bd76 0%,#0a9e61 52%,#087d50 100%);
    box-shadow:0 16px 35px rgba(24,166,106,.18);
}

.balance-card .account-card-icon{
    color:#0c9d61;
    background:rgba(255,255,255,.92);
}

.balance-card .account-card-copy span,
.balance-card .account-card-copy strong{
    color:#fff;
}

.balance-card .account-card-copy strong{font-size:24px}
.balance-card .account-card-link{color:#fff}

.coupon-summary-card .account-card-icon{
    color:#0d6efd;
    background:#eaf3ff;
}

.jackpot-card .account-card-icon{
    color:#d28a00;
    background:#fff5d9;
}

.coupon-modal-box{
    width:min(650px,100%);
    max-height:min(78vh,720px);
    overflow:auto;
}

.modal-heading-row{
    display:flex;
    justify-content:space-between;
    gap:20px;
    align-items:flex-start;
}

.modal-kicker{
    color:#0d6efd;
    font-size:8px;
    font-weight:900;
    letter-spacing:1.2px;
}

.modal-heading-row h3{margin-top:5px}

.modal-close-button{
    width:36px;
    height:36px;
    flex:0 0 36px;
    display:grid;
    place-items:center;
    border:1px solid var(--border);
    border-radius:10px;
    background:#f8fafc;
    color:#667085;
    font-size:20px;
    line-height:1;
    cursor:pointer;
}

.coupon-modal-summary{
    margin-top:18px;
    padding:12px 14px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    border-radius:12px;
    background:#f4f8ff;
    color:#687386;
    font-size:10px;
    font-weight:700;
}

.coupon-modal-summary strong{
    color:#0d6efd;
    font-size:10px;
}

.coupon-modal .my-coupons-list{margin-top:12px}

@media(max-width:1000px){
    .account-cards{grid-template-columns:1fr 1fr}
    .balance-card{grid-column:1 / -1}
}

@media(max-width:700px){
    .navbar{height:68px}
    .nav-container{padding:0 13px}
    .nav-actions{gap:6px}
    .nav-balance-pill{display:none}
    .nav-action{min-height:38px;padding:0 10px;font-size:9px}
    .nav-action-icon{font-size:13px}
    .nav-action-badge{min-width:18px;height:18px}
    .nav-add-balance{display:inline-flex}
    .nav-coupons span:nth-child(2){display:none}
    .account-cards{grid-template-columns:1fr;margin-top:13px}
    .balance-card{grid-column:auto}
    .account-card{min-height:92px}
    .coupon-modal-box{padding:21px}
    .coupon-history-row{grid-template-columns:65px 1fr}
    .coupon-history-meta{grid-column:2;text-align:left}
}


/* =========================================================
   v1.0.9 VISUAL CORRECTION
========================================================= */
.hero-exciting{
    background:linear-gradient(135deg,#18b978 0%,#0fa968 48%,#078553 100%);
    box-shadow:0 25px 70px rgba(24,166,106,.24),0 0 60px rgba(34,190,123,.10);
}
.hero-exciting::before{
    background:radial-gradient(circle at 72% 18%,rgba(255,255,255,.22),transparent 28%),radial-gradient(circle at 20% 90%,rgba(111,255,190,.20),transparent 34%);
}
.hero-exciting h1 span{color:#c9ffe5}
.hero-glow-one{background:rgba(119,255,194,.20);box-shadow:0 0 100px rgba(119,255,194,.28)}

.countdown-exciting{
    border-color:rgba(255,255,255,.18);
    background:linear-gradient(145deg,#1677f5 0%,#0d6efd 48%,#0757d5 100%);
    box-shadow:0 20px 55px rgba(13,110,253,.24),0 0 38px rgba(86,161,255,.16);
    color:#fff;
}
.countdown-exciting::before{background:rgba(255,255,255,.10)}
.countdown-orbit{border-color:rgba(255,255,255,.18);box-shadow:0 0 0 20px rgba(255,255,255,.025),0 0 50px rgba(255,255,255,.12)}
.countdown-badge{background:rgba(255,255,255,.14);color:#fff;border:1px solid rgba(255,255,255,.12)}
.countdown-exciting .small-label{color:rgba(255,255,255,.72)}
.next-draw-time{color:#fff}
.countdown-exciting .timer{color:#fff}
.countdown-caption{color:rgba(255,255,255,.76)}
.countdown-exciting .next-info{color:rgba(255,255,255,.72)}
.countdown-exciting .next-info strong{color:#fff}
.countdown-exciting .progress-wrap{background:rgba(255,255,255,.16)}
.countdown-exciting .progress{background:linear-gradient(90deg,#8ee9ff,#fff)}

.nav-container{
    max-width:1255px;
    padding-left:24px;
    padding-right:24px;
}
.nav-actions{margin-left:auto}

@media(max-width:700px){
    .nav-container{padding-left:13px;padding-right:13px}
    .nav-actions{margin-left:auto}
}


/* =========================================================
   v1.1.1 FINAL UI CORRECTIONS (legacy)
========================================================= */
.account-cards{display:none!important}

.nav-container{max-width:1255px;margin:0 auto;padding-left:24px;padding-right:24px}
.nav-actions{margin-left:auto;display:flex;align-items:center;justify-content:flex-end;gap:10px}
.nav-info{width:42px;min-width:42px;padding:0;border-color:#dce4ef;background:#f7faff;color:#0d6efd}
.nav-info-icon{width:22px;height:22px;display:grid;place-items:center;border:2px solid currentColor;border-radius:50%;font-size:12px;font-weight:900;line-height:1}

/* Keep the requested visual relationship: green hero on the left, blue live counter on the right. */
.hero-exciting{background:linear-gradient(135deg,#18b978 0%,#0fa968 48%,#078553 100%)}
.countdown-exciting{background:linear-gradient(135deg,#1978f5 0%,#0d6efd 48%,#0757d5 100%)}
.countdown-exciting .timer span{color:#bfe0ff!important}

/* Professional results cards */
.results-history-card{padding:28px;border:1px solid #dfe7f2;background:linear-gradient(180deg,#ffffff 0%,#f8fbff 100%);box-shadow:0 18px 50px rgba(24,43,72,.08)}
.results-history-card .card-header-custom{padding-bottom:20px;border-bottom:1px solid #edf1f6}
.results-live-badge{background:linear-gradient(135deg,#eaf7f1,#f4fbf7);border:1px solid #ccecdf;box-shadow:0 5px 14px rgba(24,166,106,.08)}
.draw-results{gap:14px;margin-top:18px}
.draw-result-item{padding:18px;border:1px solid #e1e8f1;border-radius:18px;background:#fff;box-shadow:0 8px 24px rgba(24,43,72,.055);transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease}
.draw-result-item:hover{transform:translateY(-2px);box-shadow:0 14px 32px rgba(24,43,72,.09)}
.draw-result-item.active{border-color:#9fc6ff;background:linear-gradient(180deg,#f5f9ff 0%,#fff 100%);box-shadow:0 12px 30px rgba(13,110,253,.10)}
.result-card-top{display:flex;align-items:center;justify-content:space-between;gap:10px}
.result-time-block{display:flex;flex-direction:column}
.result-time-label{color:#8b96a8;font-size:7px;font-weight:900;letter-spacing:1.1px}
.result-time-block strong{margin-top:2px;color:#172033;font-size:22px;letter-spacing:-.8px}
.draw-result-status{padding:5px 7px;border-radius:7px;background:#f1f4f8;color:#7c8798;font-size:7px;letter-spacing:.55px}
.draw-result-status.completed{background:#eaf7f1;color:#16845a}
.draw-result-status.next{background:#eaf3ff;color:#0d6efd}
.draw-result-status.pending{background:#f4f5f7;color:#8a94a4}
.result-jackpot{margin:15px 0 13px;padding:12px 13px;border-radius:12px;background:#f8fafc;border:1px solid #edf1f5}
.result-jackpot span{display:block;color:#8a94a4;font-size:7px;font-weight:900;text-transform:uppercase;letter-spacing:.9px}
.result-jackpot strong{display:block;margin-top:4px;color:#0d6efd;font-size:16px;letter-spacing:-.4px}
.result-number-row{gap:6px}
.result-number{width:30px;height:30px;background:linear-gradient(145deg,#2380ff,#0d6efd);box-shadow:0 5px 12px rgba(13,110,253,.18);font-size:9px}
.result-empty{min-height:72px;padding:12px;border:1px dashed #d9e1eb;border-radius:12px;background:#fbfcfe;display:flex;flex-direction:column;gap:6px}
.result-empty-icon{font-size:17px;color:#9aa7b8}
.result-meta{display:grid;grid-template-columns:1fr;gap:8px;margin-top:14px;padding-top:12px;border-top:1px solid #edf1f5}
.result-meta div{display:flex;align-items:center;justify-content:space-between;gap:8px}
.result-meta span{color:#8a94a4;font-size:8px}
.result-meta strong{color:#25334a;font-size:9px}

.info-modal-box{width:min(700px,100%);max-height:min(78vh,760px);overflow:auto}
.info-modal-content{margin-top:18px;padding:18px;border:1px solid #e3e9f1;border-radius:15px;background:linear-gradient(180deg,#f9fbfe,#fff)}
.info-modal-content p{margin:0 0 13px;color:#687386;font-size:11px;line-height:1.75}
.info-modal-content p:last-child{margin-bottom:0;padding-top:14px;border-top:1px solid #e7ecf2;color:#27364d}
.info-modal-content strong{color:#172033}

@media(max-width:700px){
    .nav-container{padding-left:13px;padding-right:13px}
    .nav-actions{gap:6px}
    .nav-action{min-height:38px;padding:0 10px;font-size:9px}
    .nav-info{width:38px;min-width:38px;padding:0}
    .nav-info-icon{width:20px;height:20px}
    .draw-results{grid-template-columns:1fr 1fr}
}


/* =========================================================
   v1.1.9 NAVBAR + LIVE COUNTDOWN FINAL
========================================================= */
.navbar{
    height:78px;
    background:rgba(255,255,255,.96);
    border-bottom:1px solid #e5eaf1;
    box-shadow:0 10px 28px rgba(20,35,60,.07);
    backdrop-filter:blur(18px);
}
.nav-container{
    max-width:1255px;
    height:100%;
    margin:0 auto;
    padding:0 20px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}
.logo{
    display:flex;
    align-items:center;
    margin:0;
    padding:0;
    line-height:0;
    text-decoration:none;
}
.brand-logo-image{
    width:46px;
    height:46px;
    display:block;
    object-fit:contain;
    border-radius:12px;
    box-shadow:0 8px 20px rgba(13,110,253,.16);
}
.nav-actions{
    margin-left:auto;
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:10px;
}
.nav-action{
    min-height:44px;
    padding:0 16px;
    border:1px solid #dfe6ef;
    border-radius:13px;
    background:#fff;
    color:#1d2a3d;
    font-size:10px;
    font-weight:900;
    box-shadow:0 5px 16px rgba(24,43,72,.05);
}
.nav-action:hover{
    border-color:#bfd5f5;
    box-shadow:0 9px 24px rgba(24,43,72,.10);
}
.nav-add-balance{
    color:#fff;
    border-color:transparent;
    background:linear-gradient(135deg,#19b979,#0a9d60);
}
.nav-coupons{
    background:#f8fbff;
    color:#0d6efd;
    border-color:#d7e5f9;
}
.nav-info{
    width:44px;
    min-width:44px;
    padding:0;
    color:#0d6efd;
    background:#fff;
}
.nav-info-icon{
    width:23px;
    height:23px;
    border:2px solid currentColor;
    font-size:12px;
}
.countdown-exciting{
    background:#0d6efd !important;
    border-color:#0d6efd !important;
    color:#fff;
    box-shadow:0 20px 55px rgba(13,110,253,.25),0 0 42px rgba(13,110,253,.12);
}
.countdown-exciting .timer span{
    color:rgba(255,255,255,.95) !important;
    opacity:1 !important;
}
.countdown-exciting .timer{color:#fff !important}
/* Keep the Loto6 hero in its original blue visual language. */
.hero-exciting{
    background:linear-gradient(135deg,#0757d5 0%,#0d6efd 52%,#2382ff 100%) !important;
    box-shadow:0 25px 70px rgba(13,110,253,.22),0 0 60px rgba(34,126,255,.10);
}
@media(max-width:700px){
    .navbar{height:68px}
    .nav-container{padding:0 13px}
    .brand-logo-image{width:40px;height:40px;border-radius:10px}
    .nav-actions{gap:6px}
    .nav-action{min-height:38px;padding:0 10px;font-size:9px}
    .nav-info{width:38px;min-width:38px}
}

/* =========================================================
   v1.1.9 FINAL VISUAL CORRECTIONS
========================================================= */
.hero-exciting{
    background:linear-gradient(135deg,#18b978 0%,#0fa968 48%,#078553 100%) !important;
    box-shadow:0 25px 70px rgba(24,166,106,.26),0 0 70px rgba(24,190,123,.16);
    transition:transform .22s ease,box-shadow .22s ease,filter .22s ease;
}
.hero-exciting::before{
    background:radial-gradient(circle at 72% 18%,rgba(255,255,255,.24),transparent 28%),radial-gradient(circle at 20% 90%,rgba(111,255,190,.22),transparent 34%) !important;
}
.hero-exciting:hover{
    transform:translateY(-3px);
    box-shadow:0 30px 82px rgba(24,166,106,.32),0 0 85px rgba(24,190,123,.20);
}
.countdown-exciting{
    background:#0d6efd !important;
    border-color:#0d6efd !important;
    color:#fff !important;
    box-shadow:0 22px 60px rgba(13,110,253,.28),0 0 70px rgba(13,110,253,.18);
    transition:transform .22s ease,box-shadow .22s ease,filter .22s ease;
}
.countdown-exciting:hover{
    transform:translateY(-3px);
    box-shadow:0 30px 82px rgba(13,110,253,.34),0 0 90px rgba(13,110,253,.22);
}
/* Keep the separator dots clearly visible on the blue live counter. */
.countdown-exciting .timer span{
    color:#fff !important;
    opacity:1 !important;
    text-shadow:0 0 14px rgba(255,255,255,.55);
}
/* All regular cards receive the same subtle lift on hover. */
.number-card,
.coupon,
.results-history-card{
    transition:transform .22s ease,box-shadow .22s ease,border-color .22s ease;
}
.number-card:hover,
.coupon:hover,
.results-history-card:hover{
    transform:translateY(-3px);
    box-shadow:0 18px 42px rgba(24,43,72,.11);
}
/* In the results list, only the next-draw card is solid blue. */
.draw-result-item.active{
    background:#0d6efd !important;
    border-color:#0d6efd !important;
    color:#fff !important;
    box-shadow:0 18px 42px rgba(13,110,253,.28),0 0 34px rgba(13,110,253,.14);
}
.draw-result-item.active .result-time-label,
.draw-result-item.active .result-time-block strong,
.draw-result-item.active .result-jackpot span,
.draw-result-item.active .result-jackpot strong,
.draw-result-item.active .result-meta span,
.draw-result-item.active .result-meta strong{
    color:#fff !important;
}
.draw-result-item.active .draw-result-status.next{
    background:rgba(255,255,255,.16) !important;
    border:1px solid rgba(255,255,255,.24);
    color:#fff !important;
}
.draw-result-item.active .result-jackpot{
    background:rgba(255,255,255,.12) !important;
    border-color:rgba(255,255,255,.18) !important;
}
.draw-result-item.active .result-meta{
    border-top-color:rgba(255,255,255,.18) !important;
}
.draw-result-item.active .result-number{
    background:#fff !important;
    color:#0d6efd !important;
    box-shadow:0 7px 16px rgba(0,0,0,.12);
}
.draw-result-item.active .result-empty{
    border-color:rgba(255,255,255,.25) !important;
    background:rgba(255,255,255,.10) !important;
    color:#fff !important;
}


/* =========================================================
   v1.1.9 — QUICK PICKS / MULTI-COLUMN COUPONS / CUTOFF
========================================================= */
.number-tools{margin-top:20px;display:grid;grid-template-columns:minmax(0,1fr) minmax(300px,1.05fr);gap:16px;align-items:end}
.quick-picks{display:flex;flex-wrap:wrap;gap:8px;align-items:flex-end}
.quick-pick{border:1px solid #dfe6ef;border-radius:10px;background:#f8fafc;color:#40506a;padding:10px 12px;font-size:10px;font-weight:800;cursor:pointer;transition:.18s}
.quick-pick:hover{transform:translateY(-2px);border-color:#a9c9ff;box-shadow:0 8px 18px rgba(13,110,253,.10);color:#0d6efd}
.quick-pick.primary{color:#fff;border-color:#0d6efd;background:linear-gradient(135deg,#2380ff,#0d6efd);box-shadow:0 8px 18px rgba(13,110,253,.18)}
.column-builder{padding:13px;border:1px solid #e3e9f1;border-radius:14px;background:linear-gradient(180deg,#f9fbfe,#fff)}
.column-builder-head{display:flex;justify-content:space-between;align-items:center;margin-bottom:9px;color:#65738a;font-size:9px;font-weight:800;text-transform:uppercase;letter-spacing:.7px}
.column-builder-head strong{color:#0d6efd;font-size:10px}
.column-list{display:grid;gap:6px;max-height:116px;overflow:auto}
.column-row{display:grid;grid-template-columns:24px 1fr 22px;align-items:center;gap:7px;padding:6px 7px;border:1px solid #edf1f6;border-radius:9px;background:#fff}
.column-index{width:22px;height:22px;display:grid;place-items:center;border-radius:7px;background:#edf4ff;color:#0d6efd;font-size:8px;font-weight:900}
.column-balls{display:flex;gap:4px;flex-wrap:wrap}
.column-balls span{width:22px;height:22px;display:grid;place-items:center;border-radius:50%;background:#f0f5fb;color:#25334a;font-size:7px;font-weight:900}
.column-remove{width:22px;height:22px;border:0;border-radius:7px;background:#fff1f1;color:#c53a3a;font-size:14px;line-height:1;cursor:pointer}
.add-column-button{width:100%;margin-top:8px;padding:9px;border:0;border-radius:9px;background:#0d6efd;color:#fff;font-size:9px;font-weight:900;cursor:pointer;transition:.18s}
.add-column-button:hover:not(:disabled){transform:translateY(-1px);box-shadow:0 8px 18px rgba(13,110,253,.18)}
.add-column-button:disabled{opacity:.45;cursor:not-allowed}
.ticket-headline{display:flex;justify-content:space-between;align-items:center;margin-bottom:11px;color:#67748a;font-size:9px;font-weight:800;text-transform:uppercase;letter-spacing:.6px}
.ticket-headline strong{color:#0d6efd}
.ticket-balls{display:grid;gap:7px}
.ticket-column-preview{display:grid;grid-template-columns:22px 1fr;align-items:center;gap:6px}
.ticket-column-preview>div{display:flex;gap:5px;flex-wrap:wrap}
.ticket-column-no{width:22px;height:22px;display:grid;place-items:center;border-radius:7px;background:#edf4ff;color:#0d6efd;font-size:8px;font-weight:900}
.ticket-column-preview.draft{padding-top:7px;border-top:1px dashed #dfe6ef}
.draft-ball{opacity:.72}
.balance-modal-presets{grid-template-columns:repeat(5,1fr)}
.setup-balance-presets{grid-template-columns:repeat(5,1fr)}
.selected-balance-label{margin-top:10px;padding:10px 12px;border-radius:10px;background:#f4f8ff;color:#0d6efd;font-size:10px;font-weight:900;text-align:center}
.balance-preset.selected{border-color:#0d6efd;background:#edf4ff;color:#0d6efd;box-shadow:0 0 0 2px rgba(13,110,253,.08)}
.coupon-tab-card{border:1px solid #e3e9f1;border-radius:15px;background:#fff;overflow:hidden;box-shadow:0 7px 20px rgba(24,43,72,.05);transition:.18s}
.coupon-tab-card:hover{transform:translateY(-2px);box-shadow:0 13px 28px rgba(24,43,72,.09)}
.coupon-tab-button{width:100%;display:grid;grid-template-columns:38px 1fr auto 18px;gap:10px;align-items:center;padding:13px 14px;border:0;background:#fff;text-align:left;cursor:pointer}
.coupon-tab-icon{width:32px;height:32px;display:grid;place-items:center;border-radius:10px;background:#edf4ff;color:#0d6efd;font-size:8px;font-weight:900}
.coupon-tab-main{display:flex;flex-direction:column;min-width:0}
.coupon-tab-main strong{font-size:11px;color:#172033}
.coupon-tab-main small{margin-top:4px;color:#8792a3;font-size:8px;font-weight:700}
.coupon-tab-status{padding:5px 7px;border-radius:7px;background:#f1f7f4;color:#16845a;font-size:8px;font-weight:900}
.coupon-tab-chevron{color:#8792a3;font-size:15px;transition:.18s}
.coupon-tab-button.open .coupon-tab-chevron{transform:rotate(180deg)}
.coupon-tab-panel{display:none;padding:0 14px 13px;border-top:1px solid #edf1f6;background:#fbfcfe}
.coupon-tab-panel.open{display:grid;gap:6px;padding-top:10px}
.coupon-detail-row{display:grid;grid-template-columns:25px 1fr auto;gap:8px;align-items:center;padding:7px 8px;border-radius:9px;background:#fff;border:1px solid #edf1f6}
.coupon-detail-no{width:23px;height:23px;display:grid;place-items:center;border-radius:7px;background:#edf4ff;color:#0d6efd;font-size:8px;font-weight:900}
.coupon-detail-balls{display:flex;gap:4px;flex-wrap:wrap}
.coupon-detail-balls span{width:23px;height:23px;display:grid;place-items:center;border-radius:50%;background:#edf4ff;color:#0d6efd;font-size:7px;font-weight:900}
.coupon-detail-result{color:#687386;font-size:8px;font-weight:800}
.countdown-exciting.countdown-cutoff{background:linear-gradient(135deg,#d92d3f 0%,#c81e35 52%,#a91529 100%) !important;box-shadow:0 24px 60px rgba(200,30,53,.28),0 0 45px rgba(255,70,90,.16) !important}
.countdown-exciting.countdown-cutoff .countdown-badge{background:rgba(255,255,255,.16);color:#fff;border-color:rgba(255,255,255,.24)}
.countdown-exciting.countdown-cutoff .progress{background:linear-gradient(90deg,#fff,#ffd8dc)}
@media(max-width:900px){.number-tools{grid-template-columns:1fr}.balance-modal-presets,.setup-balance-presets{grid-template-columns:repeat(5,1fr)}}
@media(max-width:600px){.quick-picks{display:grid;grid-template-columns:1fr}.balance-modal-presets,.setup-balance-presets{grid-template-columns:repeat(3,1fr)}.coupon-tab-button{grid-template-columns:34px 1fr 18px}.coupon-tab-status{display:none}}


/* =========================================================
   v1.1.9 — SIMPLE COUPON BUILDER + LOCKED RESULTS
========================================================= */
.number-card{padding:24px}
.number-card .card-header-custom{margin-bottom:18px}
.number-card .title{font-size:16px}
.number-card .subtitle{font-size:10px}
.numbers{gap:8px}
.number-tools{margin-top:18px;display:block}
.quick-picks{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:8px}
.quick-pick{min-height:40px;padding:9px 10px;border-radius:11px;background:#f7f9fc;border:1px solid #e3e8ef;font-size:9px;box-shadow:none}
.quick-pick:hover{transform:translateY(-1px);box-shadow:0 8px 18px rgba(13,110,253,.08)}
.quick-pick.primary{background:#0d6efd;border-color:#0d6efd}

.coupon{padding:22px}
.coupon-top{margin-bottom:14px}
.coupon-top .title{font-size:15px}
.coupon-number{font-size:9px}
.coupon-column-builder{margin-bottom:12px;padding:11px;border-radius:12px}
.coupon-column-builder .column-builder-head{margin-bottom:7px}
.coupon-column-builder .column-list{max-height:132px;overflow:auto}
.column-row{grid-template-columns:23px minmax(0,1fr) 21px;padding:5px 6px;gap:6px}
.column-balls{display:flex;flex-wrap:nowrap;gap:3px;min-width:0;overflow:hidden}
.column-balls span{width:20px;height:20px;flex:0 0 20px;font-size:7px}
.column-remove{width:21px;height:21px}
.add-column-button{margin-top:7px;width:100%;padding:8px 9px;border-radius:9px;font-size:9px}
.ticket{min-height:0;padding:13px;border-radius:12px;background:#f8fafc}
.ticket-headline{margin-bottom:8px;font-size:8px}
.ticket-balls{display:grid;gap:5px;max-height:205px;overflow:auto}
.ticket-column-preview{display:grid;grid-template-columns:20px minmax(0,1fr);align-items:center;gap:5px;min-width:0}
.ticket-column-preview>div{display:flex;flex-wrap:nowrap;gap:3px;min-width:0;overflow:hidden}
.ticket-column-preview .mini-ball{width:24px;height:24px;flex:0 0 24px;font-size:8px;box-shadow:none}
.ticket-column-no{width:20px;height:20px;font-size:7px}
.ticket-column-preview.draft{padding-top:6px}
.coupon-details{margin-top:12px;padding-top:12px}
.detail{margin:7px 0;font-size:10px}
.play-button{margin-top:12px;padding:12px;font-size:10px}

/* Previous draw cards are completed/locked and intentionally dark. */
.draw-result-item.locked{background:linear-gradient(145deg,#171a20 0%,#242932 100%);border-color:#2f353e;box-shadow:0 10px 28px rgba(10,12,16,.16);color:#fff}
.draw-result-item.locked:hover{transform:translateY(-1px);box-shadow:0 14px 32px rgba(10,12,16,.22)}
.draw-result-item.locked .result-time-label{color:#8e96a3}
.draw-result-item.locked .result-time-block strong{color:#fff}
.draw-result-item.locked .draw-result-status.locked{background:#343a43;color:#d8dde5;border:1px solid #444b56}
.draw-result-item.locked .result-jackpot{background:#20252c;border-color:#343a43}
.draw-result-item.locked .result-jackpot span{color:#969eab}
.draw-result-item.locked .result-jackpot strong{color:#fff}
.draw-result-item.locked .result-number{background:#343a43;color:#fff;box-shadow:none}
.draw-result-item.locked .result-meta{border-color:#343a43}
.draw-result-item.locked .result-meta span{color:#8e96a3}
.draw-result-item.locked .result-meta strong{color:#f2f4f7}

@media(max-width:900px){.quick-picks{grid-template-columns:1fr}.coupon-column-builder .column-list{max-height:180px}}
@media(max-width:600px){.numbers{gap:6px}.quick-pick{font-size:8px}.coupon{padding:18px}.ticket-column-preview .mini-ball{width:22px;height:22px;flex-basis:22px;font-size:7px}}


/* =========================================================
   v1.1.9 — LIVE PAYMENT LOGS
========================================================= */
.nav-payment-logs{background:#fff9ef;color:#9a6500;border-color:#f2dfb6}
.nav-payment-logs:hover{border-color:#e8c86f;box-shadow:0 10px 26px rgba(180,126,24,.14)}
.payment-toast-stack{position:fixed;top:84px;right:max(18px,calc((100vw - 1255px)/2 + 20px));z-index:1200;width:min(360px,calc(100vw - 28px));display:grid;gap:9px;pointer-events:none}
.payment-toast{display:grid;grid-template-columns:34px 1fr auto;align-items:center;gap:9px;padding:11px 12px;border:1px solid rgba(13,110,253,.12);border-radius:14px;background:rgba(255,255,255,.96);box-shadow:0 18px 45px rgba(18,36,66,.16);backdrop-filter:blur(18px);opacity:0;transform:translateY(-10px) translateX(12px);transition:opacity .22s ease,transform .22s ease}
.payment-toast.show{opacity:1;transform:translateY(0) translateX(0)}
.payment-toast-icon{width:34px;height:34px;display:grid;place-items:center;border-radius:10px;background:linear-gradient(145deg,#19b979,#0a9d60);color:#fff;font-size:14px;font-weight:900;box-shadow:0 8px 20px rgba(10,157,96,.22)}
.payment-toast-copy{min-width:0;display:flex;flex-direction:column;gap:3px}
.payment-toast-copy strong{font-size:10px;color:#172033;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.payment-toast-copy span{font-size:8px;color:#7c8798;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.payment-toast-copy b{color:#0a9d60}
.payment-toast-time{font-size:7px;color:#a0a8b5;font-weight:800}
.payment-log-modal-box{width:min(760px,100%);max-height:min(82vh,780px);overflow:auto}
.payment-log-summary{display:grid;grid-template-columns:1.4fr 1fr 1fr;gap:9px;margin-top:18px}
.payment-log-summary>div{padding:13px;border:1px solid #e7edf5;border-radius:12px;background:#f8fafc;display:flex;flex-direction:column;gap:5px}
.payment-log-summary span{font-size:8px;color:#7d899a;font-weight:800}
.payment-log-summary strong{font-size:15px;color:#172033}
.payment-log-summary>div:first-child strong{color:#0a9d60}
.payment-log-list{display:grid;gap:7px;margin-top:12px}
.payment-log-row{display:grid;grid-template-columns:32px minmax(0,1fr) auto;gap:10px;align-items:center;padding:10px 11px;border:1px solid #e6ebf2;border-radius:12px;background:#fff;transition:.18s ease}
.payment-log-row:hover{transform:translateY(-1px);box-shadow:0 8px 20px rgba(24,43,72,.07);border-color:#cfe0f7}
.payment-log-rank{width:28px;height:28px;display:grid;place-items:center;border-radius:9px;background:#edf4ff;color:#0d6efd;font-size:8px;font-weight:900}
.payment-log-person{min-width:0;display:flex;flex-direction:column;gap:3px}
.payment-log-person strong{font-size:10px;color:#172033;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.payment-log-person span{font-size:8px;color:#8792a3}
.payment-log-amount{font-size:11px;color:#0a9d60;font-weight:900}
.payment-log-empty{min-height:150px;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:6px;border:1px dashed #dce4ef;border-radius:14px;background:#fbfcfe;color:#7d899a;text-align:center}
.payment-log-empty>span{width:38px;height:38px;display:grid;place-items:center;border-radius:12px;background:#edf8f2;color:#0a9d60;font-weight:900;font-size:15px}
.payment-log-empty strong{font-size:10px;color:#39465a}
.payment-log-empty small{font-size:8px}
@media(max-width:700px){.payment-toast-stack{top:74px;right:12px}.nav-payment-logs span:nth-child(2){display:none}.nav-payment-logs{width:42px;min-width:42px;padding:0}.payment-log-summary{grid-template-columns:1fr}.payment-log-modal-box{padding:20px}}


/* v1.1.9 — account name update / per-draw balance limit / locked results */
.balance-name-row{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:10px;align-items:center;margin-top:8px}
.name-save-button{min-height:48px;border:0;border-radius:14px;padding:0 18px;font-weight:800;background:#0d6efd;color:#fff;box-shadow:0 10px 22px rgba(13,110,253,.18);transition:transform .18s ease,box-shadow .18s ease,opacity .18s ease}
.name-save-button:hover:not(:disabled){transform:translateY(-2px);box-shadow:0 14px 28px rgba(13,110,253,.24)}
.name-save-button:disabled{opacity:.45;cursor:not-allowed}
.balance-name-status{min-height:20px;margin-top:7px;font-size:12px;font-weight:700;color:#667085}
.balance-deposit-limit{margin-top:8px;padding:10px 12px;border-radius:12px;background:#f3f7fb;color:#475467;font-size:12px;font-weight:800}
.locked-minimal{min-height:142px;display:grid;grid-template-columns:auto 1fr auto;align-items:center;gap:16px;padding:12px 8px}
.locked-minimal .result-time-label{font-size:10px;letter-spacing:.12em;color:#8e96a3;font-weight:800}
.locked-minimal>strong{font-size:30px;letter-spacing:-1px;color:#fff}
.locked-minimal .draw-result-status{justify-self:end}
@media(max-width:600px){.balance-name-row{grid-template-columns:1fr}.name-save-button{width:100%}.locked-minimal{min-height:105px;grid-template-columns:1fr auto;gap:8px}.locked-minimal .result-time-label{grid-column:1/-1}.locked-minimal>strong{font-size:26px}}

/* v1.1.9 — winner announcement */
.winner-announcement{display:none;margin:0 auto 18px;max-width:1255px;border-radius:22px;overflow:hidden;background:linear-gradient(135deg,#07152a 0%,#0d2341 55%,#0d6efd 140%);color:#fff;box-shadow:0 18px 48px rgba(13,110,253,.18);border:1px solid rgba(255,255,255,.10)}
.winner-announcement.show{display:block;animation:winnerIn .35s ease both}
.winner-announcement-inner{padding:20px 22px}
.winner-announcement-heading{display:flex;align-items:center;justify-content:space-between;gap:18px;padding-bottom:16px;border-bottom:1px solid rgba(255,255,255,.12)}
.winner-kicker{display:block;font-size:9px;font-weight:900;letter-spacing:1.5px;color:#8fc2ff}
.winner-announcement-heading h3{margin:4px 0 3px;font-size:18px;letter-spacing:-.35px}
.winner-announcement-heading p{margin:0;color:rgba(255,255,255,.62);font-size:11px}
.winner-jackpot{font-size:20px;font-weight:900;white-space:nowrap;color:#bfffdc}
.winner-announcement-list{display:grid;gap:9px;margin-top:13px}
.winner-announcement-row{display:grid;grid-template-columns:34px minmax(130px,1fr) auto auto;align-items:center;gap:12px;padding:11px 12px;border-radius:14px;background:rgba(255,255,255,.075);border:1px solid rgba(255,255,255,.09)}
.winner-medal{width:30px;height:30px;border-radius:10px;display:grid;place-items:center;background:rgba(255,255,255,.11);font-size:9px;font-weight:900;color:#cce3ff}
.winner-copy{min-width:0}.winner-copy strong{display:block;font-size:12px}.winner-copy span{display:block;margin-top:3px;font-size:9px;color:rgba(255,255,255,.55)}
.winner-numbers{display:flex;gap:4px;flex-wrap:nowrap}.winner-numbers span{width:25px;height:25px;border-radius:50%;display:grid;place-items:center;background:#fff;color:#0d6efd;font-size:9px;font-weight:900}
.winner-prize{font-size:13px;font-weight:900;color:#bfffdc;white-space:nowrap}
@keyframes winnerIn{from{opacity:0;transform:translateY(-7px)}to{opacity:1;transform:translateY(0)}}
@media(max-width:900px){.winner-announcement{margin-left:15px;margin-right:15px}.winner-announcement-row{grid-template-columns:30px minmax(110px,1fr);}.winner-numbers,.winner-prize{grid-column:2}.winner-numbers{flex-wrap:wrap}}
