/* Kinetic Architect CSS */

/* Hide Scrollbar for Horizontal Scroll */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Custom Selection Color fallback */
::selection {
    background-color: #CCFF00;
    color: #020617;
}

/* Smooth Scroll behavior is handled by Tailwind 'scroll-smooth' class on html */

/* Utility: Debug Grid (Optional, currently disabled in HTML) */
.bg-grid {
    background-size: 40px 40px;
    background-image:
        linear-gradient(to right, rgba(2, 6, 23, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(2, 6, 23, 0.05) 1px, transparent 1px);
}