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

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

body {
    font-family: 'Inter', sans-serif;
    background: #050505;
    color: #fff;
    overflow-x: hidden;


    user-select: none;         
    -webkit-user-select: none; 
    cursor: default;
}

::-webkit-scrollbar { width: 6px;}
::-webkit-scrollbar-track { background: rgba(255,255,255,0.05); }
::-webkit-scrollbar-thumb { background: #333; border-radius: 3px; }

.video-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    opacity: 0.4;
}

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

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5,5,5,0.8) 0%, rgba(5,5,5,0.4) 50%, #050505 100%);
}


.bg-gradient {
    position: fixed;
    inset: 0;
    background: linear-gradient(-45deg, #000000, #1a0500, #0f0f0f, #1a0a00);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    z-index: -2;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.bg-blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.08;
    z-index: -1;
    animation: float 10s infinite ease-in-out;
}

.blob-1 { top: -10%; right: -10%; width: 600px; height: 600px; background: #f97316; }
.blob-2 { bottom: -10%; left: -10%; width: 600px; height: 600px; background: #ef4444; animation-delay: 2s; }

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, 50px); }
}


/* --- NAVBAR & MOBILE MENU --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1000;
    transition: all 0.3s ease;
}

/* === LOGO STYLES  === */

.brand-logo {
    display: flex;
    align-items: baseline; 
    gap: 8px;
    cursor: pointer;
    user-select: none;
    line-height: 1;
}

.brand-rust {
    font-size: 24px;
    font-weight: 900;
    color: #f97316;   
    letter-spacing: -1px; 
    text-transform: uppercase;
    font-family: 'Inter', sans-serif; 
}

.brand-launcher {
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    opacity: 0.5; 
    text-transform: uppercase;
}

.footer-logo.brand-logo .brand-rust {
    font-size: 20px;
}

.footer-logo.brand-logo .brand-launcher {
    font-size: 10px;
    opacity: 0.4; 
}

.brand-logo:hover .brand-launcher {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
    width: 100%;
    justify-content: flex-end;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover { color: #f97316; }

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


.hamburger {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    z-index: 1002;
}

/* Перемикач мови */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.03);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: border-color 0.3s;
}

.lang-switcher:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.lang-opt {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-opt:hover { color: #fff; }

.lang-opt.active {
    color: #f97316;
    text-shadow: 0 0 15px rgba(249, 115, 22, 0.4);
}

.lang-divider {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.1);
}

.btn-nav {
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}

.btn-nav:hover {
    background: #f97316;
    border-color: #f97316;
    box-shadow: 0 0 15px rgba(249, 115, 22, 0.4);
}

@media (max-width: 960px) {
    .navbar {
        padding: 15px 20px;
    }

    .hamburger {
        display: block; 
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%; 
        width: 100%;
        height: 100vh;
        background: #0a0a0a;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1001;
        padding-bottom: 50px; 
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .nav-links a {
        font-size: 24px; 
        font-weight: 700;
    }

    .nav-actions {
        flex-direction: column;
        gap: 30px;
        margin-top: 20px;
    }

    .btn-nav {
        padding: 16px 40px;
        font-size: 18px;
        width: 100%;
        text-align: center;
    }

    .lang-switcher {
        transform: scale(1.2);
    }
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10%;
    position: relative;
}

.hero-content {
    max-width: 600px;
    z-index: 2;
}

.badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(249, 115, 22, 0.15);
    color: #f97316;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 20px;
    border: 1px solid rgba(249, 115, 22, 0.3);
}

.hero-title {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 900;
}

.gradient-text {
    background: linear-gradient(135deg, #f97316, #ef4444);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

@media (max-width: 768px) {
    .hero { flex-direction: column; text-align: center; padding-top: 120px; height: auto; padding-bottom: 50px;}
    .hero-content { margin-bottom: 50px; }
    .hero-title { font-size: 42px; }
    .hero-buttons { justify-content: center; }
    .app-mockup { display: none; } 
}


.btn-primary {
    padding: 16px 32px;
    background: linear-gradient(135deg, #f97316, #dc2626);
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.4);
}

.btn-secondary {
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.app-mockup {
    position: relative;
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.app-mockup:hover {
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
}

.mockup-img {
    width: 100%;
    max-width: 600px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.glow-effect {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.3) 0%, transparent 70%);
    z-index: -1;
    filter: blur(20px);
}

section{
    background: rgba(0, 0, 0, 0.562);
}

.features {
    padding: 100px 10%;

}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 60px;
    font-weight: 800;
    letter-spacing: 1px;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s, border-color 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: #f97316;
    background: rgba(255, 255, 255, 0.05);
}

.icon-box {
    width: 50px;
    height: 50px;
    background: rgba(249, 115, 22, 0.1);
    color: #f97316;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 24px;
    margin-bottom: 20px;
}

.feature-card h3 { margin-bottom: 10px; font-size: 20px; }
.feature-card p { color: rgba(255, 255, 255, 0.6); line-height: 1.5; font-size: 14px; }

.gallery { padding: 100px 10%; }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16/9;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img { transform: scale(1.05); }

.gallery-item .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    font-weight: 700;
    font-size: 18px;
}

.gallery-item:hover .overlay { opacity: 1; }


.roadmap { padding: 100px 10%; background: rgba(0, 0, 0, 0.3); max-height: 200px;}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 40px;
}

.dot {
    position: absolute;
    left: 11px;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #333;
    border: 2px solid #555;
}

.timeline-item.done .dot { background: #22c55e; border-color: #22c55e; box-shadow: 0 0 10px rgba(34, 197, 94, 0.5); }
.timeline-item.active .dot { background: #f97316; border-color: #f97316; box-shadow: 0 0 10px rgba(249, 115, 22, 0.5); }

.content h3 { font-size: 20px; margin-bottom: 5px; }
.content .date { display: block; font-size: 12px; color: rgba(255, 255, 255, 0.4); margin-bottom: 10px; text-transform: uppercase; }
.content p { color: rgba(255, 255, 255, 0.6); }


.download-section { padding: 100px 10%; text-align: center; }

.download-box {
    background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    padding: 60px;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.download-box h2 { font-size: 48px; margin-bottom: 20px; font-weight: 900; }
.download-box p { font-size: 18px; color: rgba(255, 255, 255, 0.6); margin-bottom: 40px; }

.download-options {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}


/* --- FOOTER --- */
footer {
    padding: 30px 5%; 
    background: rgba(0, 0, 0, 0.411);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* LEFT SIDE */
.footer-left {
    text-align: left;
}

.copyright {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1.4;
}

/* CENTER SIDE */
.footer-center {
    display: flex;
    justify-content: center;
}

.socials a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 24px;
    margin: 0 15px;
    transition: all 0.3s;
}

.socials a:hover { 
    color: #fff; 
    transform: translateY(-3px);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* RIGHT SIDE (STATUS WIDGET) */
.footer-right {
    display: flex;
    justify-content: flex-end;
}

.sys-status-widget.footer-version {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(34, 197, 94, 0.05);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 30px;
    transition: all 0.3s ease;
    cursor: help;
    margin: 0; 
}

.sys-status-widget.footer-version:hover {
    background: rgba(34, 197, 94, 0.1);
    border-color: #22c55e;
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.2);
}

/* Status Animation & Text */
.status-icon {
    position: relative;
    width: 10px;
    height: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ping-dot {
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 5px #22c55e;
}

.ping-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid #22c55e;
    opacity: 0;
    animation: ping-wave 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping-wave {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(3); opacity: 0; }
}

.status-text {
    font-family: 'Consolas', 'Courier New', monospace;
    font-size: 11px;
    font-weight: 700;
    color: #22c55e;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* --- FOOTER MOBILE ADAPTIVE --- */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .footer-left, .footer-right {
        text-align: center;
        justify-content: center;
    }
    
    .sys-status-widget.footer-version {
        width: 100%; 
        justify-content: center;
    }
}



.btn-disabled {
    background: #333 !important;
    color: #777 !important;
    border-color: #444 !important;
    cursor: not-allowed !important;
    pointer-events: none !important; 
    box-shadow: none !important;
    transform: none !important;
}

.btn-disabled i {
    color: #555 !important;
}

.btn-disabled .sub-text {
    color: #555 !important;
}


.contact-section {
    padding: 100px 10%;
    /* background: rgba(0, 0, 0, 0.2); */
    text-align: center;
}

.section-subtitle {
    color: rgba(255, 255, 255, 0.5);
    margin-top: -40px;
    margin-bottom: 60px;
    font-size: 16px;
}

.contact-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 30px;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 250px;
}

.contact-card .icon {
    font-size: 28px;
    color: #fff;
    opacity: 0.8;
    transition: transform 0.3s;
}

.contact-card .info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact-card .label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    font-weight: 600;
}

.contact-card .value {
    font-size: 16px;
    color: #fff;
    font-weight: 600;
}

.contact-card.discord:hover {
    background: rgba(88, 101, 242, 0.1);
    border-color: #5865F2;
    transform: translateY(-5px);
}
.contact-card.discord:hover .icon { color: #5865F2; transform: scale(1.1); }

.contact-card.telegram:hover {
    background: rgba(36, 161, 222, 0.1);
    border-color: #24A1DE;
    transform: translateY(-5px);
}
.contact-card.telegram:hover .icon { color: #24A1DE; transform: scale(1.1); }

.contact-card.email:hover {
    background: rgba(249, 115, 22, 0.1);
    border-color: #f97316;
    transform: translateY(-5px);
}
.contact-card.email:hover .icon { color: #f97316; transform: scale(1.1); }

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none; 
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); 
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-content img {
    display: block;
    max-width: 100%;
    max-height: 85vh;
    border-radius: 12px;
    box-shadow: 0 0 50px rgba(249, 115, 22, 0.2); 
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    background: none;
    border: none;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    transition: color 0.3s, transform 0.3s;
    z-index: 2001;
    line-height: 1;
}

.lightbox-close:hover {
    color: #f97316;
    transform: rotate(90deg);
}

.faq-section {
    padding: 100px 10%;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(249, 115, 22, 0.3);
}

.faq-item[open] {
    background: rgba(249, 115, 22, 0.05);
    border-color: #f97316;
}

summary {
    padding: 20px 30px;
    cursor: pointer;
    font-weight: 600;
    font-size: 18px;
    list-style: none; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.9);
}


summary::after {
    content: '+';
    font-weight: 300;
    font-size: 24px;
    color: #f97316;
    transition: transform 0.3s;
}

.faq-item[open] summary::after {
    transform: rotate(45deg); 
}

.faq-content {
    padding: 0 30px 25px 30px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    font-size: 15px;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}


/* --- PRELOADER --- */
#preloader {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, #050505 0%, #1a0a00 50%, #000000 100%);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 1.5s ease, visibility 2.5s ease;
}

.loader-content {
    width: 300px;
    text-align: center;
    position: relative;
}


.glitch-text {

    font-size: 42px;
    font-weight: 900;
    color: #fff;
    position: relative;
    letter-spacing: 4px;
    margin-bottom: 30px;
    display: inline-block;
}


.loader-status-row {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    font-family: monospace;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.loading-bar-container {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.loading-bar-fill {
    height: 100%;
    width: 0%;
    background: #f97316;
    box-shadow: 0 0 10px #f97316;
    transition: width 0.1s linear;
}

body.loaded #preloader {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.feature-card, .contact-card, .gallery-item {
    transform-style: preserve-3d;
    perspective: 1000px;
    will-change: transform; 
}


.feature-card::after, .contact-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: inherit;
    pointer-events: none;
    z-index: 2;
}

.feature-card:hover::after, .contact-card:hover::after {
    opacity: 1;
}


.hero-title span {
    position: relative;
    display: inline-block;
}

.hero-title:hover span {
    animation: glitch 0.3s cubic-bezier(.25, .46, .45, .94) both infinite;
    color: #f97316;
}

.hero-title:hover span::before,
.hero-title:hover span::after {
    content: 'СТАРТ';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.hero-title:hover span::before {
    color: #0ff;
    z-index: -1;
    animation: glitch-anim-1 2s infinite linear alternate-reverse;
}

.hero-title:hover span::after {
    color: #f0f;
    z-index: -2;
    animation: glitch-anim-2 3s infinite linear alternate-reverse;
}

@keyframes glitch {
    0% { transform: translate(0) }
    20% { transform: translate(-2px, 2px) }
    40% { transform: translate(-2px, -2px) }
    60% { transform: translate(2px, 2px) }
    80% { transform: translate(2px, -2px) }
    100% { transform: translate(0) }
}

@keyframes glitch-anim-1 {
    0% { clip: rect(30px, 9999px, 10px, 0); }
    20% { clip: rect(85px, 9999px, 90px, 0); }
    40% { clip: rect(50px, 9999px, 60px, 0); }
    60% { clip: rect(10px, 9999px, 20px, 0); }
    80% { clip: rect(70px, 9999px, 80px, 0); }
    100% { clip: rect(30px, 9999px, 10px, 0); }
}

@keyframes glitch-anim-2 {
    0% { clip: rect(15px, 9999px, 50px, 0); }
    20% { clip: rect(60px, 9999px, 75px, 0); }
    40% { clip: rect(10px, 9999px, 30px, 0); }
    60% { clip: rect(90px, 9999px, 100px, 0); }
    80% { clip: rect(35px, 9999px, 45px, 0); }
    100% { clip: rect(15px, 9999px, 50px, 0); }
}


/* --- NAVBAR & LANGUAGE SWITCHER --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1000;
}

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

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.03);
    padding: 8px 16px;
    border-radius: 20px; 
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: border-color 0.3s;
}

.lang-switcher:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.lang-opt {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4); 
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    position: relative;
}

.lang-opt:hover {
    color: #fff;
}

.lang-opt.active {
    color: #f97316; 
    text-shadow: 0 0 15px rgba(249, 115, 22, 0.4);
}

.lang-divider {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.1);
    user-select: none;
}

/* --- CHANGELOG STYLES --- */
.changelog-section {
    padding: 100px 10%;
    background: rgba(0, 0, 0, 0.4);
}

.changelog-box {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    max-height: 400px;
    overflow-y: auto; 
}

.changelog-list{
    max-height: 400px;
    overflow-y: auto;
}

.log-item {
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.log-item:last-child { border-bottom: none; margin-bottom: 0; }

.log-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.log-version {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
}

.log-date {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
}

.log-badge {
    background: #f97316;
    color: #000;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 4px;
}

.log-list {
    list-style: none;
    padding-left: 0;
}

.log-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.log-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.log-list li.added::before { background: #22c55e; box-shadow: 0 0 8px #22c55e; }
.log-list li.fixed::before { background: #ef4444; box-shadow: 0 0 8px #ef4444; }
.log-list li.improved::before { background: #3b82f6; box-shadow: 0 0 8px #3b82f6; }



/* --- DEV HUB (Tabs System) --- */
.dev-section {
    padding: 100px 10%;
    /* background: rgba(0, 0, 0, 0.4); */
}

.dev-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    overflow: hidden;
    min-height: 400px;
}

/* TABS HEADER */
.dev-tabs {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(0, 0, 0, 0.2);
}

.tab-btn {
    flex: 1;
    padding: 20px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.tab-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.02);
}

.tab-btn.active {
    color: #f97316;
    background: rgba(249, 115, 22, 0.05);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #f97316;
    box-shadow: 0 0 10px #f97316;
}

/* CONTENT AREAS */
.tab-content {
    display: none;
    padding: 40px;
    animation: fadeIn 0.4s ease;
}

.tab-content.active {
    display: block;
}

/* CHANGELOG STYLES */
.log-item {
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.log-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.log-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.log-ver { font-size: 20px; font-weight: 800; color: #fff; }
.log-date { font-size: 13px; color: rgba(255, 255, 255, 0.3); }
.log-badge {
    background: #f97316; color: #000;
    font-size: 10px; font-weight: 800;
    padding: 2px 8px; border-radius: 4px;
}

/* --- WEBSITE CHANGELOG --- */
.changelog-list ul {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.change-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border-left: 2px solid transparent;
}

.change-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 2px;
}

.change-icon svg {
    width: 12px;
    height: 12px;
    stroke-width: 3;
}

.change-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.type-added { border-color: rgba(34, 197, 94, 0.4); }
.type-added .change-icon { background: rgba(34, 197, 94, 0.1); color: #22c55e; }

.type-fixed { border-color: rgba(239, 68, 68, 0.4); }
.type-fixed .change-icon { background: rgba(239, 68, 68, 0.1); color: #ef4444; }

.type-improved { border-color: rgba(59, 130, 246, 0.4); }
.type-improved .change-icon { background: rgba(59, 130, 246, 0.1); color: #3b82f6; }

.changelog-list li.added::before { background: #22c55e; }
.changelog-list li.fixed::before { background: #ef4444; }
.changelog-list li.improved::before { background: #3b82f6; }

/* ROADMAP STYLES */
.roadmap-list { display: flex; flex-direction: column; gap: 20px; max-height: 400px; overflow-y: auto;}


.road-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 16px;
}

.road-item.active { border-color: rgba(249, 115, 22, 0.3); }

.road-status {
    display: inline-block;
    font-size: 10px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px;
    color: #f97316; margin-bottom: 10px;
}
.road-status.plan { color: rgba(255, 255, 255, 0.4); }

.road-item h3 { font-size: 18px; margin-bottom: 5px; color: #fff; }
.road-item p { font-size: 14px; color: rgba(255, 255, 255, 0.5); }

.progress-bar {
    height: 4px; background: rgba(255,255,255,0.1);
    border-radius: 2px; margin-top: 15px; overflow: hidden;
}
.progress {
    height: 100%; background: #f97316;
    box-shadow: 0 0 10px rgba(249, 115, 22, 0.5);
}


/* --- NEW TRUST SCANNER STYLES --- */
.trust-section {
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.trust-container {
    display: flex;
    align-items: center;
    gap: 50px;
    background: rgba(10, 10, 10, 0.8); 
    border: 1px solid rgba(34, 197, 94, 0.3); 
    box-shadow: 0 0 40px rgba(34, 197, 94, 0.1); 
    padding: 40px;
    border-radius: 24px;
    max-width: 1000px;
    width: 100%;
    backdrop-filter: blur(10px);
    position: relative;
}

.scanner-visual {
    position: relative;
    flex-shrink: 0;
    width: 280px;
    height: 180px;
    background: rgba(34, 197, 94, 0.05);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(34, 197, 94, 0.2);
    overflow: hidden;
}

.virus-total-logo img {
    height: 40px;
    opacity: 0.8;
    margin-bottom: 15px;
    filter: grayscale(100%) brightness(200%); 
}


.scan-score {
    font-size: 48px;
    font-weight: 900;
    color: #22c55e; 
    text-shadow: 0 0 20px rgba(34, 197, 94, 0.5);
    line-height: 1;
}

.scan-score .separator {
    color: rgba(255, 255, 255, 0.3);
    font-size: 32px;
}

.scan-status {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #22c55e;
    text-transform: uppercase;
    text-align: center;
    margin-top: 5px;
    background: rgba(34, 197, 94, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
}


.bg-shield-icon {
    position: absolute;
    font-size: 150px;
    color: rgba(34, 197, 94, 0.03);
    z-index: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #22c55e;
    box-shadow: 0 0 15px #22c55e, 0 0 30px #22c55e;
    opacity: 0.7;
    animation: scanMove 3s ease-in-out infinite;
    z-index: 10;
}

@keyframes scanMove {
    0% { top: -10%; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 110%; opacity: 0; }
}

.scanner-content h2 {
    font-size: 32px;
    color: #fff;
    margin-bottom: 15px;
}

.scanner-content p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 500px;
}

.trust-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    color: #22c55e;
    border: 2px solid #22c55e;
    padding: 12px 28px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.trust-btn:hover {
    background: #22c55e;
    color: #000;
    box-shadow: 0 0 25px rgba(34, 197, 94, 0.4);
    transform: translateY(-3px);
}

@media (max-width: 900px) {
    .trust-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 30px;
    }
    .scanner-content p { margin: 0 auto 25px auto; }
}



/* --- COMPARISON SECTION --- */
.comparison-section {
    padding: 80px 10%;
    /* background: rgba(0, 0, 0, 0.2); */
}

.comp-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.comp-column {
    flex: 1;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: transform 0.3s;
}


.comp-column.pro {
    background: rgba(249, 115, 22, 0.05);
    border-color: rgba(249, 115, 22, 0.3);
    box-shadow: 0 0 40px rgba(249, 115, 22, 0.05);
    transform: scale(1.05); 
    z-index: 2;
}

.comp-column h3 {
    font-size: 24px;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.comp-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comp-list li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    font-size: 16px;
    font-weight: 500;
}


.comp-list li.bad i { color: #555; font-size: 18px; }
.comp-list li.bad span { color: rgba(255,255,255,0.4); text-decoration: line-through; }


.comp-list li.good i { color: #22c55e; font-size: 18px; }
.comp-list li.good span { color: #fff; font-weight: 700; }


.vs-badge {
    background: #000;
    color: #fff;
    font-weight: 900;
    font-size: 14px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

@media (max-width: 768px) {
    .comp-container { flex-direction: column; gap: 20px; }
    .vs-badge { position: relative; transform: none; top: 0; left: 0; margin: 10px auto; }
    .comp-column.pro { transform: none; }
}


body.is-maintenance {
    overflow: hidden;
}

body.is-maintenance > *:not(#maintenance-banner) {
    filter: blur(5px) grayscale(80%);
    pointer-events: none; 
    transition: filter 0.5s ease;
}

.maintenance-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none; 
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6); 
    backdrop-filter: blur(3px);
}

.maintenance-box {
    background: #111;
    border: 1px solid #333;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes popIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.maint-stripe-bar {
    height: 12px;
    width: 100%;
    background: repeating-linear-gradient(
        45deg,
        #f59e0b,
        #f59e0b 10px,
        #111 10px,
        #111 20px
    );
}

.maint-stripe-bar.bottom {
    transform: rotate(180deg);
}

.maint-content {
    padding: 40px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.maint-icon {
    font-size: 48px;
    color: #f59e0b; 
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px rgba(245, 158, 11, 0.4));
}

.maintenance-box h2 {
    font-size: 28px;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 800;
    letter-spacing: 1px;
}

.maintenance-box p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 30px;
}

.maint-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(245, 158, 11, 0.1);
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid rgba(245, 158, 11, 0.3);
    font-size: 12px;
    font-weight: 700;
    color: #f59e0b;
}

.status-dot.blink {
    width: 8px;
    height: 8px;
    background: #f59e0b;
    border-radius: 50%;
    box-shadow: 0 0 10px #f59e0b;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0% { opacity: 0.4; }
    50% { opacity: 1; }
    100% { opacity: 0.4; }
}


.maint-text-btn {
    margin-top: 30px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.maint-text-btn:hover {
    color: #fff;
    transform: translateX(5px); 
}


@media (max-width: 768px) {
    /* .maintenance-overlay {
        justify-content: unset !important;
    } */
    #maintenance-lock.modal-overlay {
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
        width: 100vw !important; 
        height: 100vh !important; 
        left: 0 !important;
        top: 0 !important;
    }

    #maintenance-lock .modal {
        width: 90vw !important; 
        max-width: 380px !important;
        
        margin: 0 auto !important;
        padding: 15px !important;
        box-sizing: border-box !important;
        
        max-height: 85vh !important;
        overflow-y: auto !important;
        
        position: relative !important;
        transform: none !important;
        left: auto !important;
        top: auto !important;
    }

    .maint-content {
        padding: 10px 0 !important; 
        width: 100% !important;
    }

    .lock-icon-wrapper i { font-size: 36px !important; }
    #maintenance-lock h2 { font-size: 18px !important; margin-bottom: 8px !important; }
    #maintenance-lock p { font-size: 13px !important; margin-bottom: 15px !important; }

    .maint-buttons-row {
        flex-direction: column !important;
        gap: 8px !important;
        margin: 15px 0 !important;
        width: 100% !important;
    }

    .btn-maint-link {
        width: 100% !important;
        box-sizing: border-box !important; 
        justify-content: unset !important;
        padding: 10px !important;
        font-size: 12px !important;
    }
    
    #maintenance-exit-btn {
        width: 100% !important;
        padding: 12px !important;
        font-size: 12px !important;
        box-sizing: border-box !important;
    }

    #maintenance-lock .modal::-webkit-scrollbar { width: 4px; }
}


/* --- BETA NOTICE IN DOWNLOAD --- */
.beta-notice-box {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    padding: 12px 24px;
    
    background: rgba(234, 179, 8, 0.1); 
    border: 1px solid rgba(234, 179, 8, 0.3);
    border-radius: 12px;
    
    color: #facc15; 
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    
    box-shadow: 0 0 20px rgba(234, 179, 8, 0.05);
    transition: all 0.3s ease;
    cursor: help;
}

.beta-notice-box:hover {
    background: rgba(234, 179, 8, 0.15);
    box-shadow: 0 0 25px rgba(234, 179, 8, 0.15);
    transform: translateY(-2px);
}

.beta-notice-box i {
    font-size: 14px;
}


/* --- SINGLE DOWNLOAD BUTTON STYLE --- */

.download-area {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    flex-direction: column; align-items: center; gap: 10px;
}

.mega-download {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 40px;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    border-radius: 16px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 350px; 
    overflow: hidden;
}

.mega-download::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transform: skewX(-20deg);
    animation: shine-btn 4s infinite;
}

@keyframes shine-btn {
    0% { left: -100%; opacity: 0; }
    10% { opacity: 1; }
    20% { left: 200%; opacity: 0; } 
    100% { left: 200%; opacity: 0; } 
}

.mega-download:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 50px rgba(249, 115, 22, 0.5);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-icon-box {
    font-size: 32px;
    background: rgba(0, 0, 0, 0.2);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.btn-text-box {
    display: flex;
    flex-direction: column;
    text-align: left;
    flex: 1; 
}

.btn-text-box .main-text {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 1px;
    line-height: 1.2;
}

.btn-text-box .sub-text {
    font-size: 13px;
    opacity: 0.8;
    font-weight: 500;
}


.arrow-anim {
    font-size: 18px;
    opacity: 0.7;
    transition: transform 0.3s;
}

.mega-download:hover .arrow-anim {
    transform: translateX(5px);
    opacity: 1;
}

.requirements {
    margin-top: 30px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
}


@media (max-width: 600px) {
    .mega-download {
        width: 100%; 
        min-width: auto;
        padding: 15px 20px;
    }
    
    .btn-icon-box {
        width: 45px;
        height: 45px;
        font-size: 24px;
    }

    .btn-text-box .main-text {
        font-size: 16px;
    }
}


/* --- DOWNLOAD COUNTER --- */
.dl-stats {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    margin-top: 15px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.dl-stats i {
    font-size: 14px;
}


/* --- SCROLL PROGRESS BAR --- */
.scroll-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px; 
    background: transparent;
    z-index: 99999; 
    pointer-events: none;
}

.scroll-progress-bar {
    height: 100%;
    background: #f97316; 
    width: 0%;
    box-shadow: 0 0 10px #f97316, 0 0 20px #f97316; 
    border-radius: 0 2px 2px 0;
    transition: width 0.1s linear;
}


/* --- SYSTEM STATUS WIDGET --- */
.sys-status-widget {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px; 
    padding: 8px 16px;
    background: rgba(34, 197, 94, 0.05); 
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 30px;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    cursor: default;
}

.sys-status-widget:hover {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.4);
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.1);
    transform: translateY(-2px);
}

.status-icon {
    position: relative;
    width: 10px;
    height: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ping-dot {
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 5px #22c55e;
}

.ping-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid #22c55e;
    opacity: 0;
    animation: ping-wave 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping-wave {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(3); opacity: 0; }
}

.status-text {

    font-size: 11px;
    font-weight: 700;
    color: #22c55e; 
    letter-spacing: 1px;
    text-transform: uppercase;
}


/* --- PRODUCTS / CROSS PROMO --- */
.products-section {
    padding: 50px 10%;
    display: flex;
    justify-content: center;
}

.product-banner {
    background: linear-gradient(135deg, rgba(20, 20, 25, 0.9) 0%, rgba(10, 10, 15, 0.95) 100%);
    border: 1px solid rgba(249, 115, 22, 0.3); 
    box-shadow: 0 0 40px rgba(249, 115, 22, 0.1);
    border-radius: 24px;
    padding: 50px;
    width: 100%;
    max-width: 1000px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-banner:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 50px rgba(249, 115, 22, 0.2);
    border-color: rgba(249, 115, 22, 0.5);
}


.product-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(249, 115, 22, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(249, 115, 22, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 0;
    mask-image: radial-gradient(circle, black 40%, transparent 80%);
}

.prod-content {
    position: relative;
    z-index: 2;
    max-width: 500px;
}

.prod-badge {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    background: rgba(249, 115, 22, 0.1);
    color: #f97316;
    padding: 6px 12px;
    border-radius: 6px;
    text-transform: uppercase;
    border: 1px solid rgba(249, 115, 22, 0.2);
}

.prod-title {
    font-size: 42px;
    font-weight: 900;
    color: #fff;
    margin: 15px 0;
    letter-spacing: -1px;
}

.prod-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.prod-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f97316;
    color: #fff;
    text-decoration: none;
    padding: 14px 30px;
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(249, 115, 22, 0.3);
}

.prod-btn:hover {
    background: #ea580c; 
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.4);
}

.prod-visual {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 200px;
}

.chart-icon {
    font-size: 120px;
    color: rgba(249, 115, 22, 0.2);
    filter: drop-shadow(0 0 30px rgba(249, 115, 22, 0.3));
    animation: float 6s infinite ease-in-out;
}

.floating-stat {
    position: absolute;
    background: rgba(15, 15, 20, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    backdrop-filter: blur(5px);
    
}

.floating-stat.s1 { top: 20px; right: -20px; color: #22c55e; animation: float 5s infinite ease-in-out 1s; border: 1px #22c55e solid; }
.floating-stat.s2 { bottom: 40px; left: -30px; color: #f97316; animation: float 7s infinite ease-in-out 0.5s; border: 1px #f97316 solid; }

@media (max-width: 900px) {
    .product-banner {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }
    
    .prod-visual { margin-top: 20px; width: 150px; height: 150px; }
    .chart-icon { font-size: 80px; }
}

/* --- PROOF --- */
.social-proof-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 35px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 20px 8px 12px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
    cursor: default;
}

.social-proof-wrapper:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(249, 115, 22, 0.3);
    transform: translateY(-2px);
}

.users-avatars {
    display: flex;
    padding-left: 5px;
}

.users-avatars span {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid #050505; 
    margin-left: -8px; 
}

.users-avatars span:first-child {
    margin-left: 0;
}

.social-proof-wrapper p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1;
}

.social-proof-wrapper strong {
    color: #fff;
    font-weight: 800;
}

.count-anim {
    color: #f97316 !important;
    text-shadow: 0 0 15px rgba(249, 115, 22, 0.4);
}

@media (max-width: 768px) {
    .social-proof-wrapper {
        margin-bottom: 25px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        min-height: 50px; 
        

        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    #dynamic-text {
        font-size: clamp(32px, 10vw, 64px) !important;
        width: 100%; 
    }
}


/* --- EASTER EGG: HELI (FIXED & POLISHED) --- */
#patrol-heli-container {
    position: fixed;
    top: 20%;
    left: -400px; /* Стартуємо зліва за екраном */
    z-index: 9999;
    pointer-events: none;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5));
    opacity: 0;
    will-change: transform, left;
}

.heli-body {
    font-size: 160px; /* Великий розмір */
    color: #111;
    /* Нахил носом вниз (агресивна атака) */
    transform: rotate(10deg); 
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.heli-body i {
    display: block;
    /* Металевий градієнт */
    background: linear-gradient(to bottom, #4b5563, #0f172a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: blur(0.4px);
}

/* ПРОЖЕКТОР (Виправлено позицію) */
.heli-light {
    position: absolute;
    /* Позиціонування відносно носа вертольота (справа знизу) */
    bottom: 20px; 
    right: 20px; 
    
    width: 150px;
    height: 600px; /* Довгий промінь */
    background: linear-gradient(180deg, rgba(220, 38, 38, 0.4), transparent 80%);
    
    transform-origin: top center; /* Точка обертання - біля лампи */
    transform: rotate(-25deg); /* Кут променя вперед */
    
    pointer-events: none;
    opacity: 0; 
    z-index: -1;
    mix-blend-mode: hard-light; /* Яскраве накладання */
    border-radius: 50% 50% 0 0; /* Округлий початок світла */
}

/* --- АНІМАЦІЇ --- */

.fly-by {
    animation: heliFlyRight 6s ease-in-out forwards;
    opacity: 1 !important;
}

@keyframes heliFlyRight {
    0% { 
        left: -400px; 
        top: 20%;
        transform: scale(0.6);
    }
    20% { 
        top: 15%; 
    }
    50% { 
        top: 25%; 
        transform: scale(1);
    }
    80% {
        top: 15%; 
    }
    100% { 
        left: 120vw;
        top: 20%;
        transform: scale(0.8);
    }
}


/* --- WINTER UPDATE: SNOWFALL --- */
.snow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; 
    z-index: 1; 
    overflow: hidden;
}

.snowflake {
    position: absolute;
    top: -10px;
    background: white;
    border-radius: 50%;
    opacity: 0.8;
    animation: fall linear infinite;
}

.snowflake:nth-child(1) { left: 10%; width: 5px; height: 5px; animation-duration: 10s; opacity: 0.3; }
.snowflake:nth-child(2) { left: 20%; width: 3px; height: 3px; animation-duration: 12s; opacity: 0.5; }
.snowflake:nth-child(3) { left: 70%; width: 4px; height: 4px; animation-duration: 8s; opacity: 0.4; }
.snowflake:nth-child(4) { left: 40%; width: 6px; height: 6px; animation-duration: 14s; opacity: 0.2; }
.snowflake:nth-child(5) { left: 85%; width: 3px; height: 3px; animation-duration: 11s; opacity: 0.6; }
.snowflake:nth-child(6) { left: 5%;  width: 4px; height: 4px; animation-duration: 9s;  opacity: 0.3; }
.snowflake:nth-child(7) { left: 50%; width: 2px; height: 2px; animation-duration: 13s; opacity: 0.5; }
.snowflake:nth-child(8) { left: 95%; width: 5px; height: 5px; animation-duration: 15s; opacity: 0.2; }

@keyframes fall {
    0% { 
        transform: translateY(-10vh) translateX(0) rotate(0deg);
        opacity: 0.8;
    }
    50% {
        transform: translateY(50vh) translateX(30px) rotate(180deg);
        opacity: 0.6;
    }
    100% { 
        transform: translateY(110vh) translateX(0) rotate(360deg);
        opacity: 0;
    }
}

.bg-gradient::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.04) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(147, 197, 253, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}