*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--bg: #f0f2f5;
	--bg-white: #ffffff;
	--bg-card: #ffffff;
	--bg-header: #1a2a5c;
	--bg-nav: #243468;
	--blue: #3a5fcc;
	--blue-hover: #4a6fdc;
	--blue-light: #eaf0ff;
	--blue-glow: rgba(58, 95, 204, 0.15);
	--green: #43a047;
	--green-hover: #4caf50;
	--red: #e84538;
	--red-hover: #f25548;
	--text: #1a1a2e;
	--text-secondary: #5a5a6e;
	--text-light: #9a9aaa;
	--border: rgba(0, 0, 0, 0.07);
	--border-dark: rgba(0, 0, 0, 0.12);
	--shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.03);
	--shadow-md: 0 4px 14px rgba(0, 0, 0, 0.07), 0 2px 6px rgba(0, 0, 0, 0.04);
	--shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.1), 0 4px 10px rgba(0, 0, 0, 0.05);
	--font: 'Inter', sans-serif;
	--max-w: 1280px;
	--radius: 14px;
	--radius-sm: 10px;
}

html {
	font-size: 16px;
	scroll-behavior: smooth;
}

body {
	font-family: var(--font);
	background: var(--bg);
	color: var(--text);
	min-height: 100vh;
	overflow-x: hidden;
}

a {
	text-decoration: none;
	color: inherit;
}

ul,
ol {
	list-style: none;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

/* ── Buttons ── */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 24px;
	font-family: var(--font);
	font-size: 13px;
	font-weight: 700;
	border-radius: 50px;
	cursor: pointer;
	transition: all 0.2s;
	white-space: nowrap;
	border: none;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	position: relative;
	overflow: hidden;
}

.btn::before {
	content: '';
	position: absolute;
	top: 1px;
	left: 8%;
	right: 8%;
	height: 40%;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.25) 0%, transparent 100%);
	border-radius: 50px;
	pointer-events: none;
}

.btn--green {
	background: linear-gradient(180deg, #4caf50 0%, #43a047 60%, #388e3c 100%);
	color: #fff;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.2),
		inset 0 -2px 0 rgba(0, 0, 0, 0.1),
		0 3px 10px rgba(67, 160, 71, 0.35);
}

.btn--green:hover {
	transform: translateY(-1px);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.2),
		inset 0 -2px 0 rgba(0, 0, 0, 0.1),
		0 6px 20px rgba(67, 160, 71, 0.45);
}

.btn--red {
	background: linear-gradient(180deg, #ef5350 0%, #e84538 60%, #d32f2f 100%);
	color: #fff;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.2),
		inset 0 -2px 0 rgba(0, 0, 0, 0.1),
		0 3px 10px rgba(232, 69, 56, 0.3);
}

.btn--red:hover {
	transform: translateY(-1px);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.2),
		inset 0 -2px 0 rgba(0, 0, 0, 0.1),
		0 6px 20px rgba(232, 69, 56, 0.4);
}

.btn--blue {
	background: linear-gradient(180deg, #5577dd 0%, #3a5fcc 60%, #2e4fb8 100%);
	color: #fff;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.2),
		inset 0 -2px 0 rgba(0, 0, 0, 0.1),
		0 3px 10px rgba(58, 95, 204, 0.3);
}

.btn--blue:hover {
	transform: translateY(-1px);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.2),
		inset 0 -2px 0 rgba(0, 0, 0, 0.1),
		0 6px 20px rgba(58, 95, 204, 0.4);
}

.btn--sm {
	padding: 8px 16px;
	font-size: 11px;
}

.btn--lg {
	padding: 14px 36px;
	font-size: 15px;
	letter-spacing: 0.8px;
}

.btn:active {
	transform: translateY(0);
}

/* ── Burger Overlay & Drawer ── */

.burger-overlay {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
	z-index: 1100;
	backdrop-filter: blur(3px);
	opacity: 0;
	transition: opacity 0.3s;
}

.burger-overlay.is-open {
	display: block;
	opacity: 1;
}

.burger-drawer {
	position: fixed;
	top: 0;
	right: -320px;
	width: 300px;
	height: 100%;
	background: var(--bg-white);
	z-index: 1200;
	display: none;
	flex-direction: column;
	transition: right 0.32s cubic-bezier(0.4, 0, 0.2, 1);
	overflow-y: auto;
	box-shadow: -6px 0 30px rgba(0, 0, 0, 0.15);
}

.burger-drawer.is-open {
	right: 0;
}

.burger-drawer__promo {
	position: relative;
	background: linear-gradient(135deg, #6a3de8 0%, #4a2dc8 60%, #3a20a8 100%);
	padding: 20px 20px 18px;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.burger-drawer__close {
	position: absolute;
	top: 12px;
	right: 12px;
	background: rgba(255, 255, 255, 0.15);
	border: none;
	cursor: pointer;
	padding: 6px;
	border-radius: 8px;
	line-height: 0;
	transition: background 0.2s;
	z-index: 2;
}

.burger-drawer__close:hover {
	background: rgba(255, 255, 255, 0.3);
}

.burger-drawer__promo-sub {
	font-size: 12px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.7);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.burger-drawer__promo-title {
	font-size: 14px;
	font-weight: 800;
	color: #ffd740;
	text-transform: uppercase;
}

.burger-drawer__promo-amount {
	font-size: 28px;
	font-weight: 900;
	color: #fff;
	line-height: 1.1;
	margin: 4px 0 10px;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.burger-drawer__promo-amount em {
	font-style: normal;
	font-size: 18px;
	color: #ffd740;
}

.burger-drawer__promo-cta {
	border-radius: 8px !important;
	padding: 13px 24px !important;
	font-size: 15px !important;
	letter-spacing: 1px !important;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.25),
		inset 0 -2px 0 rgba(0, 0, 0, 0.1),
		0 4px 16px rgba(67, 160, 71, 0.5) !important;
}

.burger-drawer__nav ul {
	display: flex;
	flex-direction: column;
	padding: 0;
}

.burger-drawer__nav ul li a {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 14px 20px;
	font-size: 15px;
	font-weight: 600;
	color: var(--text-secondary);
	border-bottom: 1px solid var(--border);
	transition: all 0.2s;
}

.burger-drawer__nav ul li a svg:first-child {
	flex-shrink: 0;
	color: var(--blue);
	opacity: 0.7;
}

.burger-drawer__nav ul li a:hover {
	color: var(--blue);
	background: var(--blue-light);
}

.burger-drawer__nav ul li a[aria-current="page"] {
	color: var(--blue);
	background: var(--blue-light);
	font-weight: 700;
}

.burger-drawer__nav ul li a[aria-current="page"] svg:first-child {
	opacity: 1;
}

.burger-drawer__arrow {
	margin-left: auto;
	color: var(--text-light) !important;
	opacity: 1 !important;
}

.burger-drawer__badge {
	margin-left: auto;
	padding: 2px 10px;
	border-radius: 50px;
	font-size: 10px;
	font-weight: 800;
	color: #fff;
	background: var(--blue);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.burger-drawer__socials {
	display: flex;
	justify-content: center;
	gap: 10px;
	padding: 20px 20px;
	border-bottom: 1px solid var(--border);
}

.burger-drawer__socials a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: var(--blue-light);
	color: var(--blue);
	transition: all 0.2s;
	box-shadow: var(--shadow-sm);
}

.burger-drawer__socials a:hover {
	background: var(--blue);
	color: #fff;
	box-shadow: 0 4px 12px rgba(58, 95, 204, 0.3);
	transform: translateY(-2px);
}

.burger-drawer__footer {
	padding: 18px 20px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.burger-drawer__lang {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 14px;
	border: 1px solid var(--border-dark);
	border-radius: var(--radius-sm);
}

.burger-drawer__lang span:first-child {
	font-size: 13px;
	font-weight: 600;
	color: var(--text-secondary);
}

.burger-drawer__lang-select {
	font-size: 13px;
	font-weight: 700;
	color: var(--text);
}

.burger-drawer__contact {
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding: 0 4px;
}

.burger-drawer__contact span {
	font-size: 12px;
	color: var(--text-light);
}

.burger-drawer__contact strong {
	font-size: 14px;
	font-weight: 700;
	color: var(--blue);
}

/* ── App Popup ── */

.app-popup {
	display: none;
	background: var(--bg-white);
	border-bottom: 1px solid var(--border);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.app-popup__inner {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 14px;
}

.app-popup__icon {
	width: 38px;
	height: 38px;
	border-radius: 10px;
	background: var(--bg-header);
	color: #fff;
	font-size: 18px;
	font-weight: 900;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	box-shadow: var(--shadow-sm);
}

.app-popup__text {
	display: flex;
	flex-direction: column;
	flex: 1;
	min-width: 0;
}

.app-popup__title {
	font-size: 14px;
	font-weight: 800;
	color: var(--text);
}

.app-popup__sub {
	font-size: 11px;
	color: var(--text-light);
	font-weight: 500;
}

.app-popup__download {
	padding: 7px 16px;
	border-radius: 50px;
	background: var(--blue);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.3px;
	flex-shrink: 0;
	transition: background 0.2s;
	box-shadow: 0 2px 8px rgba(58, 95, 204, 0.3);
}

.app-popup__download:hover {
	background: var(--blue-hover);
}

.app-popup__close {
	padding: 4px;
	flex-shrink: 0;
	line-height: 0;
	border-radius: 6px;
	transition: background 0.2s;
}

.app-popup__close:hover {
	background: var(--blue-light);
}

/* ── Burger Button ── */

.burger-btn {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
}

.burger-btn__line {
	display: block;
	width: 22px;
	height: 2px;
	background: #fff;
	border-radius: 2px;
	transition: background 0.2s;
}

/* ── Header ── */

.header {
	background: linear-gradient(180deg, #1e3068 0%, var(--bg-nav) 100%);
	position: sticky;
	top: 0;
	z-index: 1000;
	box-shadow: 0 4px 20px rgba(26, 42, 92, 0.3);
}

.header__inner {
	max-width: var(--max-w);
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 24px;
}

.header__top {
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header__top .header__inner {
	height: 54px;
}

.header__logo {
	font-size: 24px;
	font-weight: 900;
	color: #fff;
	letter-spacing: -0.5px;
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.header__actions {
	display: flex;
	gap: 8px;
}

.header__mobile-actions {
	display: none;
	align-items: center;
	gap: 6px;
}

.header__nav {
	background: rgba(0, 0, 0, 0.12);
	border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.header__nav .header__inner {
	height: 46px;
	justify-content: center;
}

.nav-list {
	display: flex;
	gap: 2px;
	overflow-x: auto;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
}

.nav-list::-webkit-scrollbar {
	display: none;
}

.nav-list li a {
	display: block;
	padding: 10px 16px;
	font-size: 13px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.65);
	white-space: nowrap;
	border-radius: 8px;
	transition: all 0.2s;
}

.nav-list li a:hover {
	color: #fff;
	background: rgba(255, 255, 255, 0.1);
}

.nav-list li a[aria-current="page"] {
	color: #fff;
	background: rgba(255, 255, 255, 0.14);
	font-weight: 700;
}

/* ── Page Content ── */

.page-content {
	max-width: var(--max-w);
	margin: 0 auto;
	padding: 24px 24px 40px;
	display: flex;
	flex-direction: column;
	gap: 28px;
}

/* ── Hero Slider ── */

.hero {
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow-lg);
}

.hero-slider {
	position: relative;
}

.hero-slider__track {
	display: flex;
	transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide {
	flex-shrink: 0;
	width: 100%;
	aspect-ratio: 3 / 1;
	position: relative;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.hero-slide--1 {
	background-image: url('/assets/img/slide-1.webp');
	background-color: #2a4a8c;
}

.hero-slide--2 {
	background-image: url('/assets/img/slide-2.webp');
	background-color: #3a5a9c;
}

.hero-slide--3 {
	background-image: url('/assets/img/slide-3.webp');
	background-color: #1a3a7c;
}

.hero-slide__content {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 24px 48px;
	max-width: 460px;
}

.hero-slide__badge {
	display: inline-block;
	padding: 5px 16px;
	margin-bottom: 12px;
	background: rgba(255, 255, 255, 0.18);
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 50px;
	font-size: 12px;
	font-weight: 700;
	color: #fff;
	letter-spacing: 0.3px;
	backdrop-filter: blur(6px);
}

.hero-slide__title {
	display: block;
	font-size: 30px;
	font-weight: 900;
	color: #fff;
	margin-bottom: 20px;
	text-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
	line-height: 1.15;
}

.hero-slide__title em {
	font-style: normal;
	color: #ffd740;
}

.hero-slider__dots {
	position: absolute;
	bottom: 16px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 8px;
	z-index: 3;
}

.hero-slider__dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.35);
	cursor: pointer;
	transition: all 0.25s;
	border: none;
}

.hero-slider__dot.is-active {
	background: #fff;
	box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
	transform: scale(1.15);
}

/* ── Categories ── */

.categories {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 18px 24px;
	background: var(--bg-white);
	border-radius: var(--radius);
	box-shadow: var(--shadow-md);
}

.categories__scroll {
	display: flex;
	gap: 4px;
	overflow-x: auto;
	flex: 1;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
}

.categories__scroll::-webkit-scrollbar {
	display: none;
}

.category-pill {
	display: inline-flex;
	align-items: center;
	padding: 8px 18px;
	border-radius: 50px;
	font-size: 13px;
	font-weight: 600;
	color: var(--text-secondary);
	white-space: nowrap;
	flex-shrink: 0;
	transition: all 0.2s;
}

.category-pill:hover {
	color: var(--blue);
	background: var(--blue-light);
}

.category-pill--active {
	color: var(--blue);
	font-weight: 700;
	background: var(--blue-light);
}

.categories__search {
	display: flex;
	align-items: center;
	gap: 8px;
	background: var(--bg);
	border: 1px solid var(--border-dark);
	border-radius: 50px;
	padding: 9px 18px;
	flex-shrink: 0;
	min-width: 200px;
	transition: border-color 0.2s, box-shadow 0.2s;
}

.categories__search:focus-within {
	border-color: var(--blue);
	box-shadow: 0 0 0 3px var(--blue-glow);
}

.categories__search svg {
	color: var(--text-light);
	flex-shrink: 0;
}

.categories__search input {
	background: none;
	border: none;
	outline: none;
	font-family: var(--font);
	font-size: 13px;
	color: var(--text);
	width: 100%;
}

.categories__search input::placeholder {
	color: var(--text-light);
}

/* ── Games Section ── */

.games-section {
	display: flex;
	flex-direction: column;
	gap: 16px;
	content-visibility: auto;
	contain-intrinsic-size: auto 600px;
}

.games-section__head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
}

.games-section__title {
	font-size: 20px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.3px;
}

.games-section__all {
	font-size: 13px;
	color: var(--blue);
	font-weight: 600;
	transition: color 0.2s;
}

.games-section__all:hover {
	color: var(--blue-hover);
}

.games-grid {
	display: grid;
	grid-template-rows: repeat(2, 1fr);
	grid-auto-flow: column;
	grid-auto-columns: 170px;
	gap: 14px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: thin;
	scrollbar-color: var(--border-dark) transparent;
	padding-bottom: 8px;
}

.games-grid::-webkit-scrollbar {
	height: 5px;
}

.games-grid::-webkit-scrollbar-track {
	background: transparent;
}

.games-grid::-webkit-scrollbar-thumb {
	background: var(--border-dark);
	border-radius: 3px;
}

.games-grid::-webkit-scrollbar-thumb:hover {
	background: var(--blue);
}

.game-card {
	display: flex;
	flex-direction: column;
	border-radius: var(--radius-sm);
	overflow: hidden;
	background: var(--bg-card);
	cursor: pointer;
	transition: transform 0.2s, box-shadow 0.2s;
	scroll-snap-align: start;
	box-shadow: var(--shadow-sm);
}

.game-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-lg);
}

.game-card__wrap {
	position: relative;
	overflow: hidden;
}

.game-card__img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	display: block;
	background: var(--bg);
	transition: transform 0.3s;
}

.game-card:hover .game-card__img {
	transform: scale(1.06);
}

.game-card__hover {
	position: absolute;
	inset: 0;
	background: rgba(26, 26, 46, 0.45);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.25s;
}

.game-card:hover .game-card__hover {
	opacity: 1;
}

.game-card__play-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 26px;
	font-family: var(--font);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	color: #fff;
	border-radius: 50px;
	background: linear-gradient(180deg, #4caf50 0%, #43a047 60%, #388e3c 100%);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.2),
		0 4px 14px rgba(67, 160, 71, 0.45);
	transform: translateY(8px);
	transition: transform 0.25s;
	position: relative;
	overflow: hidden;
}

.game-card__play-btn::before {
	content: '';
	position: absolute;
	top: 1px;
	left: 8%;
	right: 8%;
	height: 40%;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.25) 0%, transparent 100%);
	border-radius: 50px;
	pointer-events: none;
}

.game-card:hover .game-card__play-btn {
	transform: translateY(0);
}

.game-card__name {
	display: block;
	padding: 10px 10px;
	font-size: 12px;
	font-weight: 600;
	color: var(--text-secondary);
	text-align: center;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* ── Content ── */

.content {
	width: 100%;
	color: var(--text-secondary);
	line-height: 1.7;
	font-size: 15px;
	background: var(--bg-white);
	padding: 32px;
	border-radius: var(--radius);
	box-shadow: var(--shadow-md);
	content-visibility: auto;
	contain-intrinsic-size: auto 800px;
}

.content h1 {
	font-size: 26px;
	font-weight: 800;
	color: var(--text);
	line-height: 1.2;
	margin-bottom: 18px;
}

.content h2 {
	font-size: 21px;
	font-weight: 700;
	color: var(--text);
	margin-top: 28px;
	margin-bottom: 12px;
}

.content h3 {
	font-size: 17px;
	font-weight: 700;
	color: var(--text);
	margin-top: 22px;
	margin-bottom: 10px;
}

.content p {
	margin-bottom: 14px;
}

.content img {
	display: block;
	max-width: 100%;
	margin: 0 auto;
	border-radius: var(--radius-sm);
	margin-bottom: 18px;
	box-shadow: var(--shadow-sm);
}

.content blockquote {
	border-left: 3px solid var(--blue);
	padding: 14px 22px;
	margin: 18px 0;
	background: var(--blue-light);
	border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
	font-style: italic;
	box-shadow: inset 0 0 0 1px rgba(58, 95, 204, 0.06);
}

.content table {
	width: 100%;
	border-collapse: collapse;
	margin: 18px 0;
	border-radius: var(--radius-sm);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
}

.content th,
.content td {
	padding: 12px 16px;
	text-align: left;
	border-bottom: 1px solid var(--border);
	font-size: 14px;
}

.content th {
	font-weight: 700;
	color: var(--text);
	background: var(--blue-light);
}

.content tbody tr:hover {
	background: rgba(58, 95, 204, 0.03);
}

.content ul {
	margin: 14px 0;
	padding-left: 22px;
	list-style: disc;
}

.content ul li {
	margin-bottom: 6px;
}

.content ol {
	margin: 14px 0;
	padding-left: 22px;
	list-style: decimal;
}

.content ol li {
	margin-bottom: 6px;
}

/* ── Footer ── */

.footer {
	background: linear-gradient(180deg, #1e3068 0%, #172552 100%);
	color: rgba(255, 255, 255, 0.7);
	padding: 44px 24px 28px;
	content-visibility: auto;
	contain-intrinsic-size: auto 400px;
}

.footer__top {
	max-width: var(--max-w);
	margin: 0 auto;
}

.footer__cols {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
	padding-bottom: 32px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__col-title {
	display: block;
	font-size: 14px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 14px;
}

.footer__col ul {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.footer__col ul li a {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.45);
	transition: color 0.2s;
}

.footer__col ul li a:hover {
	color: #fff;
}

.footer__legal {
	max-width: var(--max-w);
	margin: 0 auto;
	text-align: center;
	padding-top: 24px;
}

.footer__legal p {
	font-size: 11px;
	color: rgba(255, 255, 255, 0.3);
	line-height: 1.7;
	margin-bottom: 8px;
}

.footer__legal p:last-child {
	margin-bottom: 0;
}

/* ── Bottom Nav ── */

.bottom-nav {
	display: none;
}

/* ── Responsive 1024 ── */

@media (max-width: 1024px) {
	.games-grid {
		grid-auto-columns: 150px;
	}

	.hero-slide__title {
		font-size: 24px;
	}

	.hero-slide__content {
		padding: 20px 32px;
	}

	.footer__cols {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* ── Responsive 768 ── */

@media (max-width: 768px) {
	.header__nav {
		display: none;
	}

	.header__actions {
		display: none;
	}

	.header__mobile-actions {
		display: flex;
	}

	.header__top .header__inner {
		height: 52px;
	}

	.header__logo {
		font-size: 20px;
	}

	.burger-btn {
		display: flex;
	}

	.burger-drawer {
		display: flex;
	}

	.app-popup {
		display: block;
	}

	.page-content {
		padding: 16px 14px 80px;
		gap: 20px;
	}

	.hero-slide {
		aspect-ratio: auto;
		min-height: 220px;
		background-position: 70% center;
	}

	.hero-slide::before {
		content: '';
		position: absolute;
		inset: 0;
		background: linear-gradient(0deg, rgba(26, 42, 92, 0.85) 0%, rgba(26, 42, 92, 0.4) 50%, transparent 100%);
		z-index: 1;
	}

	.hero-slide__content {
		position: relative;
		top: auto;
		transform: none;
		min-height: 220px;
		align-items: flex-start;
		padding: 20px 20px 36px;
		max-width: 100%;
		justify-content: center;
	}

	.hero-slide__title {
		font-size: 20px;
		margin-bottom: 14px;
	}

	.hero-slide .btn--lg {
		padding: 10px 24px;
		font-size: 12px;
	}

	.hero-slider__dots {
		bottom: 10px;
	}

	.hero-slider__dot {
		width: 8px;
		height: 8px;
	}

	.categories {
		flex-direction: column;
		align-items: stretch;
		gap: 10px;
		padding: 14px 16px;
	}

	.categories__search {
		min-width: 0;
	}

	.games-grid {
		grid-auto-columns: 130px;
		gap: 10px;
	}

	.games-section__title {
		font-size: 16px;
	}

	.content {
		padding: 22px 18px;
	}

	.content h1 {
		font-size: 22px;
	}

	.content table {
		display: block;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

	.footer__cols {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
		text-align: center;
	}

	.footer__col ul {
		align-items: center;
	}

	.bottom-nav {
		display: block;
		position: fixed;
		bottom: 0;
		left: 0;
		right: 0;
		background: var(--bg-white);
		border-top: 1px solid var(--border);
		z-index: 900;
		box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
		padding-bottom: env(safe-area-inset-bottom, 0);
	}

	.bottom-nav ul {
		display: flex;
		justify-content: space-around;
		align-items: center;
		height: 56px;
	}

	.bottom-nav ul li a {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 3px;
		font-size: 10px;
		font-weight: 600;
		color: var(--text-light);
		transition: color 0.2s;
		padding: 4px 8px;
	}

	.bottom-nav ul li a:hover {
		color: var(--blue);
	}

	.bottom-nav__fab {
		display: flex !important;
		align-items: center;
		justify-content: center;
		width: 52px;
		height: 52px;
		border-radius: 50%;
		background: linear-gradient(180deg, #5577dd 0%, #3a5fcc 60%, #2e4fb8 100%);
		color: #fff !important;
		box-shadow:
			inset 0 1px 0 rgba(255, 255, 255, 0.2),
			0 6px 20px rgba(58, 95, 204, 0.45);
		margin-top: -24px;
		flex-direction: row !important;
	}

	.bottom-nav__fab:hover {
		box-shadow:
			inset 0 1px 0 rgba(255, 255, 255, 0.2),
			0 8px 28px rgba(58, 95, 204, 0.55);
	}

	body {
		padding-bottom: 56px;
	}
}

/* ── Responsive 480 ── */

@media (max-width: 480px) {
	.header__top .header__inner {
		padding: 0 10px;
	}

	.header__logo {
		font-size: 18px;
	}

	.btn--sm {
		padding: 6px 12px;
		font-size: 10px;
	}

	.hero-slide {
		min-height: 200px;
	}

	.hero-slide__content {
		min-height: 200px;
		padding: 16px 16px 32px;
	}

	.hero-slide__title {
		font-size: 18px;
	}

	.hero-slide .btn--lg {
		padding: 8px 20px;
		font-size: 11px;
	}

	.games-grid {
		grid-auto-columns: 110px;
		gap: 8px;
	}

	.game-card__name {
		font-size: 11px;
		padding: 8px 4px;
	}

	.footer__cols {
		grid-template-columns: 1fr;
	}

	.content {
		padding: 18px 14px;
	}
}

.nav-list li:nth-child(4),
.nav-list li:nth-child(5),
.nav-list li:nth-child(6) {
	display: none;
}

.burger-drawer__nav ul li:nth-child(4),
.burger-drawer__nav ul li:nth-child(5),
.burger-drawer__nav ul li:nth-child(6) {
	display: none;
}