* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: normal;
    background: #0A0B0B;
    color: #F4FAF4;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 11, 11, 0.92);
    border-bottom: 1px solid rgba(177, 191, 198, 0.12);
    backdrop-filter: blur(0px);
    transition: background 220ms ease, backdrop-filter 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
    background: rgba(10, 11, 11, 0.62);
    border-bottom: 1px solid rgba(177, 191, 198, 0.18);
    backdrop-filter: blur(10px);
}

.header-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 18px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 14px;
    align-items: center;
}

.logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    display: block;
    height: 20px;
    width: auto;
}

.nav {
    justify-self: start;
}

.site-header nav ul {
    list-style: none;
    display: flex;
    gap: 18px;
    align-items: center;
}

.site-header nav ul li a {
    text-decoration: none;
    color: #B1BFC6;
    font-size: 14px;
    letter-spacing: 0.2px;
    padding: 10px 10px;
    border-radius: 12px;
    transition: background 160ms ease, color 160ms ease;
    font-weight: bold;
}

.site-header nav ul li a:hover {
    background: rgba(29, 30, 31, 0.9);
    color: #F4FAF4;
}

.header-actions {
    justify-self: end;
    display: grid;
    grid-auto-flow: column;
    align-items: center;
    gap: 10px;
}

.lang {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 12px;
    background: rgba(29, 30, 31, 0.75);
    border: 1px solid rgba(177, 191, 198, 0.12);
}

.lang a {
    text-decoration: none;
    color: #B1BFC6;
    font-size: 13px;
    transition: color 160ms ease;
}

.lang a:hover {
    color: #F4FAF4;
}

.lang .is-active {
    color: #F4FAF4;
}

.lang span {
    color: rgba(177, 191, 198, 0.55);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 14px;
    line-height: 1;
    border: 1px solid transparent;
    transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-ghost {
    color: #F4FAF4;
    background: rgba(29, 30, 31, 0.55);
    border-color: rgba(177, 191, 198, 0.14);
    font-weight: bold;
}

.btn-ghost:hover {
    background: rgba(57, 57, 60, 0.75);
    border-color: rgba(177, 191, 198, 0.22);
}

.btn-primary {
    color: #0A0B0B;
    background: #F5E502;
    border-color: rgba(245, 229, 2, 0.6);
    font-weight: bold;
}

.btn-primary:hover {
    border-color: rgba(245, 229, 2, 0.85);
}

.burger {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(177, 191, 198, 0.14);
    background: rgba(29, 30, 31, 0.75);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    padding: 0;
}

.burger span {
    display: block;
    width: 20px;
    height: 3px;
    background: #F4FAF4;
    border-radius: 10px;
    opacity: 0.95;
}

.mobile-menu {
    position: fixed;
    inset: 0;
    background: #000000;
    backdrop-filter: blur(10px);
    display: none;
    z-index: 9999;
}

.mobile-menu.is-open {
    display: block;
}

.mobile-panel {
    width: 100%;
    background: #000000;
    padding: 16px;
    display: grid;
    grid-template-rows: auto 1fr auto auto;
    gap: 14px;
}

.mobile-top {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 12px;
        padding-bottom: 10px;
    border-bottom: 1px solid rgba(177, 191, 198, 0.12);
}

.mobile-title {
    font-size: 16px;
    letter-spacing: 0.2px;
    color: #F4FAF4;
}

.mobile-close {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(177, 191, 198, 0.14);
    background: rgba(57, 57, 60, 0.28);
    cursor: pointer;
    position: relative;
}

.mobile-close span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 2px;
    background: #F4FAF4;
    border-radius: 10px;
    transform-origin: center;
}

.mobile-close span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-menu nav ul {
    list-style: none;
    display: grid;
    gap: 10px;
}

.mobile-menu nav ul li a {
    display: block;
    text-decoration: none;
    color: #F4FAF4;
    padding: 14px 14px;
    border-radius: 16px;
    background: rgba(29, 30, 31, 0.9);
    border: 1px solid rgba(177, 191, 198, 0.14);
    transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
    font-weight: bold;
}

.mobile-menu nav ul li a:hover {
    transform: translateY(-1px);
    background: rgba(57, 57, 60, 0.34);
    border-color: rgba(177, 191, 198, 0.22);
}

.mobile-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.mobile-lang {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(57, 57, 60, 0.18);
    border: 1px solid rgba(177, 191, 198, 0.12);
}

.mobile-lang a {
    text-decoration: none;
    color: #B1BFC6;
    font-size: 13px;
    transition: color 160ms ease;
}

.mobile-lang a:hover {
    color: #F4FAF4;
}

.mobile-lang .is-active {
    color: #F4FAF4;
}

.mobile-lang span {
    color: rgba(177, 191, 198, 0.55);
}

@media (max-width: 920px) {
    .nav {
        display: none;
    }

    .burger {
        display: inline-flex;
        width: 44px;
        height: 44px;
        border-radius: 14px;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 6px;
        padding: 0;
    }

    .burger span {
        width: 20px;
        height: 3px;
        border-radius: 10px;
        opacity: 0.95;
    }

    .btn {
        height: 44px;
        padding: 0 14px;
        border-radius: 14px;
        font-size: 14px;
    }

    .logo img {
        height: 20px;
    }
}

@media (max-width: 520px) {
    .header-grid {
        grid-template-columns: auto 1fr auto;
        padding: 10px 12px;
        gap: 10px;
        align-items: center;
    }

    .burger {
        display: inline-flex;
        width: 44px;
        height: 44px;
        border-radius: 14px;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 6px;
        padding: 0;
    }

    .burger span {
        width: 25px;
        height: 2px;
        border-radius: 10px;
        opacity: 0.95;
    }

    .nav {
        display: none;
    }

    .lang {
        display: none;
    }

    .header-actions .btn-primary {
        display: none;
    }

    .logo {
        justify-self: center;
        display: inline-flex;
        align-items: center;
    }

    .logo img {
        height: 24px;
    }

    .header-actions {
        justify-self: end;
        display: grid;
        grid-auto-flow: column;
        align-items: center;
        gap: 0;
    }

    .btn {
        height: 44px;
        padding: 0 16px;
        border-radius: 14px;
        font-size: 14px;
    }

    .header-actions .btn-ghost {
        background: #F5E502;
        color: #0A0B0B;
        border-color: rgba(245, 229, 2, 0.6);
    }

    .header-actions .btn-ghost:hover {
        background: #F5E502;
        border-color: rgba(245, 229, 2, 0.85);
    }
}

.markets {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 18px 6px;
}

.markets__wrap {
    position: relative;
}

.markets__track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 168px;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 6px;
    scroll-padding-left: 25px;
    scroll-padding-right: 25px;
    border-radius: 18px;
}

.markets__track::-webkit-scrollbar {
    height: 0;
}

.market-card {
    position: relative;
    display: grid;
    align-content: end;
    height: 150px;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: #F4FAF4;
    scroll-snap-align: start;
    background: #1D1E1F;
    border: 1px solid rgba(177, 191, 198, 0.14);
}

.market-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transform: scale(1.02);
}

.market-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 11, 11, 0.08), rgba(10, 11, 11, 0.72));
}

.market-card__title {
    position: relative;
    z-index: 1;
    padding: 10px 12px;
    font-size: 14px;
    letter-spacing: 0.2px;
    font-weight: 600;
}

.markets__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 14px;
    border: 1px solid rgba(177, 191, 198, 0.14);
    background: rgba(29, 30, 31, 0.85);
    color: #F4FAF4;
    cursor: pointer;
    display: grid;
    place-items: center;
    z-index: 2;
}

.markets__nav span {
    font-size: 22px;
    line-height: 1;
    transform: translateY(-1px);
}

.markets__nav--left {
    left: 0px;
}

.markets__nav--right {
    right: 0px;
}

.markets__edge {
    display: none;
}


@media (max-width: 520px) {
    .markets {
        padding: 14px 0px 4px;
    }

    .markets__track {
        grid-auto-columns: 148px;
        gap: 12px;
        padding: 6px;
    }
}

@media (max-width: 520px) {
    .markets__nav {
        display: none;
    }

    .markets__edge {
        display: none;
    }
}

.sport247 {
	max-width: 1200px;
	margin: 0 auto;
	padding: 10px 18px 12px;
}

.sport247__head {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
}

.sport247__heading {
	font-size: 22px;
	font-weight: 800;
	letter-spacing: 0.2px;
	color: #F4FAF4;
}

.sport247__all {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px 14px;
	border-radius: 14px;
	text-decoration: none;
	color: #F4FAF4;
	border: 1px solid rgba(177, 191, 198, 0.16);
	background: rgba(29, 30, 31, 0.45);
	transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
	white-space: nowrap;
}

.sport247__all:hover {
	transform: translateY(-1px);
	background: rgba(57, 57, 60, 0.35);
	border-color: rgba(177, 191, 198, 0.24);
}

.sport247__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
}

.sport247__card {
	position: relative;
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 12px;
	min-height: 78px;
	padding: 16px 16px;
	border-radius: 18px;
	text-decoration: none;
	color: #F4FAF4;
	background: rgba(29, 30, 31, 0.7);
	border: 1px solid rgba(177, 191, 198, 0.14);
	overflow: hidden;
	transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.sport247__card:hover {
	transform: translateY(-1px);
	border-color: rgba(245, 229, 2, 0.22);
	background: rgba(29, 30, 31, 0.86);
}

.sport247__card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(120% 90% at 85% 50%, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0));
	opacity: 1;
	pointer-events: none;
}

.sport247__meta {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 6px;
}

.sport247__title {
	font-size: 16px;
	font-weight: 800;
	letter-spacing: 0.2px;
}

.sport247__sub {
	font-size: 13px;
	color: rgba(177, 191, 198, 0.85);
	font-weight: 700;
}

.sport247__right {
	position: relative;
	z-index: 1;
	display: grid;
	justify-items: end;
	gap: 10px;
}

.sport247__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 3px 8px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 0.4px;
	color: #0A0B0B;
	background: #F5E502;
}

.sport247__icon {
	width: 44px;
	height: 44px;
	border-radius: 14px;
	display: grid;
	place-items: center;
}

.sport247__card--yellow .sport247__icon {
	color: #F5E502;
}

.sport247__card--red .sport247__icon {
	color: #FF2E55;
}

.sport247__card--green .sport247__icon {
	color: #22D15F;
}

@media (max-width: 920px) {
	.sport247__grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 520px) {
	.sport247 {
		padding: 10px 12px 10px;
	}

	.sport247__heading {
		font-size: 18px;
	}

	.sport247__all {
		padding: 9px 12px;
		border-radius: 12px;
		font-size: 13px;
	}

	.sport247__card {
		border-radius: 16px;
		padding: 14px 14px;
	}

	.sport247__title {
		font-size: 15px;
	}
}

.extra-menu {
	max-width: 1200px;
	margin: 0 auto;
	padding: 18px 18px 6px;
	width: 100%;
}

.extra-menu__track {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(7, minmax(0, 1fr));
	gap: 28px;
	align-items: center;
	overflow: hidden;
	padding: 10px 0;
}

.extra-menu__item {
	text-decoration: none;
	color: rgba(244, 250, 244, 0.9);
	display: grid;
	justify-items: center;
	gap: 10px;
	padding: 12px 14px;
	border-radius: 16px;
	transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
	width: 100%;
}

.extra-menu__item:hover {
	transform: translateY(-1px);
}

.extra-menu__ico {
	width: 26px;
	height: 26px;
	display: grid;
	place-items: center;
	opacity: 0.7;
	transition: opacity 160ms ease, transform 160ms ease;
}

.extra-menu__ico img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.extra-menu__txt {
	font-size: 16px;
	font-weight: 800;
	letter-spacing: 0.2px;
	white-space: nowrap;
	color: rgba(244, 250, 244, 0.88);
}

.extra-menu__item.is-active {
	background: rgba(57, 57, 60, 0.55);
	border: 1px solid rgba(177, 191, 198, 0.12);
}

.extra-menu__item.is-active .extra-menu__ico {
	opacity: 1;
}

@media (max-width: 920px) {
	.extra-menu__track {
		display: grid;
		grid-auto-flow: column;
		grid-auto-columns: minmax(110px, max-content);
		grid-template-columns: none;
		gap: 18px;
		overflow-x: auto;
		overflow-y: hidden;
		-webkit-overflow-scrolling: touch;
		scroll-snap-type: x mandatory;
		touch-action: pan-x;
	}

	.extra-menu__track::-webkit-scrollbar {
		height: 0;
	}

	.extra-menu__item {
		scroll-snap-align: start;
		width: auto;
	}
}

@media (max-width: 520px) {
	.extra-menu {
		padding: 14px 12px 4px;
	}

	.extra-menu__txt {
		font-size: 14px;
	}
}

.content {
	max-width: 1200px;
	margin: 18px auto 32px;
	padding: 22px 22px 26px;
	border-radius: 24px;
	background: linear-gradient(180deg, rgba(29, 30, 31, 0.62), rgba(10, 11, 11, 0.25));
	border: 1px solid rgba(177, 191, 198, 0.12);
	box-shadow: 0 18px 55px rgba(0, 0, 0, 0.55);
}

.content > *:last-child {
	margin-bottom: 0;
}

.content h1 {
	font-size: 34px;
	line-height: 1.08;
	font-weight: 900;
	letter-spacing: 0.2px;
	color: #F4FAF4;
	margin: 6px 0 14px;
}

.content h2 {
	font-size: 22px;
	line-height: 1.2;
	font-weight: 900;
	letter-spacing: 0.2px;
	color: #F4FAF4;
	margin: 18px 0 10px;
}

.content h3 {
	font-size: 18px;
	line-height: 1.25;
	font-weight: 900;
	letter-spacing: 0.2px;
	color: #F4FAF4;
	margin: 16px 0 8px;
}

.content p {
	font-size: 16px;
	line-height: 1.7;
	color: rgba(244, 250, 244, 0.9);
	margin: 0 0 12px;
}

.content img {
	max-width: 100%;
    margin: 10px auto 10px;
	height: auto;
	display: block;
	border-radius: 18px;
	border: 1px solid rgba(177, 191, 198, 0.14);
	background: rgba(29, 30, 31, 0.65);
	box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
}

.content blockquote {
	margin: 16px 0 18px;
	padding: 14px 16px;
	border-radius: 16px;
	background: rgba(29, 30, 31, 0.70);
	border: 1px solid rgba(177, 191, 198, 0.14);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
	color: rgba(244, 250, 244, 0.92);
	font-weight: 700;
	line-height: 1.6;
}

.content ul,
.content ol {
	margin: 10px 0 16px;
	padding-left: 18px;
	color: rgba(244, 250, 244, 0.9);
}

.content li {
	margin: 0 0 8px;
	line-height: 1.6;
}

.content ul li::marker,
.content ol li::marker {
	color: rgba(245, 229, 2, 0.85);
	font-weight: 900;
}

.content table {
    max-width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 18px;
    background: rgba(29, 30, 31, 0.62);
    border: 1px solid rgba(177, 191, 198, 0.14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    margin: 14px 0 14px;
    display: block;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
}

.content table::-webkit-scrollbar {
    height: 10px;
}

.content table::-webkit-scrollbar-track {
    background: rgba(29, 30, 31, 0.35);
    border-radius: 999px;
}

.content table::-webkit-scrollbar-thumb {
    background: rgba(177, 191, 198, 0.22);
    border-radius: 999px;
}

.content thead th {
    background: rgba(29, 30, 31, 0.92);
    color: #F4FAF4;
    font-weight: 900;
    font-size: 14px;
    text-align: left;
    padding: 14px 14px;
    border-bottom: 1px solid rgba(177, 191, 198, 0.14);
    white-space: nowrap;
    min-width: 140px;
}

.content thead th:first-child {
    border-top-left-radius: 18px;
}

.content thead th:last-child {
    border-top-right-radius: 18px;
}

.content tbody td {
    padding: 14px 14px;
    color: rgba(244, 250, 244, 0.9);
    border-bottom: 1px solid rgba(177, 191, 198, 0.10);
    background: rgba(10, 11, 11, 0.10);
    white-space: nowrap;
    min-width: 140px;
}

.content tbody tr:nth-child(odd) td {
    background: rgba(10, 11, 11, 0.18);
}

.content tbody tr:hover td {
    background: rgba(57, 57, 60, 0.22);
}

.content tbody tr:last-child td {
    border-bottom: 0;
}

.content tbody tr:last-child td:first-child {
    border-bottom-left-radius: 18px;
}

.content tbody tr:last-child td:last-child {
    border-bottom-right-radius: 18px;
}

@media (max-width: 520px) {
	.content {
		margin: 14px auto 22px;
		padding: 16px 12px 18px;
		border-radius: 20px;
	}

	.content h1 {
		font-size: 26px;
	}

	.content p {
		font-size: 15px;
	}

	.content th,
	.content td {
		min-width: 140px;
	}
}

@media (min-width: 521px) {
    .content table {
        width: 100%;
        display: table;
        overflow: visible;
        table-layout: fixed;
    }

    .content thead th,
    .content tbody td {
        white-space: normal;
        min-width: 0;
    }
}

@media (max-width: 520px) {
    .content table {
        width: 100%;
        display: block;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: contain;
        table-layout: auto;
    }

    .content thead th,
    .content tbody td {
        white-space: nowrap;
        min-width: 140px;
    }
}

.site-footer {
    background: radial-gradient(1200px 420px at 50% 0%, rgba(245, 229, 2, 0.06), rgba(10, 11, 11, 0) 55%), #0A0B0B;
    border-top: 1px solid rgba(177, 191, 198, 0.12);
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 28px 18px 18px;
    display: grid;
    grid-template-columns: 1.35fr 0.9fr 0.9fr 1fr;
    gap: 28px;
    align-items: start;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    margin-bottom: 14px;
}

.footer-logo img {
    display: block;
    height: 44px;
    width: auto;
}

.footer-brand p {
    color: #B1BFC6;
    font-size: 14px;
    line-height: 1.75;
    letter-spacing: 0.1px;
}

.footer-title {
    display: block;
    margin-bottom: 12px;
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(177, 191, 198, 0.92);
    font-weight: 800;
}

.site-footer ul {
    list-style: none;
    display: grid;
    gap: 10px;
}

.site-footer ul li a {
    text-decoration: none;
    color: #F4FAF4;
    font-size: 14px;
    letter-spacing: 0.15px;
    opacity: 0.92;
    transition: opacity 160ms ease, color 160ms ease, transform 160ms ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.site-footer ul li a:hover {
    opacity: 1;
    color: #F5E502;
    transform: translateY(-1px);
}

.footer-note {
    color: rgba(177, 191, 198, 0.78);
    font-size: 14px;
    line-height: 1.55;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 18px 18px;
    border-top: 1px solid rgba(177, 191, 198, 0.10);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    align-items: center;
}

.footer-disclaimer {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: center;
}

.footer-age {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    font-weight: 900;
    letter-spacing: 0.2px;
    background: rgba(245, 229, 2, 0.10);
    border: 1px solid rgba(245, 229, 2, 0.22);
    color: #F5E502;
}

.footer-disclaimer p {
    color: rgba(177, 191, 198, 0.90);
    font-size: 13px;
    line-height: 1.6;
}

.footer-copy {
    color: rgba(177, 191, 198, 0.70);
    font-size: 13px;
    white-space: nowrap;
}

@media (max-width: 920px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 720px) {
    .footer-grid {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .footer-brand p {
        max-width: 620px;
    }

    .site-footer ul {
        justify-items: center;
    }

    .footer-bottom {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .footer-disclaimer {
        grid-template-columns: 1fr;
        justify-items: center;
    }
}

@media (max-width: 520px) {
    .footer-grid {
        padding: 22px 12px 14px;
        gap: 20px;
    }

    .footer-bottom {
        padding: 14px 12px 16px;
    }

    .footer-logo img {
        height: 40px;
    }
}

.nav > ul > li:first-child,
.nav > ul > li:nth-last-child(-n+2) {
  display: none !important;
}

/* Мобайл: скрыть 1-й и последние 2 пункта */
nav[aria-label="Навигация (моб.)"] > ul > li:first-child,
nav[aria-label="Навигация (моб.)"] > ul > li:nth-last-child(-n+2) {
  display: none !important;
}