// Critical CSS - Only above-the-fold styles for fast FCP/LCP
// Keep this under 14KB when minified

// Essential reset (subset)
@import './base/reset';

// Variables and utils needed for critical styles
@import './utils/variables';
@import './utils/functions';
@import './utils/mixins';
@import './utils/responsive';

// Preloader (visible immediately)
@import './components/preloader';

// Header (above the fold)
@import './layout/header';

// Basic page structure
*, *::after, *::before {
	box-sizing: border-box;
}


html {
    background-color: #1d1d1d;
    color: #fff;
    cursor: none;
    font-size: .5208333333vw;
    line-height: 1;
    overflow: hidden;
    pointer-events: none;
    position: fixed
}
@media(max-width: 767px) {
    html {
        font-size:1.3333333333vw
    }
}

body {
    font-family: Poppins,sans-serif;
    position: fixed
}
