/* ============================================================
   JEX VPN - Main Stylesheet
   Dark emerald/gold theme with premium aesthetics
   ============================================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: #0a0f0d;
    color: #ffffff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ---------- TYPOGRAPHY ---------- */
.font-space {
    font-family: 'Space Grotesk', sans-serif;
}

.font-mono {
    font-family: 'JetBrains Mono', monospace;
}

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #0a0f0d;
}

::-webkit-scrollbar-thumb {
    background: #065f46;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #10b981;
}

/* ---------- SELECTION ---------- */
::selection {
    background: rgba(16, 185, 129, 0.3);
    color: #ffffff;
}

/* ---------- UTILITY: SPACING FOR MOBILE BOTTOM BAR ---------- */
@media (max-width: 767px) {
    footer {
        padding-bottom: 80px;
    }
}

/* ---------- PARTICLE CANVAS ---------- */
#particles {
    background: linear-gradient(180deg, #0a0f0d 0%, #064e3b33 50%, #0a0f0d 100%);
}
