@import "layout.css";
@import "typography.css";
@import "colors.css";
@import "other.css";
@import "class.css";

*,
*::before,
*::after {
    /* 1. Сброс отступов */
    margin: 0;
    padding: 0;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    background-color: var(--bg);
    /* cursor: none !important; */
}

/* #magic-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 28px;
    height: 28px;
    background-color: var(--white);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
    
    transform: translate(-50%, -50%);
    
    mix-blend-mode: exclusion;
    
    transition: width 0.3s, height 0.3s, background-color 0.3s;
}

#magic-cursor.hovered {
    width: 42px;
    height: 42px;
    background-color: var(--white);
    opacity: 1;
} */

/* На мобильных возвращаем обычный курсор */
@media (max-width: 1024px) {
    #magic-cursor { display: none; }
    body, a, button { cursor: auto !important; }
}

a {
    text-decoration: none;
    color: inherit;
}

ul, ol {
    list-style: none;
}

