/*
 * assets/css/style.css
 * ─────────────────────────────────────────────────────────
 * Override or extend the inline styles in index.php here.
 * The main design lives in the <style> block of index.php;
 * use this file for site-specific customisations.
 * ─────────────────────────────────────────────────────────
 */

/* Example: custom scrollbar (Chromium/Edge) */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #0a192f;
}
::-webkit-scrollbar-thumb {
    background: #64ffda44;
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: #64ffda88;
}

/* Print styles */
@media print {
    .navbar,
    .scroll-hint,
    .btt,
    .hero-dots,
    .hero-glow-1,
    .hero-glow-2 {
        display: none !important;
    }
    body {
        background: #fff !important;
        color: #000 !important;
    }
    .hero {
        min-height: auto;
        padding-top: 2rem;
    }
}
