/* ===== Manrope (вариативный, вес 200–800) ===== */
@font-face {
    font-family: 'Manrope';
    src: url('/assets/fonts/Manrope/Manrope.ttf') format('truetype');
    font-weight: 200 800;
    font-style: normal;
    font-display: swap;
}

/* ===== Inter (вариативный, вес 100–900) ===== */
@font-face {
    font-family: 'Inter';
    src: url('/assets/fonts/Inter/Inter-V.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

/* Утилита: явно применить Manrope к блоку */
.font-manrope {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Утилита: явно применить Inter к блоку */
.font-inter {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Обнуляющие стили */
*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
}

html {
    -webkit-text-size-adjust: 100%;
}

body {
    background: #0F1316 !important;
    min-height: 100dvh;
    line-height: 1.5;
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

input,
button,
textarea,
select {
    border: none;
    outline: none;
    font: inherit;
    color: inherit;
}

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

ul,
ol {
    list-style: none;
}

button {
    cursor: pointer;
    background: none;
    border: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

h1, h2, h3, h4, h5, h6, p, label {
    margin: 0;
    padding: 0;
}

.container {
    /*margin: 0 auto;*/
    padding: 0 20px;
    max-width: 1135px;
}

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

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #2A2F35;
    border-radius: 8px;
}

::-webkit-scrollbar-thumb:hover {
    background: #3AB44E;
}

::-webkit-scrollbar-corner {
    background: transparent;
}

/* Firefox */
html {
    scrollbar-width: thin;
    scrollbar-color: #2A2F35 transparent;
}

h2 {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 15px;
    font-weight: 400;
    line-height: 1;
    color: #FFFFFF;
}

@media screen and (min-width: 1440px) {
    .container {
        margin: 0 auto;
    }
}
