:root{
    --bg:#0b1120;
    --card:#111827;
    --soft:#1f2937;
    --primary:#2563eb;
    --primary-dark:#1d4ed8;
    --text:#f8fafc;
    --muted:#94a3b8;
    --border:rgba(255,255,255,.08);
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    background:var(--bg);
    color:var(--text);
    font-family:'Inter',sans-serif;
    overflow-x:hidden;

    /* Copy Protection */
    user-select:none;
    -webkit-user-select:none;
    -moz-user-select:none;
}

/* ================= CONTAINER ================= */

.container{
    width:100%;
    max-width:1280px;
    margin:auto;
    padding:0 24px;
}

/* ================= HEADER ================= */

.header{
    position:sticky;
    top:0;
    z-index:999;
    background:rgba(11,17,32,.95);
    backdrop-filter:blur(12px);
    border-bottom:1px solid var(--border);
}

.nav-container{
    height:82px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo{
    font-size:28px;
    font-weight:800;
}

.logo span{
    color:var(--primary);
}

.nav{
    display:flex;
    gap:28px;
}

.nav a{
    text-decoration:none;
    color:#cbd5e1;
    transition:.3s;
}

.nav a:hover{
    color:#fff;
}

.header-btn{
    background:var(--primary);
    color:#fff;
    text-decoration:none;
    padding:12px 22px;
    border-radius:14px;
    font-weight:700;
}

.header-btn:hover{
    background:var(--primary-dark);
}

/* ================= UPDATE BAR ================= */

.update-bar{
    background:linear-gradient(90deg,#2563eb,#1d4ed8);
    overflow:hidden;
    white-space:nowrap;
    padding:10px 0;
}

.update-track{
    display:inline-block;
    padding-left:100%;
    animation:scroll 25s linear infinite;
    font-weight:600;
}

@keyframes scroll{
    0%{
        transform:translateX(0);
    }
    100%{
        transform:translateX(-100%);
    }
}

/* ================= HERO ================= */

.hero{
    padding:120px 0;
    background:
    radial-gradient(circle at top right,
    rgba(37,99,235,.25),
    transparent 30%),
    linear-gradient(135deg,#111827,#0b1120);
}

.hero-content{
    text-align:center;
}

.hero h1{
    font-size:64px;
    font-weight:800;
    line-height:1.1;
    max-width:950px;
    margin:auto;
}

.hero h1 span{
    color:var(--primary);
}

.hero p{
    max-width:850px;
    margin:28px auto;
    color:#cbd5e1;
    font-size:20px;
    line-height:1.8;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:18px;
    flex-wrap:wrap;
    margin-top:35px;
}

.primary-btn,
.secondary-btn{
    padding:14px 26px;
    border-radius:14px;
    text-decoration:none;
    font-weight:700;
}

.primary-btn{
    background:var(--primary);
    color:#fff;
}

.primary-btn:hover{
    background:var(--primary-dark);
}

.secondary-btn{
    border:1px solid var(--border);
    color:#fff;
}

.secondary-btn:hover{
    background:#1e293b;
}

/* ================= STATS ================= */

.stats{
    margin-top:-50px;
    position:relative;
    z-index:5;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:24px;
}

.stat-card{
    background:var(--card);
    border:1px solid var(--border);
    border-radius:22px;
    padding:34px;
    text-align:center;
}

.stat-card h2{
    font-size:40px;
}

.stat-card p{
    color:var(--muted);
    margin-top:10px;
}

/* ================= SECTION ================= */

.section{
    padding:100px 0;
}

.dark-section{
    background:#0f172a;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:42px;
    margin-bottom:16px;
}

.section-title p{
    color:var(--muted);
    max-width:760px;
    margin:auto;
    line-height:1.8;
}

/* ================= APPS ================= */

.apps-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(340px,1fr));
    gap:28px;
}

.app-card{
    background:linear-gradient(180deg,#111827,#0f172a);
    border:1px solid var(--border);
    border-radius:24px;
    padding:30px;
    transition:.35s;
}

.app-card:hover{
    transform:translateY(-8px);
    border-color:rgba(37,99,235,.45);
}

.badge{
    display:inline-block;
    background:var(--primary);
    padding:8px 14px;
    border-radius:30px;
    font-size:12px;
    font-weight:700;
    margin-bottom:18px;
}

.app-card h3{
    font-size:28px;
    margin-bottom:14px;
}

.subtitle{
    color:#cbd5e1;
    line-height:1.8;
    margin-bottom:16px;
}

.description{
    color:var(--muted);
    line-height:1.8;
    margin-bottom:24px;
}

.app-meta{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-bottom:28px;
}

.app-meta span{
    background:#1e293b;
    padding:8px 12px;
    border-radius:12px;
    font-size:13px;
    color:#cbd5e1;
}

.button-group{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
}

.download-btn{
    background:var(--primary);
    color:#fff;
    text-decoration:none;
    padding:13px 22px;
    border-radius:14px;
    font-weight:700;
}

.download-btn:hover{
    background:var(--primary-dark);
}

.details-btn{
    border:1px solid var(--border);
    color:#fff;
    text-decoration:none;
    padding:13px 22px;
    border-radius:14px;
    font-weight:700;
}

.details-btn:hover{
    background:#1e293b;
}

.empty-box{
    width:100%;
    text-align:center;
    padding:60px;
    background:#111827;
    border-radius:20px;
    border:1px solid var(--border);
    color:var(--muted);
}

/* ================= FEATURES ================= */

.features-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:24px;
}

.feature-card{
    background:var(--card);
    border:1px solid var(--border);
    border-radius:22px;
    padding:30px;
}

.feature-card h4{
    font-size:22px;
    margin-bottom:14px;
}

.feature-card p{
    color:var(--muted);
    line-height:1.8;
}

/* ================= ABOUT ================= */

.about-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(360px,1fr));
    gap:28px;
}

.about-card{
    background:var(--card);
    border:1px solid var(--border);
    border-radius:24px;
    padding:40px;
}

.about-card h2{
    margin-bottom:20px;
}

.about-card p,
.about-card li{
    color:#cbd5e1;
    line-height:1.9;
}

.about-card ul{
    padding-left:20px;
}

/* ================= ADS ================= */

.ads-box{
    background:linear-gradient(135deg,#1d4ed8,#2563eb);
    border-radius:30px;
    padding:50px;
    text-align:center;
}

.ads-box h2{
    font-size:42px;
    margin-bottom:18px;
}

.ads-box p{
    max-width:700px;
    margin:auto;
    line-height:1.8;
}

.ads-placeholder{
    margin-top:28px;
    border:2px dashed rgba(255,255,255,.5);
    border-radius:20px;
    padding:40px;
    font-size:20px;
}

/* ================= CONTACT ================= */

.contact-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:24px;
}

.contact-card{
    background:var(--card);
    border:1px solid var(--border);
    border-radius:22px;
    padding:30px;
}

.contact-card h4{
    margin-bottom:14px;
}

.contact-card p{
    color:var(--muted);
}

/* ================= FOOTER ================= */

.footer{
    border-top:1px solid var(--border);
    padding:40px 0;
    text-align:center;
}

.footer-links{
    margin-bottom:18px;
}

.footer-links a{
    margin:0 12px;
    text-decoration:none;
    color:#cbd5e1;
}

.footer-links a:hover{
    color:#fff;
}

.footer p{
    color:var(--muted);
}

/* ================= MOBILE ================= */

@media(max-width:900px){

    .nav{
        display:none;
    }

    .hero h1{
        font-size:42px;
    }

    .hero p{
        font-size:18px;
    }

    .section-title h2{
        font-size:34px;
    }

    .ads-box h2{
        font-size:34px;
    }

}
/* ================= DETAILS PAGE ================= */

.details-page{
    background:linear-gradient(180deg,#111827,#0f172a);
    border:1px solid rgba(255,255,255,.08);
    border-radius:28px;
    padding:50px;
}

.details-page h1{
    font-size:52px;
    margin-bottom:20px;
}

.details-subtitle{
    font-size:20px;
    color:#cbd5e1;
    margin-bottom:30px;
    line-height:1.8;
}

.details-description{
    color:#94a3b8;
    line-height:2;
    font-size:17px;
}

.details-meta{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin-top:35px;
}

.details-meta span{
    background:#1e293b;
    padding:10px 14px;
    border-radius:12px;
    color:#cbd5e1;
    font-size:14px;
}

.details-buttons{
    display:flex;
    gap:16px;
    flex-wrap:wrap;
    margin-top:40px;
}

@media(max-width:768px){

    .details-page{
        padding:30px;
    }

    .details-page h1{
        font-size:36px;
    }

}