*{
    box-sizing:border-box;
    margin:0;
    padding:0;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#eef1f5;
    color:#0f172a;
}

.navbar{
    background:#0f172a;
    color:#fff;
    padding:15px 22px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    flex-wrap:wrap;
    position:sticky;
    top:0;
    z-index:999;
    box-shadow:0 6px 22px rgba(0,0,0,.18);
}

.brand{
    font-size:22px;
    font-weight:900;
}

.nav-toggle{
    display:none;
    background:none;
    border:0;
    color:#fff;
    font-size:25px;
    cursor:pointer;
}

.nav-links{
    display:flex;
    align-items:center;
    gap:10px;
}

.nav-links a{
    color:#fff;
    text-decoration:none;
    font-size:14px;
    font-weight:800;
    padding:9px 13px;
    border-radius:8px;
    transition:.25s ease;
}

.nav-links a:hover,
.nav-links a.active{
    background:rgba(255,255,255,.12);
}

.promo-wrap{
    max-width:1050px;
    margin:20px auto 0;
    padding:0 14px;
}

.promo-banner{
    background:linear-gradient(135deg,#111827,#24144d 45%,#6f42c1);
    border-radius:20px;
    padding:20px;
    color:#fff;
    box-shadow:0 16px 38px rgba(15,23,42,.28);
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
    position:relative;
    overflow:hidden;
}

.promo-banner:before{
    content:"";
    position:absolute;
    width:190px;
    height:190px;
    right:-70px;
    top:-70px;
    background:rgba(255,255,255,.12);
    border-radius:50%;
}

.promo-text,
.promo-actions{
    position:relative;
    z-index:2;
}

.promo-text strong{
    display:block;
    font-size:22px;
    font-weight:900;
    margin-bottom:5px;
}

.promo-text span{
    font-size:14px;
    color:rgba(255,255,255,.88);
}

.promo-actions{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
}

.glow-btn{
    color:#fff;
    text-decoration:none;
    border-radius:12px;
    padding:12px 16px;
    font-size:14px;
    font-weight:900;
    white-space:nowrap;
    animation:glowPulse 1.8s infinite;
}

.telegram-btn{background:#229ed9;}
.download-btn{background:#16a34a;}
.subscribe-btn{background:#6f42c1;}

@keyframes glowPulse{
    0%{ box-shadow:0 0 0 0 rgba(255,255,255,.55); }
    70%{ box-shadow:0 0 0 14px rgba(255,255,255,0); }
    100%{ box-shadow:0 0 0 0 rgba(255,255,255,0); }
}

.hero-wrap{
    max-width:1050px;
    margin:22px auto 18px;
    padding:0 14px;
}

.hero{
    border-radius:22px;
    padding:36px 22px;
    text-align:center;
    background:
        linear-gradient(135deg, rgba(15,23,42,.95), rgba(88,28,135,.72)),
        url('https://images.unsplash.com/photo-1579952363873-27f3bade9f55?q=80&w=1300&auto=format&fit=crop') center/cover;
    color:#fff;
    box-shadow:0 16px 38px rgba(15,23,42,.25);
}

.hero-badge{
    display:inline-flex;
    background:rgba(255,255,255,.14);
    border:1px solid rgba(255,255,255,.2);
    color:#fff;
    padding:8px 13px;
    border-radius:999px;
    font-size:12px;
    font-weight:900;
    margin-bottom:12px;
}

.hero h1{
    font-size:31px;
    font-weight:900;
    margin-bottom:9px;
}

.hero p{
    max-width:720px;
    margin:0 auto;
    color:rgba(255,255,255,.9);
    font-size:15px;
    line-height:1.7;
}

.win-pill{
    display:inline-block;
    margin-top:18px;
    background:#16a34a;
    color:#fff;
    padding:10px 18px;
    border-radius:999px;
    font-weight:900;
    box-shadow:0 10px 24px rgba(22,163,74,.35);
}

.container{
    max-width:1050px;
    margin:0 auto 45px;
    padding:0 14px;
}

.section-title{
    text-align:center;
    margin:26px 0 20px;
}

.section-title h2{
    color:#6f42c1;
    font-size:28px;
    font-weight:900;
}

.section-title p{
    color:#475569;
    font-size:14px;
    margin-top:5px;
}

.slip-list{
    display:grid;
    grid-template-columns:1fr;
    gap:24px;
}

.slip-card{
    background:#fff;
    border-radius:14px;
    overflow:hidden;
    border:1px solid #d7dce3;
    box-shadow:0 16px 38px rgba(15,23,42,.14);
}

.hidden-slip{
    display:none;
}

.slip-top{
    background:#f8fafc;
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:15px;
    padding:18px 20px;
    border-bottom:1px solid #d8dde5;
}

.profile-side{
    display:flex;
    align-items:center;
    gap:13px;
}

.profile-ball{
    width:58px;
    height:58px;
    border-radius:50%;
    background:#111827;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:31px;
    box-shadow:0 7px 18px rgba(0,0,0,.16);
}

.slip-owner{
    font-size:25px;
    font-weight:700;
    color:#000;
}

.slip-flags{
    font-size:14px;
    margin-left:7px;
    font-weight:700;
}

.slip-type{
    margin-top:5px;
    font-size:12px;
    font-weight:900;
    color:#64748b;
    text-transform:uppercase;
}

.slip-date{
    color:#374151;
    font-size:18px;
    white-space:nowrap;
}

.slip-table-head{
    display:grid;
    grid-template-columns:1.7fr .72fr .45fr;
    align-items:center;
    background:#fff;
    border-bottom:1px solid #bfc5ce;
    text-align:center;
    font-size:22px;
    font-weight:900;
    padding:11px 8px;
}

.slip-row{
    display:grid;
    grid-template-columns:1.7fr .72fr .45fr;
    align-items:center;
    min-height:92px;
    background:#fff;
    border-bottom:2px solid #c7ccd3;
}

.match-cell{
    display:grid;
    grid-template-columns:82px 34px 1fr;
    align-items:center;
    gap:8px;
    padding:8px 10px 8px 7px;
}

.match-time{
    display:inline-block;
    background:#b9bec6;
    color:#fff;
    padding:3px 6px;
    border-radius:7px;
    font-size:23px;
    font-weight:700;
}

.match-date{
    display:block;
    color:#000;
    font-size:15px;
    margin-top:5px;
}

.ball-icon{
    font-size:30px;
    text-align:center;
}

.teams{
    text-align:center;
    color:#000;
    font-size:23px;
    line-height:1.28;
    word-break:break-word;
}

.subscribe-link{
    color:#6f42c1;
    text-decoration:none;
    font-weight:900;
    background:#f3e8ff;
    padding:6px 10px;
    border-radius:999px;
    font-size:16px;
    display:inline-block;
}

.choice-cell{
    text-align:center;
    color:#000;
    font-size:22px;
    font-weight:900;
    padding:8px;
    word-break:break-word;
}

.odd-cell{
    text-align:center;
    color:#000;
    font-size:24px;
    font-weight:900;
    padding:8px;
}

.result-line{
    display:flex;
    justify-content:flex-end;
    padding:0 14px 8px;
    margin-top:-7px;
}

.result-badge{
    font-size:12px;
    font-weight:900;
    padding:6px 12px;
    border-radius:999px;
    text-transform:uppercase;
}

.result-win{
    background:#dcfce7;
    color:#15803d;
}

.result-lost{
    background:#fee2e2;
    color:#b91c1c;
}

.result-pending{
    background:#fef3c7;
    color:#b45309;
}

.slip-footer{
    display:grid;
    grid-template-columns:1fr 1fr 1fr;
    align-items:center;
    background:#fff;
    padding:14px 18px;
    font-size:22px;
    font-weight:900;
}

.place-bet{
    justify-self:start;
    background:#6f42c1;
    color:#fff;
    text-decoration:none;
    padding:11px 16px;
    border-radius:8px;
    font-size:14px;
    font-weight:900;
}

.total-label,
.total-value{
    text-align:center;
    color:#000;
}

.see-more-wrap{
    display:flex;
    justify-content:center;
    margin-top:27px;
}

.see-more-btn{
    border:0;
    background:#6f42c1;
    color:#fff;
    padding:13px 24px;
    border-radius:10px;
    font-weight:900;
    cursor:pointer;
}

.empty-box{
    background:#fff;
    padding:28px;
    border-radius:14px;
    text-align:center;
    box-shadow:0 12px 30px rgba(15,23,42,.1);
}

footer{
    background:#0f172a;
    color:#fff;
    text-align:center;
    padding:20px 12px;
    font-size:14px;
}

#telegram-chat{
    position:fixed;
    right:22px;
    bottom:105px;
    z-index:9998;
    background:#fff;
    width:56px;
    height:56px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 8px 24px rgba(0,0,0,.24);
    transition:.25s ease;
}

#telegram-chat:hover{
    transform:scale(1.06);
}

#telegram-chat img{
    width:32px;
    height:32px;
}

.eb-chat-launcher{
    position:fixed !important;
    right:20px !important;
    bottom:32px !important;
    width:64px !important;
    height:64px !important;
    border-radius:50% !important;
    background:linear-gradient(135deg,#0d6efd,#084298) !important;
    box-shadow:0 10px 30px rgba(13,110,253,.45) !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    cursor:pointer !important;
    z-index:999999999 !important;
    transition:.25s ease !important;
    animation:ebChatPulse 2s infinite !important;
}

.eb-chat-launcher:hover{
    transform:translateY(-4px) scale(1.04) !important;
}

.eb-chat-launcher svg{
    width:30px !important;
    height:30px !important;
    fill:#fff !important;
}

.eb-chat-widget{
    z-index:999999999 !important;
}

@keyframes ebChatPulse{
    0%{ box-shadow:0 0 0 0 rgba(13,110,253,.55); }
    70%{ box-shadow:0 0 0 18px rgba(13,110,253,0); }
    100%{ box-shadow:0 0 0 0 rgba(13,110,253,0); }
}

@media(max-width:760px){
    .navbar{
        padding:14px 16px;
    }

    .nav-toggle{
        display:block;
    }

    .nav-links{
        display:none;
        width:100%;
        flex-direction:column;
        margin-top:13px;
        gap:8px;
    }

    .nav-links.show{
        display:flex;
    }

    .nav-links a{
        width:100%;
        text-align:center;
        background:rgba(255,255,255,.08);
    }

    .promo-banner{
        flex-direction:column;
        align-items:flex-start;
    }

    .promo-actions{
        width:100%;
    }

    .glow-btn{
        flex:1;
        text-align:center;
        padding:11px 10px;
        font-size:13px;
    }

    .hero h1{
        font-size:23px;
    }

    .hero p{
        font-size:13px;
    }

    .container{
        padding:0 7px;
    }

    .section-title h2{
        font-size:23px;
    }

    .slip-top{
        padding:14px 10px;
    }

    .profile-ball{
        width:48px;
        height:48px;
        font-size:25px;
    }

    .slip-owner{
        font-size:20px;
    }

    .slip-date{
        font-size:13px;
    }

    .slip-table-head{
        grid-template-columns:1.58fr .74fr .45fr;
        font-size:16px;
        padding:8px 4px;
    }

    .slip-row{
        grid-template-columns:1.58fr .74fr .45fr;
        min-height:78px;
    }

    .match-cell{
        grid-template-columns:56px 25px 1fr;
        gap:4px;
        padding:6px 4px;
    }

    .match-time{
        font-size:16px;
        padding:2px 4px;
    }

    .match-date{
        font-size:11px;
        margin-top:4px;
    }

    .ball-icon{
        font-size:21px;
    }

    .teams{
        font-size:15.5px;
    }

    .subscribe-link{
        font-size:12px;
        padding:5px 8px;
    }

    .choice-cell{
        font-size:14.5px;
        padding:5px 3px;
    }

    .odd-cell{
        font-size:17px;
        padding:5px 3px;
    }

    .result-line{
        padding:0 8px 7px;
    }

    .result-badge{
        font-size:10px;
        padding:4px 8px;
    }

    .slip-footer{
        padding:11px 8px;
        font-size:16px;
    }

    .place-bet{
        padding:8px 9px;
        font-size:12px;
    }

    #telegram-chat{
        right:18px;
        bottom:88px;
        width:52px;
        height:52px;
    }
}

@media(max-width:560px){
    .eb-chat-launcher{
        right:14px !important;
        bottom:18px !important;
        width:58px !important;
        height:58px !important;
    }

    .eb-chat-launcher svg{
        width:27px !important;
        height:27px !important;
    }

    #telegram-chat{
        bottom:88px !important;
    }
}