* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Montserrat", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	background-color: #2A3D89;
}

/* ===========================
   HEADER
   =========================== */

.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: #1A1E40;
	transition: background .25s ease, box-shadow .25s ease, transform .25s ease;
}

.site-header.is-scrolled {
	background: rgba(26, 30, 64, 0.72);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	box-shadow: 0 10px 30px rgba(0,0,0,.22);
}

.site-header__inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 14px 16px;
	display: grid;
	align-items: center;
	gap: 12px;
	grid-template-columns: auto 1fr auto;
}

/* Logo */
.site-header__logo {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
}

.site-header__logo img {
	width: 120px;
	height: auto;
	display: block;
    margin-bottom: 5px;
}

/* Burger (hidden on desktop) */
.site-header__burger {
	display: none;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	border: 1px solid rgba(248, 247, 247, 0.14);
	background: rgba(42, 61, 137, 0.35);
	color: #F8F7F7;
	cursor: pointer;
}

.site-header__burger:active {
	transform: translateY(1px);
}

/* Navigation: UL/LI без классов */
.site-header__nav ul {
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
}

.site-header__nav a {
	display: inline-flex;
	align-items: center;
	padding: 10px 12px;
	border-radius: 12px;
	text-decoration: none;
	color: rgba(248, 247, 247, 0.92);
	font-weight: 600;
	letter-spacing: 0.2px;
	transition: background .2s ease, color .2s ease, transform .2s ease;
}

.site-header__nav a:hover {
	background: rgba(42, 61, 137, 0.55);
	color: #F8F7F7;
}

.site-header__nav a:active {
	transform: translateY(1px);
}

/* Auth */
.site-header__auth {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 44px;
	padding: 0 14px;
	border-radius: 14px;
	font-weight: 700;
	text-decoration: none;
	border: 1px solid transparent;
	transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
	user-select: none;
	white-space: nowrap;
}

.btn--ghost {
	background: rgba(42, 61, 137, 0.25);
	border-color: rgba(248, 247, 247, 0.14);
	color: #F8F7F7;
}

.btn--ghost:hover {
	background: rgba(42, 61, 137, 0.45);
}

.btn--primary {
	background: #c0e624;
	color: black;
}

.btn--primary:hover {
	background: rgba(63, 107, 239, 0.88);
}

.btn:active {
	transform: translateY(1px);
}

/* Mobile overlay (hidden by default) */
.site-header__overlay {
	display: none;
}

/* ===========================
   OFFCANVAS MENU HEADER (mobile only)
   =========================== */

.site-header__navhead {
	display: none;
}

.site-header__navtitle span {
	display: block;
	color: #F8F7F7;
	font-weight: 800;
	letter-spacing: .2px;
	font-size: 18px;
	line-height: 1.1;
}

.site-header__navtitle small {
	display: block;
	margin-top: 4px;
	color: rgba(248, 247, 247, 0.65);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .4px;
}

.site-header__navactions {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.site-header__navgift,
.site-header__close {
	width: 50px;
	height: 50px;
	border-radius: 12px;
	border: 1px solid rgba(248, 247, 247, 0.14);
	background: rgba(42, 61, 137, 0.35);
	color: #F8F7F7;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	text-decoration: none;
}

.site-header__navgift:active,
.site-header__close:active {
	transform: translateY(1px);
}

.site-header__navgift {
	position: relative;
}

.site-header__badge {
	position: absolute;
	top: -6px;
	right: -6px;

	min-width: 18px;
	height: 18px;
	padding: 0 5px;

	display: inline-flex;
	align-items: center;
	justify-content: center;

	border-radius: 999px;
	background: #c0e624;
	color: black;

	font-size: 12px;
	font-weight: 800;
	line-height: 1;

	border: 2px solid rgba(26, 30, 64, 0.92);
	box-shadow: 0 8px 18px rgba(0,0,0,0.25);
}

/* ===========================
   MOBILE HEADER + BURGER MENU
   =========================== */

@media (max-width: 980px) {

	.site-header__burger {
		display: inline-flex;
		align-items: center;
		justify-content: center;
	}

	.site-header__nav {
		position: fixed;
		top: 0;
		left: 0;
		height: 100vh;
		width: min(86vw, 360px);
		background: rgba(26, 30, 64, 0.92);
		backdrop-filter: blur(12px);
		-webkit-backdrop-filter: blur(12px);
		border-right: 1px solid rgba(248, 247, 247, 0.10);
		padding: 14px 14px 18px;

		transform: translateX(-102%);
		transition: transform .25s ease;
		z-index: 1100;
	}

	.site-header__navhead {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 12px;
		padding: 10px 10px 14px;
		border-bottom: 1px solid rgba(248, 247, 247, 0.10);
		margin-bottom: 14px;
	}

	.site-header__nav ul {
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
		gap: 10px;
	}

	.site-header__nav a {
		justify-content: space-between;
		background: rgba(42, 61, 137, 0.25);
		border: 1px solid rgba(248, 247, 247, 0.10);
		padding: 12px 14px;
	}

	.site-header__overlay {
		display: block;
		position: fixed;
		inset: 0;
		background: rgba(0,0,0,0.45);
		opacity: 0;
		pointer-events: none;
		transition: opacity .25s ease;
		z-index: 1050;
		border: 0;
	}

	.site-header.is-menu-open .site-header__nav {
		transform: translateX(0);
	}

	.site-header.is-menu-open .site-header__overlay {
		opacity: 1;
		pointer-events: auto;
	}

	.site-header__logo img {
		width: 104px;
	}
}

@media (max-width: 520px) {
	.btn {
		height: 40px;
		padding: 0 12px;
		border-radius: 12px;
		font-size: 12px;
	}

	.site-header__logo img {
		width: 100px;
	}
}

/* ===========================
   LANGUAGE SELECTOR
   =========================== */

.site-header__lang {
	display: inline-flex;
	align-items: center;
	gap: 2px;
	background: rgba(42, 61, 137, 0.30);
	border: 1px solid rgba(248, 247, 247, 0.10);
	border-radius: 12px;
	padding: 4px;
}

.site-header__lang-a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 5px 10px;
	border-radius: 9px;
	text-decoration: none;
	color: rgba(248, 247, 247, 0.55);
	font-weight: 700;
	font-size: 13px;
	letter-spacing: 0.3px;
	transition: background .2s ease, color .2s ease;
}

.site-header__lang-a:hover {
	color: rgba(248, 247, 247, 0.85);
	background: rgba(42, 61, 137, 0.35);
}

.site-header__lang-a.is-active {
	background: rgba(42, 61, 137, 0.55);
	color: #F8F7F7;
	border: 1px solid rgba(248, 247, 247, 0.12);
}

.site-header__lang-sep {
	color: rgba(248, 247, 247, 0.18);
	font-size: 13px;
	font-weight: 400;
	user-select: none;
}

/* Desktop: показываем desk, прячем mob */
.site-header__lang--desk {
	display: inline-flex;
}

.site-header__lang--mob {
	display: none;
}

/* ===========================
   MOBILE LANGUAGE SELECTOR
   =========================== */

@media (max-width: 980px) {

	/* Desktop скрыть */
	.site-header__lang--desk {
		display: none;
	}

	/* Mob показать внутри offcanvas */
	.site-header__lang--mob {
		display: inline-flex;
		margin-top: 14px;
		align-self: flex-start;
	}
}
	/* ===========================
	   HERO SLIDER
	   =========================== */

	.hero-slider {
		padding: 18px 16px 0;
	}

	.hero-slider__inner {
		max-width: 1200px;
		margin: 0 auto;
	}

	.hero-slider__viewport {
		display: flex;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		scroll-behavior: smooth;
		-webkit-overflow-scrolling: touch;

		border-radius: 18px;
		overflow-y: hidden;

		box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
		background: #1A1E40;
	}

	.hero-slider__viewport::-webkit-scrollbar {
		display: none;
	}

	.hero-slider__slide {
		position: relative;
		flex: 0 0 100%;
		min-height: 350px;
		scroll-snap-align: start;
		overflow: hidden;
		background: #1A1E40;
	}

	.hero-slider__bg {
		position: absolute;
		inset: 0;
		background-size: cover;
		background-position: center;
		transform: scale(1.02);
	}

	/* Поменяй пути под свои картинки */
	.hero-slider__bg--one {
		background-image: url("/assets/img/slide-1.png");
	}

	.hero-slider__bg--two {
		background-image: url("/assets/img/slide-2.png");
	}

	.hero-slider__bg--three {
		background-image: url("/assets/img/slide-3.png");
	}

	.hero-slider__overlay {
		position: absolute;
		inset: 0;
		background:
			linear-gradient(90deg, rgba(10, 12, 30, 0.80) 0%, rgba(10, 12, 30, 0.55) 45%, rgba(10, 12, 30, 0.20) 100%),
			radial-gradient(900px 320px at 30% 50%, rgba(117, 57, 151, 0.35), transparent 60%);
	}

	.hero-slider__content {
		position: relative;
		z-index: 2;
		padding: 80px 28px;
		max-width: 760px;
	}

	.hero-slider__title {
		display: block;
		color: #F8F7F7;
		font-weight: 900;
		letter-spacing: 0.2px;
		font-size: 44px;
		line-height: 1.05;
		text-transform: none;
	}

	.hero-slider__text {
		margin-top: 10px;
		color: rgba(248, 247, 247, 0.82);
		font-size: 16px;
		line-height: 1.5;
		max-width: 520px;
	}

	.hero-slider__cta {
		margin-top: 16px;
		display: inline-flex;
		align-items: center;
		justify-content: center;

		height: 44px;
		padding: 0 16px;
		border-radius: 14px;

		background: #c0e624;
		color: #0b1026;
		font-weight: 800;
		text-decoration: none;

		box-shadow: 0 12px 26px rgba(192, 230, 36, 0.18);
		transition: transform .2s ease, filter .2s ease;
	}

	.hero-slider__cta:hover {
		filter: brightness(0.98);
	}

	.hero-slider__cta:active {
		transform: translateY(1px);
	}

	.hero-slider__dots {
		display: flex;
		justify-content: center;
		gap: 10px;
		margin-top: 12px;
        z-index: 1000;
	}

	.hero-slider__dot {
		width: 10px;
		height: 10px;
		border-radius: 999px;
		border: 0;
		background: rgba(248, 247, 247, 0.25);
		cursor: pointer;
		transition: transform .2s ease, background .2s ease, width .2s ease;
	}

	.hero-slider__dot.is-active {
		width: 26px;
		background: rgba(63, 107, 239, 0.95);
	}

	.hero-slider__dot:active {
		transform: translateY(1px);
	}

    

	@media (max-width: 980px) {
		.hero-slider__slide {
			min-height: 240px;
		}

		.hero-slider__title {
			font-size: 34px;
		}
	}

	@media (max-width: 640px) {
		.hero-slider__content {
			padding: 22px 18px;
		}

		.hero-slider__title {
			font-size: 30px;
		}

		.hero-slider__text {
			font-size: 15px;
		}
}

.promo-windows {
	padding: 14px 16px 0;
}

.promo-windows__inner {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}

.promo-windows__card {
	position: relative;
	min-height: 110px;
	border-radius: 18px;
	overflow: hidden;
	text-decoration: none;
	padding: 18px 18px;

	display: grid;
	align-content: start;
	gap: 6px;

	background: rgba(26, 30, 64, 0.65);
	border: 1px solid rgba(248, 247, 247, 0.10);
	box-shadow: 0 18px 38px rgba(0,0,0,0.18);

	transition: transform .2s ease, filter .2s ease;
}

.promo-windows__card:hover {
	filter: brightness(1.03);
}

.promo-windows__card:active {
	transform: translateY(1px);
}

.promo-windows__title {
	display: block;
	color: #F8F7F7;
	font-weight: 900;
	letter-spacing: 0.6px;
	font-size: 22px;
	line-height: 1.05;
	font-style: italic;
	text-transform: uppercase;

	position: relative;
	z-index: 3;
}

.promo-windows__hint {
	display: block;
	color: rgba(248, 247, 247, 0.72);
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.2px;

	position: relative;
	z-index: 3;
}

/* КАРТИНКА КАК ФОН НА ВЕСЬ КАРД */
.promo-windows__card::after {
	content: "";
	position: absolute;
	inset: 0;

	z-index: 1;
	background-repeat: no-repeat;

	/* важно: теперь это реально фон */
	background-size: cover;

	/* фокус вправо — чтобы объект был справа */
	background-position: right center;

	opacity: 0.95;
	pointer-events: none;
}

/* ОВЕРЛЕЙ ПОВЕРХ КАРТИНКИ (чтобы текст читался) */
.promo-windows__card::before {
	content: "";
	position: absolute;
	inset: 0;

	z-index: 2;

	background:
		radial-gradient(420px 180px at 70% 55%, rgba(117, 57, 151, 0.55), transparent 60%),
		linear-gradient(90deg, rgba(26, 30, 64, 0.92) 0%, rgba(26, 30, 64, 0.55) 55%, rgba(26, 30, 64, 0.20) 100%);

	pointer-events: none;
}

/* Картинки */
.promo-windows__card--checkin::after {
	background-image: url("/assets/img/vip.avif");
}

.promo-windows__card--vip::after {
	background-image: url("/assets/img/checkin.avif");
}

/* Responsive */
@media (max-width: 900px) {
	.promo-windows__inner {
		grid-template-columns: 1fr !important;
	}
}

@media (max-width: 520px) {
	.promo-windows__card {
		min-height: 104px;
		padding: 16px 16px;
	}

	.promo-windows__title {
		font-size: 20px;
	}

	.promo-windows__card::after {
		background-size: auto 100%;
		background-position: calc(100% + 55px) 55%;
	}

	.promo-windows__card--checkin::after {
		background-position: calc(100% + 65px) 58%;
	}

	.promo-windows__card--vip::after {
		background-position: calc(100% + 50px) 52%;
	}

	.promo-windows__card::before {
		background:
			linear-gradient(90deg,
				rgba(26, 30, 64, 0.92) 0%,
				rgba(26, 30, 64, 0.62) 55%,
				rgba(26, 30, 64, 0.30) 100%),
			radial-gradient(520px 220px at 78% 55%,
				rgba(117, 57, 151, 0.50),
				transparent 65%);
	}
}

/* ===========================
   TOP SLOTS
   =========================== */

.top-slots {
	padding: 16px 16px 0;
}

.top-slots__inner {
	max-width: 1200px;
	margin: 0 auto;
}

.top-slots__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 12px;
}

.top-slots__title {
	display: block;
	color: rgba(248, 247, 247, 0.92);
	font-weight: 800;
	letter-spacing: 0.2px;
	font-size: 18px;
}

.top-slots__all {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	text-decoration: none;
	color: rgba(248, 247, 247, 0.75);
	font-weight: 700;
	transition: color .2s ease, transform .2s ease;
}

.top-slots__all:hover {
	color: #F8F7F7;
}

.top-slots__all:active {
	transform: translateY(1px);
}

.top-slots__track {
	display: flex;
	gap: 12px;
	overflow-x: auto;
	padding-bottom: 8px;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
    margin-bottom: 10px;
}

.top-slots__track::-webkit-scrollbar {
	height: 8px;
}

.top-slots__track::-webkit-scrollbar-thumb {
	background: rgba(248, 247, 247, 0.18);
	border-radius: 999px;
}

.top-slots__card {
	flex: 0 0 170px;
	scroll-snap-align: start;
	text-decoration: none;
	color: inherit;
	display: grid;
	gap: 0;
}

.top-slots__thumb {
	position: relative;
	height: 140px;
	border-radius: 18px;
	overflow: hidden;

	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;

	box-shadow: 0 16px 34px rgba(0,0,0,0.22);
	transition: transform .2s ease;
}

/* overlay tint */
.top-slots__thumb::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(10, 12, 30, 0.25);
	opacity: 0;
	transition: opacity .2s ease;
}

/* blur layer */
.top-slots__thumb::after {
	content: "";
	position: absolute;
	inset: 0;
	backdrop-filter: blur(0px);
	-webkit-backdrop-filter: blur(0px);
	opacity: 0;
	transition: opacity .2s ease, backdrop-filter .2s ease;
}

/* Play circle */
.top-slots__play {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) scale(0.92);
	width: 54px;
	height: 54px;
	border-radius: 999px;
	background: #c0e624;
	box-shadow: 0 18px 30px rgba(0,0,0,0.25);
	opacity: 0;
	transition: opacity .2s ease, transform .2s ease;
}

/* triangle inside */
.top-slots__play::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-35%, -50%);
	width: 0;
	height: 0;
	border-left: 14px solid #0b1026;
	border-top: 9px solid transparent;
	border-bottom: 9px solid transparent;
}

/* name */
.top-slots__name {
	margin-top: 8px;
	padding: 10px 12px;
	border-radius: 14px;
	background: rgba(42, 61, 137, 0.65);
	border: 1px solid rgba(248, 247, 247, 0.10);
	color: rgba(248, 247, 247, 0.92);
	font-weight: 700;
	font-size: 14px;
	line-height: 1.15;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* hover */
.top-slots__card:hover .top-slots__thumb::before {
	opacity: 1;
}

.top-slots__card:hover .top-slots__thumb::after {
	opacity: 1;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.top-slots__card:hover .top-slots__play {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1);
}

.top-slots__card:hover .top-slots__thumb {
	transform: translateY(-2px);
}

.top-slots__card:active .top-slots__thumb {
	transform: translateY(1px);
}

/* touch */
@media (hover: none) {
	.top-slots__card:active .top-slots__thumb::before {
		opacity: 1;
	}

	.top-slots__card:active .top-slots__thumb::after {
		opacity: 1;
		backdrop-filter: blur(10px);
		-webkit-backdrop-filter: blur(10px);
	}

	.top-slots__card:active .top-slots__play {
		opacity: 1;
		transform: translate(-50%, -50%) scale(1);
	}
}

.top-slots__thumb {
	isolation: isolate;
}

.top-slots__thumb::before,
.top-slots__thumb::after {
	z-index: 1;
}

.top-slots__play {
	z-index: 2;
}

/* ===========================
   CONTENT SECTION (ONLY main has class)
   =========================== */

main.content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 18px 16px 24px;

	background: rgba(26, 30, 64, 0.55);
	border: 1px solid rgba(248, 247, 247, 0.10);
	border-radius: 18px;
	box-shadow: 0 18px 40px rgba(0,0,0,0.18);
	color: rgba(248, 247, 247, 0.92);
}

main.content > * + * {
	margin-top: 14px;
}

main.content h1 {
	font-size: 34px;
	line-height: 1.08;
	letter-spacing: 0.2px;
	font-weight: 900;
	color: #F8F7F7;
}

main.content h2 {
	margin-top: 18px;
	margin-bottom: 18px;
	font-size: 24px;
	line-height: 1.15;
	letter-spacing: 0.2px;
	font-weight: 900;
	color: #F8F7F7;
}

main.content h3 {
	margin-top: 16px;
	font-size: 18px;
	line-height: 1.2;
	font-weight: 900;
	color: rgba(248, 247, 247, 0.95);
}

main.content p {
	font-size: 15px;
	line-height: 1.65;
	color: rgba(248, 247, 247, 0.86);
}

main.content img {
	max-width: 100%;
    margin: 0 auto;
	height: auto;
	display: block;
	border-radius: 16px;
	border: 1px solid rgba(248, 247, 247, 0.10);
	box-shadow: 0 14px 30px rgba(0,0,0,0.22);
}

main.content blockquote {
	padding: 14px 14px;
	border-radius: 16px;

	background:
		linear-gradient(90deg, rgba(63, 107, 239, 0.16) 0%, rgba(117, 57, 151, 0.18) 100%);
	border: 1px solid rgba(248, 247, 247, 0.12);
	border-left: 4px solid rgba(192, 230, 36, 0.90);

	color: rgba(248, 247, 247, 0.92);
	font-weight: 600;
	line-height: 1.6;
}

/* TABLE: horizontal scroll when content is wide */
main.content table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;

	/* скролл */
	display: block;
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;

	border-radius: 16px;
	border: 1px solid rgba(248, 247, 247, 0.10);
	background: rgba(42, 61, 137, 0.25);
}

/* thead/tbody НЕ ДЕЛИМ на разные "таблицы" */
main.content thead {
	display: table-header-group;
}

main.content tbody {
	display: table-row-group;
}

main.content tr {
	display: table-row;
}

main.content th,
main.content td {
	padding: 12px 12px;
	text-align: left;
	white-space: nowrap;

	border-bottom: 1px solid rgba(248, 247, 247, 0.10);
	color: rgba(248, 247, 247, 0.88);
	font-size: 14px;
}

main.content th {
	font-weight: 900;
	color: #F8F7F7;
	background: rgba(26, 30, 64, 0.55);
}

main.content tbody tr:hover td {
	background: rgba(63, 107, 239, 0.10);
}

/* MOBILE: чтобы на узких экранах был аккуратный горизонтальный скролл */
@media (max-width: 900px) {
	main.content table th,
	main.content table td {
		min-width: 150px;
	}
}

/* DESKTOP: таблица растягивается на 100%, но скролл остаётся auto */
@media (min-width: 901px) {
	main.content table th,
	main.content table td {
		min-width: 0;
	}

	/* если контент широкий — table расширится внутри display:block и появится скролл */
	main.content table {
		min-width: 100%;
	}
}

main.content table::-webkit-scrollbar {
	height: 8px;
}

main.content table::-webkit-scrollbar-thumb {
	background: rgba(248, 247, 247, 0.18);
	border-radius: 999px;
}
/* Lists */
main.content ul,
main.content ol {
	padding-left: 18px;
	color: rgba(248, 247, 247, 0.88);
}

main.content li {
	margin-top: 8px;
	line-height: 1.6;
}

main.content li::marker {
	color: rgba(192, 230, 36, 0.90);
	font-weight: 900;
}

/* Mobile tweaks */
@media (max-width: 520px) {
	main.content {
		padding: 16px 14px 20px;
	}

	main.content h1 {
		font-size: 28px;
	}

	main.content h2 {
		font-size: 21px;
	}
}

/* ===========================
   FOOTER
   =========================== */

.site-footer {
	margin-top: 22px;
	background: rgba(26, 30, 64, 0.92);
	border-top: 1px solid rgba(248, 247, 247, 0.10);
	box-shadow: 0 -18px 50px rgba(0,0,0,0.22);
}

.site-footer__inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 22px 16px 16px;
	color: rgba(248, 247, 247, 0.86);
}

.site-footer__grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 22px;
	padding-bottom: 18px;
	border-bottom: 1px solid rgba(248, 247, 247, 0.10);
}

.site-footer__brand p {
	margin-top: 12px;
	font-size: 14px;
	line-height: 1.65;
	color: rgba(248, 247, 247, 0.78);
}

.site-footer__logo {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
}

.site-footer__logo img {
	width: 64px;
	height: auto;
	display: block;
	filter: drop-shadow(0 10px 22px rgba(0,0,0,0.35));
}

.site-footer__col span {
	display: block;
	color: rgba(248, 247, 247, 0.92);
	font-weight: 900;
	letter-spacing: 0.18em;
	font-size: 12px;
	margin-bottom: 10px;
	text-transform: uppercase;
}

.site-footer__col ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 10px;
}

.site-footer__col a {
	color: rgba(248, 247, 247, 0.78);
	text-decoration: none;
	font-weight: 700;
	transition: color .2s ease, transform .2s ease;
}

.site-footer__col a:hover {
	color: #F8F7F7;
}

.site-footer__col em {
	color: rgba(248, 247, 247, 0.65);
	font-style: normal;
	font-weight: 600;
}

.site-footer__col b {
	color: rgba(248, 247, 247, 0.92);
}

.site-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding-top: 14px;
}

.site-footer__note {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
}

.site-footer__age {
	width: 44px;
	height: 44px;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #3F6BEF;
	color: #0b1026;
	font-weight: 900;
	box-shadow: 0 14px 28px rgba(0,0,0,0.25);
	border: 2px solid rgba(248, 247, 247, 0.10);
}

.site-footer__note p {
	margin: 0;
	font-size: 13px;
	line-height: 1.55;
	color: rgba(248, 247, 247, 0.74);
	max-width: 720px;
}

.site-footer__copy {
	color: rgba(248, 247, 247, 0.70);
	font-weight: 700;
	white-space: nowrap;
}

/* ===========================
   MOBILE
   =========================== */

@media (max-width: 900px) {
	.site-footer__grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 560px) {
	.site-footer__grid {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.site-footer__logo {
		justify-content: center;
	}

	.site-footer__col ul {
		justify-items: center;
	}

	.site-footer__bottom {
		flex-direction: column;
		text-align: center;
	}

	.site-footer__note {
		flex-direction: column;
	}

	.site-footer__note p {
		max-width: 520px;
	}
}

@media (max-width: 900px) {
    .site-header__nav {
        background: rgba(26, 30, 64, 0.92);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        isolation: isolate; /* важно для слоёв */
    }

    .site-header__nav::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: -1;
        background: rgba(26, 30, 64, 0.92); /* плотная подложка */
    }
}

@media (min-width:901px) {
    main.content table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;

	/* таблица остаётся таблицей */
	display: table;

	/* горизонтальный скролл */
	overflow-x: auto;
	overflow-y: hidden;

	border-radius: 16px;
	border: 1px solid rgba(248, 247, 247, 0.10);
	background: rgba(42, 61, 137, 0.25);

	/* ключевая строка */
	table-layout: auto;
}

/* строки */
main.content th,
main.content td {
	padding: 12px;
	text-align: left;
	white-space: wrap;

	border-bottom: 1px solid rgba(248, 247, 247, 0.10);
	color: rgba(248, 247, 247, 0.88);
	font-size: 14px;
}

main.content th {
	font-weight: 900;
	color: #F8F7F7;
	background: rgba(26, 30, 64, 0.55);
}

main.content tbody tr:hover td {
	background: rgba(63, 107, 239, 0.10);
}
}

.site-header__nav > ul > li:nth-child(-n+11) {
  display: none !important;
}