/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: #050814;
    color: #fff;
    overflow: hidden;
}

/* ================= HEADER ================= */
.topbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 72px;
    padding: 0 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 50;
    background: linear-gradient(
        to bottom,
        rgba(5,8,20,0.9),
        rgba(5,8,20,0)
    );
    backdrop-filter: blur(6px);
}

/* ================= LOGO ================= */
.logo {
    width: 520px;
}

.logo-svg {
    width: 100%;
    height: 70px;
}

/* ICON STAR */
.logo-icon {
    font-size: 42px;
    fill: none;
    stroke: #ffaa00;
    stroke-width: 2;
    animation: iconGlow 2.5s infinite alternate;
}

/* ICON AK */
.logo-icon-ak {
    font-size: 38px;
    fill: none;
    stroke: #ff3333;
    stroke-width: 2;
    letter-spacing: 2px;
    animation: iconGlowRed 2.5s infinite alternate;
}

/* LOGO TEXT */
.logo-text {
    font-size: 48px;
    font-weight: 900;
    fill: none;
    stroke: #00ff88;
    stroke-width: 2;
    letter-spacing: 2px;

    stroke-dasharray: 900;
    stroke-dashoffset: 900;

    animation:
        drawLogo 2.5s ease forwards,
        glowPulse 3s infinite alternate;
}

/* LOGO ANIMATIONS */
@keyframes drawLogo {
    to { stroke-dashoffset: 0; }
}

@keyframes glowPulse {
    from { filter: drop-shadow(0 0 6px #00ff88); }
    to { filter: drop-shadow(0 0 22px #00ff88); }
}

@keyframes iconGlow {
    from { filter: drop-shadow(0 0 6px #ffaa00); }
    to { filter: drop-shadow(0 0 20px #ffaa00); }
}

@keyframes iconGlowRed {
    from { filter: drop-shadow(0 0 6px #ff3333); }
    to { filter: drop-shadow(0 0 20px #ff3333); }
}

/* ================= MENU ================= */
nav {
    display: flex;
    align-items: center;
    gap: 35px;
}

nav a {
    position: relative;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #cfd8ff;
    text-decoration: none;
    transition: 0.3s;
}

/* underline */
nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, #00ff88, #00c8ff);
    transition: 0.3s;
}

nav a:hover {
    color: #00ff88;
    text-shadow: 0 0 12px rgba(0,255,136,0.7);
}

nav a:hover::after {
    width: 100%;
}

/* ================= HERO ================= */
.hero {
    position: relative;
    z-index: 5;
    height: 100vh;
    padding: 120px 80px;
    display: flex;
    align-items: flex-start;
}

.hero-left {
    max-width: 520px;
}

/* TITLE */
.hero h1 {
    font-size: 54px;
    margin-bottom: 18px;
}

.hero h1 span {
    color: #00ff88;
}

/* SUBTITLE */
.hero-subtitle {
    font-size: 15px;
    color: #cfd8ff;
    margin-bottom: 28px;
    line-height: 1.6;
}

/* ================= BUTTONS ================= */
.download-buttons {
    display: flex;
    gap: 18px;
}

.btn {
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 1px;
    text-decoration: none;
    color: #000;
    transition: 0.3s;
}

/* EXE */
.btn-exe {
    background: linear-gradient(135deg, #00ff88, #00c06a);
}

/* RAR */
.btn-rar {
    background: linear-gradient(135deg, #00c8ff, #008cff);
}

/* BUTTON HOVER */
.btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 25px rgba(0,255,136,0.45);
}

/* ================= VIDEO BACKGROUND ================= */
.video-bg {
    position: fixed;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ================= OVERLAY ================= */
.video-overlay {
    position: fixed;
    inset: 0;
    z-index: 2;
    background:
        radial-gradient(
            circle at left,
            rgba(5,8,20,0.78),
            rgba(5,8,20,0.95)
        );
}




.download-count {
    margin-top: 14px;
    font-size: 14px;
    color: #cfd8ff;
    opacity: 0.85;
}


.download-counter {
    margin-top: 18px;
    text-align: center;
    font-size: 15px;
    color: #cfd8ff;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.download-counter strong {
    color: #00ff88;
    font-weight: 800;
}

.stats-boxes {
    display: flex;
    gap: 25px;
    margin-top: 40px;
}

.stat-box {
    background: rgba(5,8,20,0.7);
    border: 1px solid rgba(0,255,136,0.2);
    padding: 25px 35px;
    border-radius: 14px;
    text-align: center;
    min-width: 180px;
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: #00ff88;
}

.stat-label {
    margin-top: 8px;
    font-size: 14px;
    color: #cfd8ff;
    opacity: 0.85;
}


.stat-box.uninstall {
    border-color: rgba(255,80,80,0.35);
}

.stat-box.uninstall .stat-number {
    color: #ff5050;
}


.chart-box {
    margin-top: 40px;
    background: rgba(5,8,20,0.75);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 25px;
}


.mini-chart {
    margin-top: 35px;
    max-width: 360px;
}

.chart-link {
    display: inline-block;
    margin-top: 10px;
    font-size: 13px;
    color: #00ff88;
    text-decoration: none;
}

.chart-link:hover {
    text-decoration: underline;
}


.mini-chart {
    margin-top: 15px;
    width: 260px;
    height: 70px;
    opacity: 0.85;
}


























