* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Roboto", sans-serif;
	font-optical-sizing: auto;
	font-weight: 500;
	background-color: #151525;
	color: #f3f5f8;
}

.site-header {
	background-color: #1f2133;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.6);
	position: sticky;
	top: 0;
	z-index: 100;
}

.header-inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 12px 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.header-logo {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	color: #ffffff;
}

.header-logo img {
	height: 45px;
	width: auto;
	display: block;
    margin-top: 1px;
}

.header-logo__text {
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0.03em;
	text-transform: lowercase;
}

.header-nav ul {
	list-style: none;
	display: flex;
	align-items: center;
	gap: 24px;
}

.header-nav ul li {
	position: relative;
}

.header-nav ul li a {
	text-decoration: none;
	font-size: 14px;
	color: #e6dfef;
	padding: 6px 0;
	transition: color 0.2s ease, transform 0.2s ease;
}

.header-nav ul li a:hover {
	color: #f21fa4;
	transform: translateY(-1px);
}

.header-nav ul li a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -4px;
	width: 0;
	height: 2px;
	border-radius: 999px;
	background: linear-gradient(90deg, #5d57fb, #f21fa4);
	transition: width 0.2s ease;
}

.header-nav ul li a:hover::after {
	width: 100%;
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 10px;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 9px 18px;
	font-size: 14px;
	line-height: 1;
	border-radius: 999px;
	border: none;
	cursor: pointer;
	text-decoration: none;
	white-space: nowrap;
	transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.btn-primary {
	background: linear-gradient(90deg, #5d57fb, #f21fa4);
	color: #ffffff;
	box-shadow: 0 0 14px rgba(242, 31, 164, 0.45);
}

.btn-primary:hover {
	transform: translateY(-1px);
	box-shadow: 0 0 20px rgba(242, 31, 164, 0.7);
}

.btn-secondary {
	background-color: #2b2d47;
	color: #f3f5f8;
	border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
	background-color: #383b5b;
}

.header-burger {
	display: none;
	width: 40px;
	height: 40px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	background-color: #25263a;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 5px;
	padding: 0;
	cursor: pointer;
}

.header-burger span {
	display: block;
	width: 18px;
	height: 2px;
	border-radius: 999px;
	background-color: #f3f5f8;
	transition: transform 0.2s ease, opacity 0.2s ease;
	transform-origin: center;
}

.header-mobile-actions {
	display: none;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 16px 10px;
	gap: 8px;
}

.header-mobile-actions .btn {
	flex: 1 1 50%;
}

.header-nav-mobile {
	display: none;
	max-width: 1280px;
	margin: 0 auto;
	padding: 16px 16px 16px;
}

.header-nav-mobile ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 8px;
    text-align: center;
}

.header-nav-mobile ul li a {
	display: block;
	padding: 8px 0;
	font-size: 15px;
	text-decoration: none;
	color: #f3f5f8;
	transition: color 0.15s ease;
}

.header-nav-mobile ul li a:hover {
	color: #f21fa4;
}

.site-header.is-open .header-burger span:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
}

.site-header.is-open .header-burger span:nth-child(2) {
	opacity: 0;
}

.site-header.is-open .header-burger span:nth-child(3) {
	transform: translateY(-6px) rotate(-45deg);
}

.site-header.is-open .header-nav-mobile {
	display: block;
}

.site-header.is-open .header-mobile-actions {
	display: flex;
}

@media (max-width: 960px) {
	.header-inner {
		padding: 10px 16px;
	}

	.header-nav {
		display: none;
	}

	.header-actions {
		display: none;
	}

	.header-burger {
		display: inline-flex;
	}

	.header-inner {
		justify-content: center;
		position: relative;
	}

	.header-burger {
		position: absolute;
		left: 16px;
	}

	.header-logo {
		margin: 0 auto;
	}

	.header-mobile-actions {
		display: flex;
	}

    .header-logo img {
        height: 55px;
        margin-left: 40px;
        margin-bottom: 1px;
    }
}

.hero-slider {
	max-width: 1280px;
	margin: 24px auto 0;
	padding: 0 24px 0px;
}

.hero-slider__viewport {
	position: relative;
	overflow: hidden;
	border-radius: 24px;
	background-color: #181828;
}

.hero-slider__track {
	display: flex;
	width: 100%;
	transition: transform 0.35s ease;
	touch-action: pan-y;
}

.hero-slide {
	position: relative;
	flex: 0 0 100%;
	min-height: 380px;
	display: flex;
	align-items: stretch;
	justify-content: flex-start;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.hero-slide::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, rgba(5, 5, 22, 0.95), rgba(24, 20, 58, 0.8), rgba(34, 37, 72, 0.3));
}

.hero-slide__content {
	position: relative;
	z-index: 1;
	padding: 32px 40px;
	max-width: 560px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	align-items: flex-start;
	justify-content: center;
	color: #f3f5f8;
}

.hero-slide__label {
	display: inline-flex;
	font-size: 18px;
	font-weight: 600;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	color: #ffffff;
	padding: 6px 14px;
	border-radius: 999px;
	background: linear-gradient(90deg, rgba(93, 87, 251, 0.18), rgba(242, 31, 164, 0.32));
	border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-slide__text {
	font-size: 15px;
	line-height: 1.6;
	color: #d7d9e8;
	max-width: 520px;
}

.hero-slide__btn {
	margin-top: 4px;
}

.hero-slide--1 {
	background-image: url("/assets/img/slide-1.png");
}

.hero-slide--2 {
	background-image: url("/assets/img/slide-2.png");
}

.hero-slide--3 {
	background-image: url("/assets/img/slide-3.png");
}

.hero-slider__dots {
	margin-top: 14px;
	display: flex;
	justify-content: center;
	gap: 8px;
}

.hero-slider__dot {
	width: 9px;
	height: 9px;
	border-radius: 999px;
	border: none;
	padding: 0;
	cursor: pointer;
	background-color: rgba(255, 255, 255, 0.3);
	transition: background-color 0.2s ease, transform 0.2s ease, width 0.2s ease;
}

.hero-slider__dot.is-active {
	width: 20px;
	background: linear-gradient(90deg, #5d57fb, #f21fa4);
	transform: translateY(-1px);
}

@media (max-width: 960px) {
	.hero-slider {
		padding: 0 16px 0px;
		margin-top: 16px;
	}

	.hero-slider__viewport {
		border-radius: 20px;
	}

	.hero-slide {
		min-height: 260px;
	}

	.hero-slide__content {
		padding: 20px 18px 22px;
		max-width: 100%;
	}

	.hero-slide__label {
		font-size: 14px;
		padding: 5px 12px;
	}

	.hero-slide__text {
		font-size: 14px;
		line-height: 1.5;
		max-width: 100%;
	}
}

@media (max-width: 600px) {
	.hero-slide {
		min-height: 240px;
	}

	.hero-slide__content {
		padding: 18px 16px 20px;
		gap: 12px;
	}

	.hero-slide__btn {
		width: auto;
	}
}

.top-games {
	max-width: 1280px;
	margin: 0px auto 0;
	padding: 0 24px 0px;
}

.top-games__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 14px;
}

.top-games__title {
	font-size: 16px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #f3f5f8;
	padding: 6px 14px;
	border-radius: 999px;
	background: linear-gradient(90deg, rgba(93, 87, 251, 0.18), rgba(242, 31, 164, 0.28));
	border: 1px solid rgba(255, 255, 255, 0.14);
}

.top-games__all-link {
	font-size: 13px;
	text-decoration: none;
	color: #b8c0ca;
	text-transform: uppercase;
	letter-spacing: 0.16em;
	transition: color 0.15s ease, transform 0.15s ease;
}

.top-games__all-link:hover {
	color: #f21fa4;
	transform: translateY(-1px);
}

.top-games__track-wrapper {
	margin-top: 6px;
	padding: 14px 6px 10px;
	border-radius: 24px;
	background: radial-gradient(circle at top left, rgba(111, 94, 248, 0.23), transparent 55%), radial-gradient(circle at bottom right, rgba(217, 44, 106, 0.18), transparent 55%), #181828;
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.65);
	overflow-x: auto;
	overflow-y: visible;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: thin;
	scrollbar-color: #5d57fb #151525;
}

.top-games__track-wrapper::-webkit-scrollbar {
	height: 6px;
}

.top-games__track-wrapper::-webkit-scrollbar-track {
	background-color: #151525;
	border-radius: 999px;
}

.top-games__track-wrapper::-webkit-scrollbar-thumb {
	background-image: linear-gradient(90deg, #5d57fb, #f21fa4);
	border-radius: 999px;
}

.top-games__track-wrapper::-webkit-scrollbar-thumb:hover {
	background-image: linear-gradient(90deg, #6f63ff, #ff2ab8);
}

.top-games__track {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: minmax(120px, 120px);
	grid-template-rows: repeat(2, auto);
	column-gap: 12px;
	row-gap: 12px;
	padding: 4px 16px 4px 4px;
	min-height: 220px;
}

.game-card {
	display: flex;
    width: 120px;
    height: auto;
	flex-direction: column;
	gap: 8px;
	color: #f3f5f8;
}

.game-card__thumb {
	position: relative;
	border-radius: 18px;
	overflow: hidden;
	background-color: #232334;
}

.game-card__thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.game-card__overlay {
	position: absolute;
	inset: 0;
	display: flex;
    width: 120px;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background: radial-gradient(circle at center, rgba(12, 12, 28, 0.1), rgba(5, 5, 18, 0.9));
	backdrop-filter: blur(8px);
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
	border-radius: 18px;
}

.game-card__btn {
	font-size: 13px;
	padding: 8px 9px;
}

.game-card__meta {
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding: 2px 2px 0;
}

.game-card__name {
	font-size: 14px;
	font-weight: 600;
	color: #f3f5f8;
}

.game-card__provider {
	font-size: 12px;
	color: #b8c0ca;
}

.game-card__actions-mobile {
	display: none;
	margin-top: 4px;
	gap: 6px;
}

.game-card__actions-mobile .game-card__btn {
	flex: 1 1 50%;
	justify-content: center;
}

.game-card:hover .game-card__overlay {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

@media (max-width: 960px) {
	.top-games {
		padding: 0 16px 0px;
		margin-top: 24px;
	}

	.top-games__track-wrapper {
		padding: 12px 4px 12px;
		border-radius: 20px;
	}

	.top-games__track {
		grid-auto-columns: minmax(120px, 70vw);
		column-gap: 10px;
		row-gap: 10px;
		min-height: 210px;
	}

	.game-card__overlay {
		display: none;
	}

	.game-card__actions-mobile {
		display: flex;
	}
}

@media (max-width: 600px) {
	.top-games {
		padding: 0 14px 0px;
	}

	.top-games__title {
		font-size: 14px;
		padding: 5px 12px;
	}

	.top-games__all-link {
		font-size: 11px;
	}

	.top-games__track {
		grid-auto-columns: minmax(120px, 78vw);
	}
}

.promo-tournament {
	max-width: 1280px;
	margin: 32px auto 0;
	padding: 0 24px 32px;
}

.promo-tournament__card {
	border-radius: 24px 24px 0 0;
	background: linear-gradient(90deg, #5d57fb, #f21fa4);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
	overflow: hidden;
}

.promo-tournament__main {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 0px 28px;
}

.promo-tournament__col--timer {
	justify-content: flex-start;
}

.promo-tournament__timer {
	display: flex;
	align-items: flex-end;
	gap: 10px;
}

.pt-timer-col {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.pt-timer-value {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	min-width: 42px;
	padding: 4px 10px;
	border-radius: 999px;
	font-size: 16px;
	font-weight: 700;
	background-color: rgba(5, 6, 22, 0.28);
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
	color: #ffffff;
}

.pt-timer-label {
	margin-top: 4px;
	font-size: 11px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.9);
}

.promo-tournament__amount {
	display: flex;
	align-items: baseline;
	gap: 4px;
}

.pt-currency {
	font-size: 26px;
	font-weight: 700;
}

.pt-sum {
	font-size: 36px;
	font-weight: 800;
}

.promo-tournament__mode {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 180px;
}

.pt-mode-title {
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0.03em;
}

.pt-mode-sub {
	font-size: 14px;
	opacity: 0.92;
}

.pt-timer-row {
	display: flex;
	gap: 10px;
}

.pt-timer-row--labels span,
.pt-timer-row--values span {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 42px;
	text-align: center;
}

.pt-timer-row--labels span {
	font-size: 11px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.9);
}

.pt-timer-row--values span {
	font-size: 16px;
	font-weight: 700;
	padding: 4px 0;
	border-radius: 999px;
	background-color: rgba(5, 6, 22, 0.28);
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.promo-tournament__image {
	flex: 0 0 170px;
	display: flex;
	justify-content: flex-end;
}

.promo-tournament__image img {
	display: block;
	max-height: 120px;
	width: auto;
	object-fit: contain;
}

.promo-tournament__bottom {
	border-radius: 0 0 24px 24px;
	background-color: #1f2133;
	padding: 10px 24px 12px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	color: #f3f5f8;
	font-size: 14px;
}

.promo-tournament__stat {
	display: flex;
	align-items: baseline;
	gap: 6px;
}

.pt-stat-label {
	color: #b8c0ca;
}

.pt-stat-value {
	font-weight: 600;
	color: #ffffff;
}

@media (max-width: 960px) {
	.promo-tournament {
		padding: 0 16px 24px;
	}

	.promo-tournament__main {
		padding: 16px 16px 14px;
		gap: 12px;
	}

	.promo-tournament__main {
		display: grid;
		grid-template-columns: 1fr auto;
		grid-template-rows: auto auto;
		grid-template-areas:
			"mode image"
			"timer image"
			"amount image";
	}

	.promo-tournament__col--mode {
		grid-area: mode;
		text-align: left;
		justify-content: flex-start;
	}

	.promo-tournament__col--timer {
		grid-area: timer;
	}

	.promo-tournament__col--amount {
		grid-area: amount;
		justify-content: flex-start;
	}

	.promo-tournament__image {
		grid-area: image;
		align-items: center;
	}

	.promo-tournament__image img {
		max-height: 140px;
	}

	.promo-tournament__bottom {
		padding: 8px 16px 10px;
		font-size: 13px;
        flex-direction: row;
	}
}

@media (max-width: 600px) {
	.promo-tournament__main {
		grid-template-columns: 1fr auto;
		grid-template-rows: auto auto auto;
	}

	.pt-mode-title {
		font-size: 18px;
	}

	.pt-sum {
		font-size: 30px;
	}

	.promo-tournament__bottom {
		flex-direction: row;
		align-items: flex-start;
		gap: 6px;
	}
}

.page-main {
	position: relative;
	max-width: 1280px;
	margin: 0px auto 0px;
	padding: 28px 28px 40px;
	border-radius: 28px;
	background:
		radial-gradient(circle at top left, rgba(93, 87, 251, 0.22), transparent 58%),
		radial-gradient(circle at bottom right, rgba(242, 31, 164, 0.18), transparent 55%),
		#181828;
	box-shadow: 0 22px 60px rgba(0, 0, 0, 0.85);
	overflow: hidden;
}

.page-main::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	border: 1px solid rgba(255, 255, 255, 0.05);
	pointer-events: none;
}

.page-main h1 {
	font-size: 30px;
	line-height: 1.2;
	margin-bottom: 16px;
	font-weight: 800;
	letter-spacing: 0.02em;
	background: linear-gradient(90deg, #ffffff, #ffd6ff);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.page-main h2 {
	font-size: 24px;
	line-height: 1.3;
	margin: 28px 0 12px;
	font-weight: 700;
	color: #f3f5f8;
}

.page-main h3 {
	font-size: 20px;
	line-height: 1.3;
	margin: 22px 0 10px;
	font-weight: 700;
	color: #f3f5f8;
}

.page-main p {
	font-size: 15px;
	line-height: 1.7;
	color: #d3d7e6;
	margin-bottom: 12px;
}

.page-main img {
	display: block;
	max-width: 100%;
	height: auto;
	margin: 16px auto 18px;
	border-radius: 18px;
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
	border: 1px solid rgba(255, 255, 255, 0.08);
	object-fit: cover;
}

.page-main ul,
.page-main ol {
	margin: 0 0 16px 18px;
	padding-left: 8px;
	color: #d3d7e6;
}

.page-main ul li,
.page-main ol li {
	margin-bottom: 6px;
	line-height: 1.6;
}

.page-main ul li::marker {
	color: #f21fa4;
}

.page-main ol li::marker {
	color: #5d57fb;
	font-weight: 700;
}

.page-main > div {
	margin: 18px 0 20px;
	padding: 10px 10px 12px;
	border-radius: 18px;
	background-color: #151525;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: thin;
	scrollbar-color: #5d57fb #0f111e;
}

.page-main > div::-webkit-scrollbar {
	height: 6px;
}

.page-main > div::-webkit-scrollbar-track {
	background-color: #0f111e;
	border-radius: 999px;
}

.page-main > div::-webkit-scrollbar-thumb {
	background-image: linear-gradient(90deg, #5d57fb, #f21fa4);
	border-radius: 999px;
}

.page-main table {
	width: 100%;
	min-width: 640px;
	border-collapse: collapse;
	font-size: 14px;
	color: #e5e8f5;
}

.page-main thead {
	background: linear-gradient(90deg, rgba(93, 87, 251, 0.3), rgba(242, 31, 164, 0.3));
}

.page-main thead th {
	text-align: left;
	padding: 10px 12px;
	font-weight: 600;
	white-space: nowrap;
}

.page-main tbody tr:nth-child(even) {
	background-color: #1a1b2b;
}

.page-main tbody tr:nth-child(odd) {
	background-color: #141624;
}

.page-main tbody td {
	padding: 9px 12px;
	border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.page-main tbody tr:hover {
	background-color: #23253a;
}

@media (max-width: 960px) {
	.page-main {
		margin: 24px auto 48px;
		padding: 22px 18px 30px;
		border-radius: 22px;
	}

	.page-main h1 {
		font-size: 24px;
	}

	.page-main h2 {
		font-size: 20px;
	}

	.page-main p {
		max-width: 100%;
	}
}

@media (max-width: 600px) {
	.page-main {
		margin: 20px 12px 40px;
		padding: 18px 14px 24px;
		border-radius: 18px;
	}

	.page-main h1 {
		font-size: 22px;
		margin-bottom: 12px;
	}

	.page-main img {
		margin: 14px 0 16px;
		border-radius: 14px;
	}

	.page-main > div {
		margin: 14px 0 16px;
	}
}

.site-footer {
	background-color: #0f111e;
	position: relative;
	margin: 40px auto 0;
	padding: 28px 24px 22px;
	box-shadow: 0 -12px 30px rgba(0, 0, 0, 0.7);
	overflow: hidden;
}

.site-footer__inner {
	max-width: 1280px;
	margin: 0 auto;
}

.site-footer__top {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 40px;
	padding-bottom: 18px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer__brand {
	max-width: 360px;
}

.site-footer__logo {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
	text-decoration: none;
	color: #ffffff;
}

.site-footer__logo img {
	width: 80px;
	height: auto;
	display: block;
}

.site-footer__logo-text {
	font-size: 20px;
	font-weight: 800;
	text-transform: lowercase;
	letter-spacing: 0.08em;
}

.site-footer__desc {
	font-size: 13px;
	line-height: 1.7;
	color: #b8c0ca;
}

.site-footer__nav {
	display: flex;
	flex: 1 1 auto;
	justify-content: flex-end;
	gap: 40px;
}

.site-footer__col {
	min-width: 140px;
}

.site-footer__col-title {
	display: block;
	margin-bottom: 8px;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #f3f5f8;
}

.site-footer__col ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-footer__col li + li {
	margin-top: 6px;
}

.site-footer__col a {
	font-size: 13px;
	color: #b8c0ca;
	text-decoration: none;
	transition: color 0.15s ease, transform 0.15s ease;
}

.site-footer__col a:hover {
	color: #f21fa4;
	transform: translateX(2px);
}

.site-footer__bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 24px;
	padding-top: 14px;
}

.site-footer__legal {
	flex: 1 1 auto;
	font-size: 11px;
	line-height: 1.6;
	color: #8f96a6;
	max-width: 720px;
}

.site-footer__meta {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	font-size: 12px;
	color: #7f8697;
	white-space: nowrap;
}

.site-footer__link {
	color: #b8c0ca;
	text-decoration: none;
	transition: color 0.15s ease;
}

.site-footer__link:hover {
	color: #f21fa4;
}

@media (max-width: 960px) {
	.site-footer {
		margin: 32px auto 0;
		padding: 24px 18px 18px;
		border-radius: 20px 20px 0 0;
	}

	.site-footer__top {
		flex-direction: column;
		gap: 24px;
	}

	.site-footer__nav {
		justify-content: flex-start;
		gap: 24px;
		flex-wrap: wrap;
	}

	.site-footer__col {
		min-width: 150px;
	}
}

@media (max-width: 640px) {
	.site-footer {
		margin: 28px 12px 0;
		padding: 22px 14px 16px;
		border-radius: 18px 18px 0 0;
	}

	.site-footer__brand {
		max-width: 100%;
	}

	.site-footer__bottom {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}

	.site-footer__meta {
		flex-wrap: wrap;
		white-space: normal;
	}

	.site-footer__nav {
		gap: 18px 24px;
	}

	.site-footer__col {
		min-width: 130px;
	}
}


