:root {
	--bg: #0c0c0d;
	--bg-light: #1A1A1C;
	--accent: #FF7A00;
	--accent-light: #FF9A3E;
	--text: #FFFFFF;
	--muted: #9A9A9A;
}

/* Плавный скролл */
html {
	scroll-behavior: smooth;
}

/* Обнуление */
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
button,
input,
span,
div {
	font-family: "Poppins", sans-serif !important;
}

/* Базовые стили */
body {
	background: var(--bg);
	color: var(--text);
}

/* Чтобы ссылки не были синими */
a {
	color: inherit;
	text-decoration: none;
}

/* Сглаживание */
body {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}