@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

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

html{
    scroll-behavior:smooth;
}

body{
    background:
        radial-gradient(circle at top left,#1e293b,#020617);
    color:#fff;
    font-family:'Inter',sans-serif;
    overflow-x:hidden;
    padding-top:20px;
}

.bg-glow{
    position:fixed;
    border-radius:50%;

    filter:blur(70px);

    opacity:0.12;

    z-index:-1;

    will-change:transform;

    transform:translateZ(0);
}

.glow-1{
    width:320px;
    height:320px;
    background:#3b82f6;
    top:-100px;
    left:-100px;
}

.glow-2{
    width:280px;
    height:280px;
    background:#8b5cf6;
    top:40%;
    right:-100px;
    animation-delay:2s;
}

.glow-3{
    width:240px;
    height:240px;
    background:#06b6d4;
    bottom:-100px;
    left:30%;
    animation-delay:4s;
}


a{
    text-decoration:none;
    color:inherit;
}

.container{
    width:100%;
    max-width:1320px;
    margin:auto;
    padding:28px;
}

/* HEADER */

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

    padding:18px 28px;

    background:rgba(15,23,42,0.62);

    border:1px solid rgba(255,255,255,0.08);

    backdrop-filter:blur(10px);

    border-radius:24px;

    box-shadow:
        0 6px 18px rgba(0,0,0,0.18);

    position:sticky;

    top:18px;

    z-index:9999;

    transition:0.3s;
}

.header:hover{

    border-color:
        rgba(103,232,249,0.22);

    box-shadow:
        0 12px 50px rgba(34,211,238,0.12);
}

.logo{
    display:flex;
    align-items:center;
}

.logo img{
    height:58px;
    width:auto;

    filter:
        drop-shadow(
            0 0 18px rgba(34,211,238,0.28)
        );

    transition:0.3s;
}

.logo img:hover{
    transform:scale(1.03);
}

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

.nav a{
    color:#94a3b8;
    transition:0.3s;
    position:relative;
    padding-bottom:8px;
}

.nav a:hover,
.nav a.active{
    color:#67e8f9;
}

.nav a{
    position:relative;
}

.nav a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:0;
    width:0%;
    height:2px;

    background:
        linear-gradient(
            90deg,
            #67e8f9,
            #5eead4
        );

    border-radius:999px;

    transition:0.3s;
}

.nav a:hover::after,
.nav a.active::after{
    width:100%;
}

/* HERO */

.hero{
    padding:120px 0 90px;
    text-align:center;
}

.hero-badge{
    display:inline-block;
    padding:10px 18px;
    background:rgba(59,130,246,0.15);
    border:1px solid rgba(59,130,246,0.3);
    border-radius:999px;
    color:#93c5fd;
    margin-bottom:25px;
    font-size:14px;
}

.hero h1{
    font-size:64px;
    line-height:1.12;
    max-width:900px;
    margin:auto;
    font-weight:700;
    letter-spacing:-1px;

    background:
        linear-gradient(
            90deg,
            #ffffff,
            #67e8f9,
            #5eead4
        );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

    background-size:200% auto;

    animation:gradientMove 6s linear infinite;
}

.hero p{
    max-width:760px;
    margin:30px auto 0;
    color:#94a3b8;
    line-height:1.9;
    font-size:18px;
}

/* STATS */

.stats-section{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
    margin:60px 0;
}

.stat-card{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:24px;
    padding:32px;
    text-align:center;
    backdrop-filter:blur(12px);
}

.stat-card h3{
    font-size:42px;
    color:#60a5fa;
    margin-bottom:12px;
}

.stat-card p{
    color:#94a3b8;
}

/* SEARCH */

.search-box{
    margin:30px 0;
}

.search-box input{
    width:100%;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    color:#fff;
    padding:18px 22px;
    border-radius:20px;
    outline:none;
    font-size:16px;
    backdrop-filter:blur(4px);
}

.search-box input::placeholder{
    color:#94a3b8;
}

/* PRODUCTS */

.products{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
    margin-top:40px;
}

.card{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:28px;
    overflow:hidden;
    backdrop-filter:blur(6px);
    transition:0.35s;
    position:relative;
    animation:fadeUp 0.8s ease;
    isolation:isolate;
}

.card:hover{
    transform:translateY(-8px);
    border-color:rgba(59,130,246,0.5);
    box-shadow:
        0 6px 18px rgba(59,130,246,0.15);
}

.card:hover img{
    transform:scale(1.06);
}

.card-glow{
    position:absolute;
    inset:0;
    background:
        radial-gradient(
            circle at var(--x) var(--y),
            rgba(103,232,249,0.22),
            transparent 35%
        );

    opacity:0;
    transition:opacity 0.3s;
    z-index:0;
    pointer-events:none;
}

.card:hover .card-glow{
    opacity:1;
}

.card img{
    width:100%;
    height:170px;
    object-fit:cover;
    object-position:top;
    position:relative;
    z-index:2;
    transition:transform 0.5s ease;
}

.card::after{
    content:'';
    position:absolute;
    inset:0;
    background:
        linear-gradient(
            to top,
            rgba(2,6,23,0.55),
            transparent 40%
        );

    opacity:0.7;
    z-index:1;
    pointer-events:none;
}

.product-badge{
    display:inline-block;
    padding:6px 12px;
    background:rgba(59,130,246,0.15);
    border:1px solid rgba(59,130,246,0.3);
    border-radius:999px;
    color:#93c5fd;
    font-size:11px;
    margin-bottom:12px;
}

.card-content{
    padding:18px;
    position:relative;
    z-index:2;
}

.card-title{
    font-size:17px;
    font-weight:700;
    margin-bottom:6px;
    line-height:1.4;
}

.card-content p{
    color:#94a3b8;
    line-height:1.6;
    font-size:13px;
}

.price{
    color:#60a5fa;
    font-size:12px;
    font-weight:700;
    margin-top:14px;
}

.card-btn{
    margin-top:14px;
    background:#2563eb;
    color:#fff;
    padding:11px;
    border-radius:12px;
    text-align:center;
    font-size:14px;
    font-weight:600;
    transition:0.3s;
    position:relative;
    overflow:hidden;
}

.card-btn::before{
    content:'';
    position:absolute;
    top:0;
    left:-120%;
    width:80px;
    height:100%;

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

    transform:skewX(-20deg);
    transition:0.7s;
}

.card:hover .card-btn::before{
    left:140%;
}

.card:hover .card-btn{
    background:#1d4ed8;

    box-shadow:
        0 12px 30px rgba(37,99,235,0.35);
}

/* BUTTON */

.buy-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#2563eb;
    color:#fff;
    padding:16px 24px;
    border-radius:16px;
    font-weight:600;
    transition:0.3s;
    position:relative;
    overflow:hidden;
}

.buy-btn:hover{
    background:#1d4ed8;
    transform:translateY(-2px);

    box-shadow:
        0 12px 30px rgba(37,99,235,0.35);
}

.buy-btn::before{
    content:'';
    position:absolute;
    top:0;
    left:-120%;
    width:80px;
    height:100%;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,0.35),
            transparent
        );

    transform:skewX(-20deg);
    transition:0.7s;
}

.buy-btn:hover::before{
    left:140%;
}

/* SECTION */

.section-title{
    font-size:36px;
    margin-bottom:15px;
}

.section-subtitle{
    color:#94a3b8;
    line-height:1.7;
}

/* FOOTER */

.footer{
    margin-top:120px;
    padding:40px 0;
    border-top:1px solid rgba(255,255,255,0.08);
    color:#64748b;
    text-align:center;
}

.footer-links{
    display:flex;
    justify-content:center;
    gap:18px;

    margin-top:16px;
}

.footer-links a{
    color:#64748b;

    font-size:14px;

    transition:0.3s;
}

.footer-links a:hover{
    color:#67e8f9;
}

.footer-copy{
    margin-top:18px;
}

/* MOBILE */

@media(max-width:768px){

    .hero{
        padding:70px 0 40px;
    }

    .hero h1{
    font-size:44px;
    line-height:1.18;
    letter-spacing:-1px;
}

    .hero p{
        font-size:16px;
    }

    .products{
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

}

.stats-section{
    display:grid !important;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr)) !important;
    gap:20px !important;
    margin:60px 0 !important;
}

.stat-card{
    background:#111827 !important;
    border:1px solid #334155 !important;
    border-radius:20px !important;
    padding:30px !important;
    text-align:center !important;
}

.stat-card h3{
    font-size:40px !important;
    color:#60a5fa !important;
    margin-bottom:10px !important;
}

.stat-card p{
    color:#94a3b8 !important;
}

@media(max-width:768px){

    .stats-section{
        grid-template-columns:1fr 1fr !important;
    }

    .stat-card{
        padding:24px !important;
    }

    .stat-card h3{
        font-size:30px !important;
    }

}

@media(max-width:768px){

    .header{
    padding:16px 18px;
    border-radius:18px;
    justify-content:center;
    top:12px;
padding:14px 18px;
}

    .logo img{
    height:42px;
}

    .nav{
    display:none;
}

    .nav a{
        font-size:14px;
    }

    .hero{
        padding:70px 0 40px;
    }

    .hero h1{
        font-size:42px;
    }

    .hero p{
        font-size:16px;
    }
    
    .card{
    border-radius:20px;
}

.card img{
    height:110px;
}

.card-content{
    padding:12px;
}

.card-title{
    font-size:14px;
    margin-bottom:4px;

    display:-webkit-box;
    -webkit-line-clamp:1;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

.card-content p{
    font-size:11px;
    line-height:1.5;

    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;

    min-height:32px;
}

.price{
    font-size:12px;
    margin-top:10px;
}

.card-btn{
    margin-top:10px;
    padding:9px;
    font-size:12px;
    border-radius:10px;
}

    .products{
    grid-template-columns:repeat(2,1fr) !important;
    gap:14px !important;
}

}

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(40px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

.reveal{
    opacity:0;
    transform:translateY(40px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}

@keyframes gradientMove{

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

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

}

.mobile-nav{
    position:fixed;
    left:50%;
    bottom:18px;
    transform:translateX(-50%);
    width:calc(100% - 24px);

    background:rgba(15,23,42,0.75);

    border:1px solid rgba(255,255,255,0.08);

    backdrop-filter:blur(8px);

    border-radius:24px;

    padding:12px 10px;

    display:none;

    justify-content:space-around;

    align-items:center;

    z-index:9999;

    box-shadow:
        0 6px 18px rgba(0,0,0,0.35);
}

.mobile-nav a{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:6px;

    color:#94a3b8;

    font-size:11px;

    transition:0.3s;
}

.mobile-nav a i{
    font-size:18px;
}

.mobile-nav a:hover{
    color:#67e8f9;
    transform:translateY(-2px);
}

@media(max-width:768px){

    .mobile-nav{
        display:flex;
    }

    body{
        padding-bottom:100px;
    }

}

.cta-section{
    margin-top:120px;
}

.cta-box{
    position:relative;

    background:
        linear-gradient(
            135deg,
            rgba(15,23,42,0.9),
            rgba(30,41,59,0.75)
        );

    border:
        1px solid rgba(255,255,255,0.08);

    border-radius:36px;

    padding:70px 40px;

    text-align:center;

    overflow:hidden;

    backdrop-filter:blur(8px);

    box-shadow:
         0 8px 24px rgba(0,0,0,0.18);
}

.cta-box::before{
    content:'';

    position:absolute;

    width:320px;
    height:320px;

    background:#06b6d4;

    filter:blur(120px);

    opacity:0.18;

    top:-120px;
    right:-100px;
}

.cta-badge{
    display:inline-block;

    padding:10px 18px;

    border-radius:999px;

    background:
        rgba(34,211,238,0.12);

    border:
        1px solid rgba(34,211,238,0.22);

    color:#67e8f9;

    font-size:13px;

    margin-bottom:24px;
}

.cta-box h2{
    font-size:48px;

    line-height:1.15;

    margin-bottom:20px;

    font-weight:700;
}

.cta-box p{
    max-width:720px;

    margin:auto;

    color:#94a3b8;

    line-height:1.8;

    font-size:17px;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:18px;

    margin-top:40px;
}

.cta-btn{
    display:flex;
    align-items:center;
    gap:10px;

    padding:16px 24px;

    border-radius:16px;

    font-weight:600;

    transition:0.3s;

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

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

.wa-cta{
    background:rgba(34,197,94,0.12);
    color:#4ade80;
}

.telegram-cta{
    background:rgba(59,130,246,0.12);
    color:#60a5fa;
}

.support-cta{
    background:rgba(168,85,247,0.12);
    color:#c084fc;
}

.youtube-cta{
    background:rgba(239,68,68,0.12);
    color:#f87171;
}

@media(max-width:768px){

    .cta-box{
        padding:50px 24px;
        border-radius:28px;
    }

    .cta-box h2{
        font-size:32px;
    }

    .cta-buttons{
        gap:14px;
    }

    .cta-btn{
        width:100%;
        justify-content:center;
    }

}

@media(max-width:768px){

    .header,
    .card,
    .mobile-nav,
    .cta-box,
    .search-box input,
    .stat-card{

        backdrop-filter:none !important;
    }

    .bg-glow{
        display:none;
    }

}

.admin-live-card{

    max-width:900px;

    margin:35px auto 70px;

    padding:28px;

    border-radius:28px;

    background:
    linear-gradient(
        135deg,
        rgba(34,197,94,.15),
        rgba(34,197,94,.05)
    );

    border:
    1px solid rgba(34,197,94,.25);

    box-shadow:
    0 15px 40px rgba(34,197,94,.08);

    position:relative;

    overflow:hidden;
}

.admin-live-top{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;

    margin-bottom:15px;
}

.admin-status{

    display:flex;

    align-items:center;

    gap:12px;

    color:#fff;

    font-size:18px;

    font-weight:700;
}

.live-dot{

    width:12px;

    height:12px;

    border-radius:50%;

    background:#22c55e;

    box-shadow:
    0 0 15px #22c55e;
}

@keyframes pulseLive{

    0%{
        opacity:1;
    }

    50%{
        opacity:.4;
    }

    100%{
        opacity:1;
    }

}

.live-time{

    color:#4ade80;

    font-weight:700;

    font-size:15px;
}

.admin-live-text{

    margin-top:16px;

    margin-bottom:24px;

    color:#cbd5e1;

    line-height:1.8;

    font-size:15px;
}

.admin-live-btn{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:14px 24px;

    border-radius:999px;

    text-decoration:none;

    background:#22c55e;

    color:#fff;

    font-weight:700;

    transition:.3s;

    box-shadow:
    0 10px 25px rgba(34,197,94,.35);
}

.admin-live-btn:hover{

    transform:translateY(-3px);

    box-shadow:
    0 15px 35px rgba(34,197,94,.45);
}

@media(max-width:768px){

    .admin-live-top{

        flex-direction:column;

        gap:10px;
    }

}

.dev-update-box{

    max-width:900px;

    margin:30px auto;

    padding:18px 24px;

    border-radius:22px;

    background:
    linear-gradient(
        135deg,
        rgba(103,232,249,.08),
        rgba(34,197,94,.08)
    );

    border:
    1px solid rgba(103,232,249,.12);

    position:relative;

    overflow:hidden;
}

.dev-update-header{

    display:flex;

    align-items:center;

    gap:12px;

    margin-bottom:10px;
}

.update-label{

    color:#67e8f9;

    font-size:13px;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:1px;
}

.update-icon{

    width:12px;

    height:12px;
}

.update-icon span{

    display:block;

    width:12px;

    height:12px;

    border-radius:50%;

    background:#22c55e;

    animation:updatePulse 1.8s infinite;
}

.dev-update-content{

    color:#e2e8f0;

    line-height:1.8;

    font-size:15px;
}

@keyframes updatePulse{

    0%{
        transform:scale(1);
        opacity:1;
    }

    50%{
        transform:scale(1.5);
        opacity:.4;
    }

    100%{
        transform:scale(1);
        opacity:1;
    }
}

@media(max-width:768px){

    .dev-update-box{

        margin:25px 15px;

        padding:16px;
    }

    .dev-update-content{

        font-size:14px;
    }

}