*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--bg: #0a0b1a;
	--bg-light: #12132a;
	--bg-card: #161838;
	--bg-header: #0e1028;
	--bg-sidebar: #0c0d22;
	--pink: #d946ef;
	--pink-hover: #e560f5;
	--pink-dim: rgba(217, 70, 239, 0.15);
	--purple: #7c3aed;
	--purple-hover: #8b5cf6;
	--purple-dim: rgba(124, 58, 237, 0.15);
	--purple-glow: rgba(124, 58, 237, 0.25);
	--white: #eeedf5;
	--gray: #8a89a8;
	--gray-dim: #5a596e;
	--border: rgba(255, 255, 255, 0.06);
	--border-light: rgba(255, 255, 255, 0.1);
	--font: 'Inter', sans-serif;
	--sidebar-w: 72px;
	--header-h: 60px;
	--radius: 14px;
	--radius-sm: 10px;
}

html {
	font-size: 16px;
	scroll-behavior: smooth;
}

body {
	font-family: var(--font);
	background: var(--bg);
	color: var(--white);
	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: 8px;
	cursor: pointer;
	transition: all 0.2s;
	white-space: nowrap;
	border: none;
	letter-spacing: 0.3px;
	position: relative;
	overflow: hidden;
}

.btn--pink {
	background: linear-gradient(135deg, #e560f5 0%, #d946ef 50%, #c026d3 100%);
	color: #fff;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.2),
		inset 0 -2px 0 rgba(0, 0, 0, 0.15),
		0 4px 16px rgba(217, 70, 239, 0.35);
}

.btn--pink::before {
	content: '';
	position: absolute;
	top: 1px;
	left: 8%;
	right: 8%;
	height: 40%;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
	border-radius: 7px 7px 50% 50%;
	pointer-events: none;
}

.btn--pink: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.15),
		0 6px 24px rgba(217, 70, 239, 0.5);
}

.btn--outline {
	background: transparent;
	color: var(--white);
	border: 1.5px solid var(--border-light);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.btn--outline:hover {
	border-color: var(--pink);
	color: var(--pink);
	box-shadow: 0 2px 12px rgba(217, 70, 239, 0.15);
}

.btn--sm {
	padding: 7px 16px;
	font-size: 11px;
}

.btn--lg {
	padding: 14px 36px;
	font-size: 15px;
	letter-spacing: 0.5px;
}

.btn:active {
	transform: translateY(0);
}

/* ── Burger Overlay ── */

.burger-overlay {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(5, 5, 15, 0.7);
	z-index: 1100;
	backdrop-filter: blur(4px);
	opacity: 0;
	transition: opacity 0.3s;
}

.burger-overlay.is-open {
	display: block;
	opacity: 1;
}

/* ── Burger Drawer ── */

.burger-drawer {
	position: fixed;
	top: 0;
	left: -340px;
	width: 320px;
	height: 100%;
	background: linear-gradient(180deg, #111230 0%, #0a0b1e 100%);
	z-index: 1200;
	display: flex;
	flex-direction: column;
	transition: left 0.32s cubic-bezier(0.4, 0, 0.2, 1);
	overflow-y: auto;
	box-shadow: 6px 0 30px rgba(0, 0, 0, 0.4);
}

.burger-drawer.is-open {
	left: 0;
}

.burger-drawer__close {
	position: absolute;
	top: 14px;
	left: 14px;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid var(--border-light);
	border-radius: 50%;
	cursor: pointer;
	z-index: 2;
	transition: all 0.2s;
}

.burger-drawer__close:hover {
	background: rgba(255, 255, 255, 0.15);
	border-color: var(--pink);
}

/* ── Drawer Promo ── */

.burger-drawer__promo {
	margin: 64px 16px 0;
	padding: 20px;
	background: linear-gradient(180deg, #1a1b40 0%, #12133a 100%);
	border: 1px solid rgba(124, 58, 237, 0.25);
	border-radius: var(--radius);
	text-align: center;
}

.burger-drawer__promo-header {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	margin-bottom: 4px;
}

.burger-drawer__promo-header strong {
	font-size: 15px;
	font-weight: 700;
	color: var(--white);
}

.burger-drawer__promo-star {
	font-size: 14px;
	color: var(--pink);
}

.burger-drawer__promo-amount {
	display: block;
	font-size: 24px;
	font-weight: 900;
	color: var(--pink);
	margin: 4px 0 6px;
}

.burger-drawer__promo-sub {
	font-size: 12px;
	color: var(--gray);
	margin-bottom: 14px;
}

.burger-drawer__promo-steps {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-bottom: 14px;
	padding: 14px 0;
	border-top: 1px dashed rgba(255, 255, 255, 0.08);
	border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}

.burger-drawer__step {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
}

.burger-drawer__step-icon {
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	font-size: 22px;
}

.burger-drawer__step-icon--green {
	background: rgba(74, 222, 128, 0.15);
}

.burger-drawer__step-icon--red {
	background: rgba(248, 113, 113, 0.15);
}

.burger-drawer__step-icon--purple {
	background: rgba(192, 132, 252, 0.15);
}

.burger-drawer__step span {
	font-size: 11px;
	font-weight: 700;
	color: var(--gray);
	line-height: 1.3;
	text-align: center;
}

.burger-drawer__promo-cta {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	padding: 12px;
	border-radius: 50px;
	background: linear-gradient(135deg, rgba(124, 58, 237, 0.35) 0%, rgba(217, 70, 239, 0.2) 100%);
	border: 1px solid rgba(124, 58, 237, 0.35);
	color: var(--white);
	font-size: 14px;
	font-weight: 700;
	transition: all 0.2s;
}

.burger-drawer__promo-cta:hover {
	background: linear-gradient(135deg, rgba(124, 58, 237, 0.5) 0%, rgba(217, 70, 239, 0.3) 100%);
	border-color: var(--purple);
}

/* ── Drawer Grid ── */

.burger-drawer__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	padding: 20px 16px;
	list-style: none;
}

.burger-drawer__grid li {
	display: contents;
}

.burger-drawer__grid-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 18px 8px;
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.06);
	color: var(--gray);
	font-size: 12px;
	font-weight: 600;
	transition: all 0.2s;
	text-align: center;
}

.burger-drawer__grid-item svg {
	color: var(--purple);
	opacity: 0.8;
	transition: all 0.2s;
}

.burger-drawer__grid-item:hover {
	background: var(--purple-dim);
	border-color: rgba(124, 58, 237, 0.25);
	color: var(--white);
}

.burger-drawer__grid-item:hover svg {
	opacity: 1;
	color: var(--pink);
}

/* ── Drawer Links ── */

.burger-drawer__links {
	display: flex;
	flex-direction: column;
	padding: 0 16px 24px;
	list-style: none;
}

.burger-drawer__links li a {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 16px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	color: var(--gray);
	transition: color 0.2s;
	font-size: 14px;
	font-weight: 600;
}

.burger-drawer__links li:last-child a {
	border-bottom: none;
}

.burger-drawer__links li a:hover {
	color: var(--white);
}

.burger-drawer__link > svg:first-child {
	flex-shrink: 0;
	color: var(--purple);
	opacity: 0.6;
}

.burger-drawer__link-label {
	flex: 1;
	font-size: 14px;
	font-weight: 600;
}

.burger-drawer__link-text {
	display: flex;
	flex-direction: column;
	gap: 2px;
	flex: 1;
}

.burger-drawer__link-text strong {
	font-size: 14px;
	font-weight: 700;
	color: var(--white);
}

.burger-drawer__link-text span {
	font-size: 11px;
	color: var(--gray-dim);
}

.burger-drawer__link-arrow {
	flex-shrink: 0;
	color: var(--purple) !important;
	opacity: 0.5 !important;
}

/* ── Burger Button ── */

.burger-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	background: var(--pink);
	border: none;
	border-radius: 50%;
	color: #fff;
	cursor: pointer;
	flex-shrink: 0;
	line-height: 0;
	box-shadow: 0 4px 16px rgba(217, 70, 239, 0.4);
	transition: all 0.2s;
}

.burger-btn:hover {
	background: var(--pink-hover);
	box-shadow: 0 6px 24px rgba(217, 70, 239, 0.55);
}

/* ── Header ── */

.header {
	background: var(--bg-header);
	border-bottom: 1px solid var(--border);
	position: sticky;
	top: 0;
	z-index: 1000;
	box-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
}

.header__inner {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 0 20px;
	height: var(--header-h);
	position: relative;
}

.header__logo {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}

.header__logo img {
	max-height: 45px;
	width: auto;
}

.header__search {
	display: flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid var(--border-light);
	border-radius: 50px;
	padding: 8px 16px;
	flex: 1;
	max-width: 380px;
	transition: border-color 0.2s, box-shadow 0.2s;
}

.header__search:focus-within {
	border-color: var(--purple);
	box-shadow: 0 0 0 2px var(--purple-glow);
}

.header__search svg {
	color: var(--gray-dim);
	flex-shrink: 0;
}

.header__search input {
	background: none;
	border: none;
	outline: none;
	font-family: var(--font);
	font-size: 13px;
	color: var(--white);
	width: 100%;
}

.header__search input::placeholder {
	color: var(--gray-dim);
}

.header__random {
	flex-shrink: 0;
	padding: 4px 12px;
	border-radius: 50px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid var(--border-light);
	font-size: 11px;
	font-weight: 600;
	color: var(--gray);
	transition: all 0.2s;
	white-space: nowrap;
}

.header__random:hover {
	background: var(--purple-dim);
	border-color: var(--purple);
	color: var(--white);
}

.header__actions {
	display: flex;
	gap: 8px;
	flex-shrink: 0;
	margin-left: auto;
}

.header__mobile-top {
	display: none;
}

/* ── Layout ── */

.layout {
	display: flex;
	min-height: calc(100vh - var(--header-h));
}

/* ── Desktop Sidebar ── */

.desktop-sidebar {
	width: var(--sidebar-w);
	flex-shrink: 0;
	background: var(--bg-sidebar);
	border-right: 1px solid var(--border);
	padding: 16px 0;
	position: sticky;
	top: var(--header-h);
	height: calc(100vh - var(--header-h));
	display: flex;
	flex-direction: column;
	align-items: center;
}

.desktop-sidebar ul {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	list-style: none;
}

.desktop-sidebar ul li {
	display: contents;
}

.sidebar-icon {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	padding: 10px 4px;
	width: 60px;
	border-radius: var(--radius-sm);
	color: var(--gray-dim);
	font-size: 10px;
	font-weight: 600;
	transition: all 0.2s;
}

.sidebar-icon svg {
	opacity: 0.5;
	transition: opacity 0.2s, color 0.2s, filter 0.2s;
}

.sidebar-icon:hover {
	color: var(--white);
	background: rgba(255, 255, 255, 0.04);
}

.sidebar-icon:hover svg {
	opacity: 1;
	color: var(--purple);
}

.sidebar-icon--active {
	color: var(--white);
}

.sidebar-icon--active svg {
	opacity: 1;
	color: var(--pink);
	filter: drop-shadow(0 0 6px rgba(217, 70, 239, 0.4));
}

/* ── Page Content ── */

.page-content {
	flex: 1;
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 24px;
	min-width: 0;
}

/* ── Hero ── */

.hero-slider {
	position: relative;
	border-radius: var(--radius);
	overflow: hidden;
}

.hero-slider__track {
	display: flex;
	gap: 12px;
}

.hero-slide {
	flex: 1;
	min-width: 0;
	aspect-ratio: 2 / 1;
	position: relative;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: var(--radius);
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-slide::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 50%;
	background: linear-gradient(0deg, rgba(10, 11, 26, 0.8) 0%, transparent 100%);
	z-index: 1;
	pointer-events: none;
}

.hero-slide--1 {
	background-image: url('/assets/img/slide-1.webp');
	background-color: #1a1840;
}

.hero-slide--2 {
	background-image: url('/assets/img/slide-2.webp');
	background-color: #0a1030;
}

.hero-slide__content {
	position: absolute;
	bottom: 24px;
	left: 0;
	right: 0;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 0 24px;
}

.hero-slide__sub {
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 4px;
}

.hero-slide__title {
	display: block;
	font-size: 28px;
	font-weight: 900;
	color: var(--pink);
	text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
	line-height: 1.15;
	text-transform: uppercase;
}

.hero-slider__dots {
	display: none;
}

/* ── Promo Banner ── */

.promo-banner {
	display: flex;
	align-items: center;
	height: 180px;
	background-color: #0e1040;
	background-image: url('/assets/img/welcome-baner.webp');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border: 1px solid rgba(124, 58, 237, 0.25);
	border-radius: var(--radius);
	overflow: hidden;
	position: relative;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.promo-banner__text {
	padding: 24px 32px;
	flex-shrink: 0;
	position: relative;
	z-index: 1;
}

.promo-banner__label {
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: var(--white);
	margin-bottom: 4px;
}

.promo-banner__amount {
	display: block;
	font-size: 22px;
	font-weight: 900;
	color: var(--pink);
}

.promo-banner__visual {
	flex: 1;
}

.promo-banner__actions {
	display: flex;
	gap: 10px;
	flex-shrink: 0;
	padding: 24px 28px;
	position: relative;
	z-index: 1;
}

.promo-banner__btn {
	padding: 14px 36px;
	border-radius: 50px;
	font-size: 14px;
	font-weight: 700;
	color: var(--white);
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: all 0.2s;
	white-space: nowrap;
}

.promo-banner__btn:hover {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.2);
}

.promo-banner__btn--primary {
	background: linear-gradient(135deg, rgba(124, 58, 237, 0.5) 0%, rgba(100, 50, 200, 0.4) 100%);
	border-color: rgba(124, 58, 237, 0.4);
}

.promo-banner__btn--primary:hover {
	background: linear-gradient(135deg, rgba(124, 58, 237, 0.65) 0%, rgba(100, 50, 200, 0.55) 100%);
	border-color: var(--purple);
}

/* ── 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: 22px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.games-section__all {
	font-size: 14px;
	color: var(--gray);
	font-weight: 600;
	transition: color 0.2s;
}

.games-section__all:hover {
	color: var(--pink);
}

.games-grid {
	display: grid;
	grid-template-rows: repeat(2, 1fr);
	grid-auto-flow: column;
	grid-auto-columns: 155px;
	gap: 12px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: thin;
	scrollbar-color: var(--purple-dim) transparent;
	padding-bottom: 8px;
}

.games-grid::-webkit-scrollbar {
	height: 4px;
}

.games-grid::-webkit-scrollbar-track {
	background: transparent;
}

.games-grid::-webkit-scrollbar-thumb {
	background: rgba(124, 58, 237, 0.3);
	border-radius: 2px;
}

.game-card {
	display: flex;
	flex-direction: column;
	border-radius: var(--radius);
	overflow: hidden;
	background: var(--bg-card);
	cursor: pointer;
	transition: transform 0.2s;
	scroll-snap-align: start;
}

.game-card:hover {
	transform: translateY(-4px);
}

.game-card__wrap {
	position: relative;
	overflow: hidden;
}

.game-card__badge {
	position: absolute;
	top: 8px;
	left: 8px;
	z-index: 3;
	padding: 3px 10px;
	background: #22c55e;
	border-radius: 6px;
	font-size: 10px;
	font-weight: 800;
	color: #fff;
	text-transform: uppercase;
}

.game-card__fav {
	position: absolute;
	top: 8px;
	right: 8px;
	z-index: 3;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.4);
	color: var(--gray);
	transition: all 0.2s;
}

.game-card__fav:hover {
	color: var(--pink);
	background: rgba(0, 0, 0, 0.6);
}

.game-card__img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	display: block;
	background: var(--bg-light);
	transition: transform 0.3s;
}

.game-card:hover .game-card__img {
	transform: scale(1.06);
}

.game-card__hover {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.7) 100%);
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding-bottom: 16px;
	opacity: 0;
	transition: opacity 0.25s;
}

.game-card:hover .game-card__hover {
	opacity: 1;
}

.game-card__play-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--pink);
	box-shadow: 0 4px 16px rgba(217, 70, 239, 0.5);
	transform: translateY(8px);
	transition: transform 0.25s, box-shadow 0.2s;
}

.game-card__play-btn svg {
	margin-left: 2px;
}

.game-card:hover .game-card__play-btn {
	transform: translateY(0);
}

.game-card__play-btn:hover {
	box-shadow: 0 6px 24px rgba(217, 70, 239, 0.7);
}

.game-card__name {
	display: block;
	padding: 10px 10px;
	font-size: 12px;
	font-weight: 600;
	color: var(--gray);
	text-align: center;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* ── Content ── */

.content {
	width: 100%;
	color: var(--gray);
	line-height: 1.7;
	font-size: 15px;
	content-visibility: auto;
	contain-intrinsic-size: auto 900px;
}

.content h1 {
	font-size: 26px;
	font-weight: 800;
	color: var(--white);
	line-height: 1.2;
	margin-bottom: 18px;
}

.content h2 {
	font-size: 21px;
	font-weight: 700;
	color: var(--white);
	margin-top: 28px;
	margin-bottom: 12px;
}

.content h3 {
	font-size: 17px;
	font-weight: 700;
	color: var(--white);
	margin-top: 22px;
	margin-bottom: 10px;
}

.content p {
	margin-bottom: 14px;
}

.content img {
	display: block;
	margin: 0 auto;
	max-width: 100%;
	border-radius: var(--radius);
	margin-bottom: 18px;
	border: 1px solid var(--border-light);
}

.content blockquote {
	border-left: 3px solid var(--purple);
	padding: 12px 20px;
	margin: 18px 0;
	background: var(--purple-dim);
	border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
	font-style: italic;
}

.content table {
	width: 100%;
	border-collapse: collapse;
	margin: 18px 0;
}

.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(--white);
	background: rgba(124, 58, 237, 0.08);
}

.content tbody tr:hover {
	background: rgba(124, 58, 237, 0.04);
}

.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, #0c0d24 0%, #080918 100%);
	border-top: 1px solid var(--border-light);
	padding: 40px 20px 24px;
	content-visibility: auto;
	contain-intrinsic-size: auto 400px;
}

.footer__inner {
	max-width: 1100px;
	margin: 0 auto;
}

.footer__cols {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
	padding-bottom: 28px;
	border-bottom: 1px solid var(--border);
}

.footer__col-title {
	display: block;
	font-size: 14px;
	font-weight: 700;
	color: var(--white);
	margin-bottom: 14px;
}

.footer__col ul {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.footer__col ul li a {
	font-size: 13px;
	color: var(--gray-dim);
	transition: color 0.2s;
}

.footer__col ul li a:hover {
	color: var(--pink);
}

.footer__legal {
	max-width: 1100px;
	margin: 0 auto;
	text-align: center;
	padding-top: 24px;
}

.footer__legal p {
	font-size: 11px;
	color: var(--gray-dim);
	line-height: 1.7;
	margin-bottom: 8px;
}

.footer__legal p:last-child {
	margin-bottom: 0;
	font-weight: 600;
	color: var(--gray);
}

/* ── Bottom Nav ── */

.bottom-nav {
	display: none;
}

/* ── Responsive 1024 ── */

@media (max-width: 1024px) {
	.header__search {
		max-width: 300px;
	}

	.header__random {
		display: none;
	}

	.games-grid {
		grid-auto-columns: 140px;
	}

	.hero-slide__title {
		font-size: 22px;
	}
}

/* ── Responsive 768 ── */

@media (max-width: 768px) {
	.desktop-sidebar {
		display: none;
	}

	.header__search {
		display: none;
	}

	.header__actions {
		display: none;
	}

	.header__logo {
		display: none;
	}

	.header__mobile-top {
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
	}

	.header__mobile-logo img {
		max-height: 35px;
		width: auto;
	}

	.header__mobile-btns {
		display: flex;
		gap: 8px;
	}

	.header__mobile-btns .btn--sm {
		padding: 10px 20px;
		font-size: 13px;
	}

	.header__inner {
		padding: 0 14px;
		height: 56px;
	}

	.burger-btn {
		display: none;
	}

	.layout {
		flex-direction: column;
	}

	.page-content {
		padding: 16px 12px 80px;
		gap: 18px;
	}

	.bottom-nav {
		display: block;
		position: fixed;
		bottom: 0;
		left: 0;
		right: 0;
		background: linear-gradient(180deg, #111230 0%, #0a0b1e 100%);
		border-top: 1px solid var(--border-light);
		z-index: 900;
		box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
		padding-bottom: env(safe-area-inset-bottom, 0);
	}

	.bottom-nav ul {
		display: flex;
		justify-content: space-around;
		align-items: flex-end;
		height: 60px;
		padding: 0 8px;
	}

	.bottom-nav ul li {
		flex: 1;
		display: flex;
		justify-content: center;
	}

	.bottom-nav ul li a {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 4px;
		font-size: 10px;
		font-weight: 600;
		color: var(--gray-dim);
		transition: color 0.2s;
		padding: 6px 0 8px;
	}

	.bottom-nav ul li a svg {
		flex-shrink: 0;
	}

	.bottom-nav ul li a:hover {
		color: var(--pink);
	}

	.bottom-nav__fab {
		display: flex !important;
		align-items: center !important;
		justify-content: center !important;
		width: 52px !important;
		height: 52px !important;
		border-radius: 50% !important;
		background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 60%, #6d28d9 100%) !important;
		color: #fff !important;
		box-shadow:
			0 4px 20px rgba(124, 58, 237, 0.5),
			inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
		margin-bottom: 10px !important;
		flex-direction: row !important;
		padding: 0 !important;
		gap: 0 !important;
		transition: box-shadow 0.2s !important;
	}

	.bottom-nav__fab:hover {
		box-shadow:
			0 6px 28px rgba(124, 58, 237, 0.65),
			inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
	}

	body {
		padding-bottom: 60px;
	}

	.hero-slider {
		overflow: hidden;
	}

	.hero-slider__track {
		gap: 0;
		transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	}

	.hero-slide {
		flex: none;
		width: 100%;
		aspect-ratio: 2 / 1;
	}

	.hero-slide::before {
		height: 60%;
		background: linear-gradient(0deg, rgba(10, 11, 26, 0.85) 0%, transparent 100%);
	}

	.hero-slide__title {
		font-size: 22px;
	}

	.hero-slide__sub {
		font-size: 12px;
	}

	.hero-slider__dots {
		display: flex;
		position: absolute;
		bottom: 12px;
		left: 50%;
		transform: translateX(-50%);
		gap: 6px;
		z-index: 3;
	}

	.hero-slider__dot {
		width: 10px;
		height: 10px;
		border-radius: 50%;
		background: rgba(255, 255, 255, 0.25);
		cursor: pointer;
		transition: all 0.25s;
		border: none;
	}

	.hero-slider__dot--wide.is-active {
		width: 28px;
		border-radius: 5px;
	}

	.hero-slider__dot.is-active {
		background: var(--pink);
	}

	.promo-banner {
		flex-direction: column;
		height: auto;
		padding: 18px 16px;
		background-position: center;
		gap: 12px;
	}

	.promo-banner::before {
		content: '';
		position: absolute;
		inset: 0;
		background: rgba(10, 11, 26, 0.75);
		z-index: 0;
	}

	.promo-banner__text {
		padding: 0;
		text-align: center;
		z-index: 1;
	}

	.promo-banner__visual {
		display: none;
	}

	.promo-banner__actions {
		width: 100%;
		padding: 0;
		z-index: 1;
	}

	.promo-banner__btn {
		flex: 1;
		text-align: center;
		padding: 10px 16px;
		font-size: 13px;
	}

	.games-grid {
		grid-auto-columns: 120px;
		gap: 10px;
	}

	.games-section__title {
		font-size: 18px;
	}

	.content h1 {
		font-size: 22px;
	}

	.content table {
		display: block;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

	.footer {
		padding: 28px 16px 20px;
	}

	.footer__cols {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
		text-align: center;
	}

	.footer__col ul {
		align-items: center;
	}
}

/* ── Responsive 480 ── */

@media (max-width: 480px) {
	.header__inner {
		padding: 0 10px;
		height: 48px;
	}

	.header__mobile-logo img {
		max-height: 35px;
	}

	.header__mobile-btns .btn--sm {
		padding: 8px 16px;
		font-size: 12px;
	}

	.hero-slide {
		aspect-ratio: 1.6 / 1;
	}

	.hero-slide__title {
		font-size: 20px;
	}

	.games-grid {
		grid-auto-columns: 105px;
		gap: 8px;
	}

	.game-card__name {
		font-size: 10px;
		padding: 8px 4px;
	}

	.game-card__play-btn {
		width: 40px;
		height: 40px;
	}

	.game-card__play-btn svg {
		width: 18px;
		height: 18px;
	}

	.promo-banner__amount {
		font-size: 18px;
	}

	.footer__cols {
		grid-template-columns: 1fr;
		gap: 18px;
	}
}

.desktop-sidebar ul li:nth-child(4),
.desktop-sidebar ul li:nth-child(5),
.desktop-sidebar ul li:nth-child(6) {
	display: none;
}

.burger-drawer__grid li:nth-child(4),
.burger-drawer__grid li:nth-child(5),
.burger-drawer__grid li:nth-child(6) {
	display: none;
}
