*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--bg: #080c24;
	--bg-alt: #0c1130;
	--bg-card: #111640;
	--bg-panel: #0a0e2a;
	--bg-header: #060a1e;
	--accent: #0dff5c;
	--accent-hover: #2aff75;
	--accent-dim: rgba(13, 255, 92, 0.1);
	--accent-glow: rgba(13, 255, 92, 0.2);
	--cyan: #00d4ff;
	--white: #e8eaf0;
	--muted: #7a7fa8;
	--dim: #484d70;
	--border: rgba(255, 255, 255, 0.06);
	--border-lt: rgba(255, 255, 255, 0.1);
	--font: 'Inter', sans-serif;
	--panel-w: 180px;
	--top-h: 56px;
	--radius: 12px;
	--radius-sm: 8px;
}

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: 6px;
	cursor: pointer;
	transition: all 0.2s;
	white-space: nowrap;
	border: none;
	letter-spacing: 0.3px;
}

.btn-accent {
	background: linear-gradient(135deg, #15ff68 0%, #0dff5c 50%, #00e64a 100%);
	color: #060a1e;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.2),
		0 3px 14px rgba(13, 255, 92, 0.3);
}

.btn-accent:hover {
	transform: translateY(-1px);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.2),
		0 6px 22px rgba(13, 255, 92, 0.45);
}

.btn-outline {
	background: transparent;
	color: var(--white);
	border: 1.5px solid var(--border-lt);
}

.btn-outline:hover {
	border-color: var(--accent);
	color: var(--accent);
}

.btn-xs {
	padding: 9px 18px;
	font-size: 12px;
}

.btn:active {
	transform: translateY(0);
}

/* ── App Banner (mobile only) ── */

.app-banner {
	display: none;
	background: var(--bg-alt);
	border-bottom: 1px solid var(--border);
}

.app-banner-inner {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 14px;
}

.app-banner-close {
	padding: 4px;
	color: var(--dim);
	flex-shrink: 0;
	line-height: 0;
	border-radius: 6px;
	transition: color 0.2s;
}

.app-banner-close:hover {
	color: var(--white);
}

.app-banner-icon {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	flex-shrink: 0;
	background: var(--bg-header);
	border: 1px solid var(--border-lt);
	display: flex;
	align-items: center;
	justify-content: center;
}

.app-banner-info {
	display: flex;
	flex-direction: column;
	flex: 1;
	min-width: 0;
}

.app-banner-info strong {
	font-size: 13px;
	font-weight: 800;
	color: var(--white);
}

.app-banner-info span {
	font-size: 10px;
	color: var(--muted);
}

.app-banner-btn {
	padding: 7px 18px;
	border-radius: 6px;
	border: 1.5px solid var(--accent);
	color: var(--accent);
	font-size: 12px;
	font-weight: 700;
	flex-shrink: 0;
	transition: all 0.2s;
}

.app-banner-btn:hover {
	background: var(--accent-dim);
}

/* ── Nav Overlay ── */

.nav-overlay {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(4, 6, 18, 0.75);
	z-index: 1100;
	backdrop-filter: blur(4px);
	opacity: 0;
	transition: opacity 0.3s;
}

.nav-overlay.is-open {
	display: block;
	opacity: 1;
}

/* ── Nav Drawer ── */

.nav-drawer {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	max-height: 85vh;
	background: linear-gradient(180deg, #0e1238 0%, #080c24 100%);
	z-index: 1200;
	display: none;
	flex-direction: column;
	transform: translateY(100%);
	transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	overflow-y: auto;
	box-shadow: 0 -6px 30px rgba(0, 0, 0, 0.5);
	border-radius: 20px 20px 0 0;
}

.nav-drawer.is-open {
	transform: translateY(0);
}

.nav-drawer-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 18px 12px;
	border-bottom: 1px solid var(--border);
	position: relative;
}

.nav-drawer-head::before {
	content: '';
	position: absolute;
	top: 8px;
	left: 50%;
	transform: translateX(-50%);
	width: 40px;
	height: 4px;
	background: var(--dim);
	border-radius: 2px;
}

.nav-drawer-close {
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid var(--border-lt);
	border-radius: 50%;
	cursor: pointer;
	transition: all 0.2s;
}

.nav-drawer-close:hover {
	background: rgba(255, 255, 255, 0.12);
	border-color: var(--accent);
}

/* ── Drawer Promo ── */

.nav-drawer-promo {
	margin: 14px 14px 0;
	padding: 18px;
	background: linear-gradient(135deg, rgba(13, 255, 92, 0.06) 0%, rgba(0, 212, 255, 0.04) 100%);
	border: 1px solid rgba(13, 255, 92, 0.15);
	border-radius: var(--radius);
	text-align: center;
}

.nav-drawer-promo-label {
	display: block;
	font-size: 12px;
	font-weight: 600;
	color: var(--muted);
	margin-bottom: 6px;
}

.nav-drawer-promo-amount {
	display: block;
	font-size: 22px;
	font-weight: 900;
	color: var(--accent);
	margin-bottom: 12px;
}

.nav-drawer-promo-btn {
	display: block;
	padding: 11px;
	border-radius: 8px;
	background: linear-gradient(135deg, #0dff5c 0%, #00e64a 100%);
	color: #060a1e;
	font-size: 13px;
	font-weight: 800;
	transition: box-shadow 0.2s;
}

.nav-drawer-promo-btn:hover {
	box-shadow: 0 4px 18px rgba(13, 255, 92, 0.4);
}

/* ── Drawer Grid ── */

.nav-drawer-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 8px;
	padding: 16px 14px;
	list-style: none;
}

.nav-drawer-grid li a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 14px 12px;
	border-radius: var(--radius-sm);
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid var(--border);
	color: var(--muted);
	font-size: 12px;
	font-weight: 600;
	transition: all 0.2s;
	position: relative;
}

.nav-drawer-grid li a svg {
	flex-shrink: 0;
	color: var(--accent);
	opacity: 0.6;
	transition: opacity 0.2s;
}

.nav-drawer-grid li a:hover {
	background: var(--accent-dim);
	border-color: rgba(13, 255, 92, 0.2);
	color: var(--white);
}

.nav-drawer-grid li a:hover svg {
	opacity: 1;
}

.nav-drawer-live {
	position: absolute;
	top: 6px;
	right: 6px;
	padding: 1px 6px;
	border-radius: 4px;
	background: var(--accent);
	color: #060a1e;
	font-size: 8px;
	font-weight: 800;
	font-style: normal;
	text-transform: uppercase;
	animation: live-blink 1.5s ease-in-out infinite;
}

/* ── Site Header ── */

.site-header {
	background: var(--bg-header);
	border-bottom: 1px solid var(--border);
	position: sticky;
	top: 0;
	z-index: 1000;
}

.site-header-inner {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 0 16px;
	height: var(--top-h);
}

.site-logo {
	display: flex;
	align-items: center;
	gap: 6px;
	flex-shrink: 0;
}

.site-logo span {
	font-family: 'Silkscreen', monospace;
	font-size: 18px;
	font-weight: 700;
	color: var(--accent);
	letter-spacing: 1px;
}

.site-logo em {
	font-style: normal;
	color: var(--accent);
}

.site-logo-icon {
	flex-shrink: 0;
}

.site-logo-mobile {
	display: flex;
	align-items: center;
	gap: 5px;
}

.site-logo-mobile span {
	font-family: 'Silkscreen', monospace;
	font-size: 16px;
	font-weight: 700;
	color: var(--accent);
	letter-spacing: 1px;
}

.site-logo-mobile em {
	font-style: normal;
	color: var(--accent);
}

.nav-drawer-logo {
	display: flex;
	align-items: center;
	gap: 5px;
}

.nav-drawer-logo span {
	font-family: 'Silkscreen', monospace;
	font-size: 16px;
	font-weight: 700;
	color: var(--accent);
	letter-spacing: 1px;
}

.nav-drawer-logo em {
	font-style: normal;
	color: var(--accent);
}

.site-topnav {
	flex: 1;
	overflow: hidden;
}

.site-topnav ul {
	display: flex;
	gap: 2px;
	overflow-x: auto;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
}

.site-topnav ul::-webkit-scrollbar {
	display: none;
}

.site-topnav ul li a {
	display: flex;
	align-items: center;
	gap: 4px;
	padding: 8px 12px;
	font-size: 12px;
	font-weight: 600;
	color: var(--muted);
	white-space: nowrap;
	border-radius: 6px;
	transition: all 0.2s;
}

.site-topnav ul li a:hover {
	color: var(--white);
	background: rgba(255, 255, 255, 0.05);
}

.site-topnav ul li a[aria-current="page"] {
	color: var(--accent);
}

.topnav-live {
	padding: 1px 5px;
	border-radius: 4px;
	background: #e84538;
	color: #fff;
	font-size: 8px;
	font-weight: 800;
	font-style: normal;
	text-transform: uppercase;
	animation: live-blink 1.5s ease-in-out infinite;
}

@keyframes live-blink {
	0%, 100% { opacity: 1; }
	50% { opacity: 0; }
}

.site-header-actions {
	display: flex;
	gap: 6px;
	flex-shrink: 0;
}

.site-header-mobile {
	display: none;
}

/* ── Site Layout ── */

.site-layout {
	display: flex;
	min-height: calc(100vh - var(--top-h));
}

/* ── Side Panel ── */

.side-panel {
	width: var(--panel-w);
	flex-shrink: 0;
	background: var(--bg-panel);
	border-right: 1px solid var(--border);
	padding: 10px 0;
	position: sticky;
	top: var(--top-h);
	height: calc(100vh - var(--top-h));
	overflow-y: auto;
	scrollbar-width: thin;
	scrollbar-color: var(--border-lt) transparent;
}

.side-panel ul {
	display: flex;
	flex-direction: column;
	gap: 1px;
	padding: 0 8px;
}

.side-panel ul li {
	display: contents;
}

.side-divider {
	height: 1px;
	background: var(--border);
	margin: 8px 16px;
}

.side-link {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 9px 12px;
	border-radius: var(--radius-sm);
	font-size: 13px;
	font-weight: 600;
	color: var(--muted);
	transition: all 0.2s;
}

.side-link svg {
	flex-shrink: 0;
	color: var(--dim);
	transition: color 0.2s;
}

.side-link:hover {
	color: var(--white);
	background: rgba(255, 255, 255, 0.04);
}

.side-link:hover svg {
	color: var(--accent);
}

.side-link-active {
	color: var(--accent);
	background: var(--accent-dim);
}

.side-link-active svg {
	color: var(--accent);
}

/* ── Site Main ── */

.site-main {
	flex: 1;
	padding: 16px;
	display: flex;
	flex-direction: column;
	gap: 22px;
	min-width: 0;
}

/* ── Banner Carousel ── */

.banner-carousel {
	position: relative;
	border-radius: var(--radius);
	overflow: hidden;
}

.banner-track {
	display: flex;
	transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.banner-slide {
	flex: 0 0 50%;
	padding: 0 6px;
	display: block;
}

.banner-slide img {
	width: 100%;
	height: auto;
	border-radius: var(--radius);
	border: 1px solid var(--border-lt);
	display: block;
}

.banner-dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	padding-top: 12px;
}

.banner-dot {
	width: 28px;
	height: 4px;
	border-radius: 2px;
	background: var(--dim);
	cursor: pointer;
	transition: all 0.25s;
	border: none;
}

.banner-dot.is-active {
	background: var(--accent);
}

.banner-arr {
	position: absolute;
	top: 50%;
	transform: translateY(-60%);
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.4);
	border: 1px solid var(--border-lt);
	cursor: pointer;
	z-index: 3;
	transition: all 0.2s;
	backdrop-filter: blur(4px);
}

.banner-arr:hover {
	background: rgba(0, 0, 0, 0.6);
	border-color: var(--accent);
}

.banner-arr-prev {
	left: 12px;
}

.banner-arr-next {
	right: 12px;
}

/* ── Catalog (Games) ── */

.catalog {
	display: flex;
	flex-direction: column;
	gap: 14px;
	content-visibility: auto;
	contain-intrinsic-size: auto 600px;
}

.catalog-head {
	display: flex;
	align-items: center;
	gap: 16px;
}

.catalog-title {
	font-size: 18px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--white);
}

.catalog-head::after {
	content: '';
	flex: 1;
	height: 1px;
	background: var(--border-lt);
	order: 1;
}

.catalog-all {
	font-size: 13px;
	color: var(--muted);
	font-weight: 600;
	transition: color 0.2s;
	flex-shrink: 0;
	order: 2;
}

.catalog-all:hover {
	color: var(--accent);
}

.catalog-grid {
	display: grid;
	grid-template-rows: repeat(2, 1fr);
	grid-auto-flow: column;
	grid-auto-columns: 150px;
	gap: 12px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: thin;
	scrollbar-color: var(--accent-dim) transparent;
	padding-bottom: 6px;
}

.catalog-grid::-webkit-scrollbar {
	height: 4px;
}

.catalog-grid::-webkit-scrollbar-track {
	background: transparent;
}

.catalog-grid::-webkit-scrollbar-thumb {
	background: rgba(13, 255, 92, 0.2);
	border-radius: 2px;
}

.catalog-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;
}

.catalog-card:hover {
	transform: translateY(-4px);
}

.catalog-thumb-wrap {
	position: relative;
	overflow: hidden;
}

.catalog-thumb {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	display: block;
	background: var(--bg-alt);
	transition: transform 0.3s;
}

.catalog-card:hover .catalog-thumb {
	transform: scale(1.06);
}

.catalog-overlay {
	position: absolute;
	inset: 0;
	background: rgba(6, 10, 30, 0.7);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	opacity: 0;
	transition: opacity 0.25s;
}

.catalog-card:hover .catalog-overlay {
	opacity: 1;
}

.catalog-play {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 80%;
	padding: 10px;
	border-radius: 8px;
	background: var(--accent);
	color: #060a1e;
	font-family: var(--font);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	box-shadow: 0 4px 14px rgba(13, 255, 92, 0.35);
	transform: translateY(6px);
	transition: transform 0.25s, box-shadow 0.2s;
}

.catalog-card:hover .catalog-play {
	transform: translateY(0);
}

.catalog-play:hover {
	box-shadow: 0 6px 22px rgba(13, 255, 92, 0.55);
}

.catalog-demo {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 80%;
	padding: 8px;
	border-radius: 8px;
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: var(--white);
	font-family: var(--font);
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.3px;
	transform: translateY(6px);
	transition: transform 0.25s, border-color 0.2s;
}

.catalog-card:hover .catalog-demo {
	transform: translateY(0);
}

.catalog-demo:hover {
	border-color: var(--accent);
	color: var(--accent);
}

.catalog-name {
	display: block;
	padding: 10px;
	font-size: 12px;
	font-weight: 600;
	color: var(--muted);
	text-align: center;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* ── Main Text (Content) ── */

.main-text {
	width: 100%;
	color: var(--muted);
	line-height: 1.7;
	font-size: 15px;
	content-visibility: auto;
	contain-intrinsic-size: auto 900px;
}

.main-text h1 {
	font-size: 26px;
	font-weight: 800;
	color: var(--white);
	line-height: 1.2;
	margin-bottom: 18px;
}

.main-text h2 {
	font-size: 21px;
	font-weight: 700;
	color: var(--white);
	margin-top: 28px;
	margin-bottom: 12px;
}

.main-text h3 {
	font-size: 17px;
	font-weight: 700;
	color: var(--white);
	margin-top: 22px;
	margin-bottom: 10px;
}

.main-text p {
	margin-bottom: 14px;
}

.main-text img {
	display: block;
	max-width: 100%;
	height: auto;
	margin: 0 auto 18px;
	border-radius: var(--radius);
	border: 1px solid var(--border-lt);
}

.main-text blockquote {
	border-left: 3px solid var(--accent);
	padding: 12px 20px;
	margin: 18px 0;
	background: var(--accent-dim);
	border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
	font-style: italic;
}

.main-text table {
	width: 100%;
	border-collapse: collapse;
	margin: 18px 0;
}

.main-text th,
.main-text td {
	padding: 12px 16px;
	text-align: left;
	border-bottom: 1px solid var(--border);
	font-size: 14px;
}

.main-text th {
	font-weight: 700;
	color: var(--white);
	background: rgba(13, 255, 92, 0.05);
}

.main-text tbody tr:hover {
	background: rgba(13, 255, 92, 0.03);
}

.main-text ul {
	margin: 14px 0;
	padding-left: 22px;
	list-style: disc;
}

.main-text ul li {
	margin-bottom: 6px;
}

.main-text ol {
	margin: 14px 0;
	padding-left: 22px;
	list-style: decimal;
}

.main-text ol li {
	margin-bottom: 6px;
}

/* ── Site Footer ── */

.site-footer {
	background: linear-gradient(180deg, #060a1e 0%, #040714 100%);
	border-top: 1px solid var(--border-lt);
	padding: 36px 20px 22px;
	content-visibility: auto;
	contain-intrinsic-size: auto 350px;
}

.site-footer-inner {
	max-width: 1100px;
	margin: 0 auto;
}

.site-footer-brand {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 28px;
}

.site-footer-logo {
	display: flex;
	align-items: center;
	gap: 6px;
}

.site-footer-logo span {
	font-family: 'Silkscreen', monospace;
	font-size: 16px;
	font-weight: 700;
	color: var(--accent);
	letter-spacing: 1px;
}

.site-footer-logo em {
	font-style: normal;
	color: var(--accent);
}

.site-footer-tagline {
	font-size: 12px;
	color: var(--muted);
	line-height: 1.5;
}

.site-footer-cols {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px;
	padding-bottom: 24px;
	border-bottom: 1px solid var(--border);
}

.site-footer-heading {
	display: block;
	font-size: 13px;
	font-weight: 700;
	color: var(--white);
	margin-bottom: 12px;
}

.site-footer-col ul {
	display: flex;
	flex-direction: column;
	gap: 7px;
}

.site-footer-col ul li a {
	font-size: 12px;
	color: var(--muted);
	transition: color 0.2s;
}

.site-footer-col ul li a:hover {
	color: var(--accent);
}

.site-footer-apps {
	display: flex;
	align-items: center;
	gap: 20px;
	padding-top: 24px;
	margin-top: 24px;
	border-top: 1px solid var(--border);
}

.site-footer-apps-label {
	font-size: 13px;
	font-weight: 600;
	color: var(--muted);
	flex-shrink: 0;
}

.site-footer-apps-btns {
	display: flex;
	gap: 10px;
}

.app-badge {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid var(--border-lt);
	transition: all 0.2s;
}

.app-badge:hover {
	border-color: var(--accent);
	background: var(--accent-dim);
}

.app-badge svg {
	flex-shrink: 0;
}

.app-badge-text {
	display: flex;
	flex-direction: column;
}

.app-badge-text span {
	font-size: 9px;
	color: var(--muted);
	line-height: 1.2;
}

.app-badge-text strong {
	font-size: 13px;
	font-weight: 700;
	color: var(--white);
	line-height: 1.2;
}

.site-footer-legal {
	max-width: 1100px;
	margin: 0 auto;
	text-align: center;
	padding-top: 20px;
}

.site-footer-legal p {
	font-size: 10px;
	color: var(--muted);
	line-height: 1.7;
	margin-bottom: 6px;
}

.site-footer-legal p:last-child {
	margin-bottom: 0;
	font-weight: 600;
	color: var(--white);
}

/* ── Mobile Bar ── */

.mobile-bar {
	display: none;
}

/* ── Responsive 1024 ── */

@media (max-width: 1024px) {
	.site-topnav ul li:nth-child(n+7) {
		display: none;
	}

	.side-panel {
		width: 160px;
	}

	.side-link {
		font-size: 12px;
		padding: 8px 10px;
	}

	.catalog-grid {
		grid-auto-columns: 135px;
	}

	.banner-arr {
		width: 32px;
		height: 32px;
	}
}

/* ── Responsive 768 ── */

@media (max-width: 768px) {
	.side-panel {
		display: none;
	}

	.site-topnav {
		display: none;
	}

	.site-header-actions {
		display: none;
	}

	.site-logo {
		display: none;
	}

	.site-header-mobile {
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
	}

	.site-logo-mobile span {
		font-size: 16px;
	}

	.site-header-mobile-btns {
		display: flex;
		gap: 6px;
	}

	.site-header-inner {
		padding: 0 14px;
		height: 58px;
	}

	.nav-drawer {
		display: flex;
	}

	.app-banner {
		display: block;
	}

	.site-layout {
		flex-direction: column;
	}

	.site-main {
		padding: 14px 12px 80px;
		gap: 16px;
	}

	.mobile-bar {
		display: block;
		position: fixed;
		bottom: 0;
		left: 0;
		right: 0;
		background: linear-gradient(180deg, #0e1238 0%, #080c24 100%);
		border-top: 1px solid var(--border-lt);
		z-index: 900;
		box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
		padding-bottom: env(safe-area-inset-bottom, 0);
	}

	.mobile-bar ul {
		display: flex;
		justify-content: space-around;
		align-items: flex-end;
		height: 60px;
		padding: 0 6px;
	}

	.mobile-bar ul li {
		flex: 1;
		display: flex;
		justify-content: center;
	}

	.mobile-bar ul li a {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 3px;
		font-size: 10px;
		font-weight: 600;
		color: var(--muted);
		transition: color 0.2s;
		padding: 6px 0 8px;
	}

	.mobile-bar ul li a svg {
		flex-shrink: 0;
	}

	.mobile-bar ul li a:hover {
		color: var(--accent);
	}

	.mobile-bar-fab {
		display: flex !important;
		align-items: center !important;
		justify-content: center !important;
		width: 52px !important;
		height: 52px !important;
		border-radius: 16px !important;
		background: linear-gradient(135deg, #15ff68 0%, #0dff5c 50%, #00cc44 100%) !important;
		color: #060a1e !important;
		box-shadow: 0 4px 20px rgba(13, 255, 92, 0.4) !important;
		margin-bottom: 10px !important;
		flex-direction: column !important;
		padding: 0 !important;
		gap: 2px !important;
		font-size: 9px !important;
		font-weight: 800 !important;
		transition: box-shadow 0.2s !important;
	}

	.mobile-bar-fab span {
		color: #060a1e !important;
	}

	.mobile-bar-fab svg {
		stroke: #060a1e !important;
	}

	.mobile-bar-fab:hover {
		box-shadow: 0 6px 28px rgba(13, 255, 92, 0.6) !important;
	}

	body {
		padding-bottom: 60px;
	}

	.banner-slide {
		flex: 0 0 100%;
		padding: 0;
	}

	.banner-slide img {
		border-radius: var(--radius-sm);
	}

	.banner-arr {
		display: none;
	}

	.catalog-grid {
		grid-auto-columns: 120px;
		gap: 10px;
	}

	.catalog-title {
		font-size: 16px;
	}

	.main-text h1 {
		font-size: 22px;
	}

	.main-text table {
		display: block;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

	.site-footer {
		padding: 28px 14px 20px;
	}

	.site-footer-cols {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
		text-align: center;
	}

	.site-footer-col ul {
		align-items: center;
	}

	.site-footer-brand {
		align-items: center;
		text-align: center;
	}

	.site-footer-apps {
		flex-direction: column;
		gap: 12px;
	}

	.site-footer-apps-btns {
		width: 100%;
		justify-content: center;
	}
}

/* ── Responsive 480 ── */

@media (max-width: 480px) {
	.site-header-inner {
		padding: 0 10px;
		height: 54px;
	}

	.site-logo-mobile span {
		font-size: 14px;
	}

	.site-logo-mobile .site-logo-flame {
		width: 14px;
		height: 18px;
	}

	.btn-xs {
		padding: 7px 14px;
		font-size: 11px;
	}

	.catalog-grid {
		grid-auto-columns: 105px;
		gap: 8px;
	}

	.catalog-name {
		font-size: 10px;
		padding: 8px 4px;
	}

	.catalog-play {
		padding: 8px;
		font-size: 10px;
	}

	.catalog-demo {
		padding: 6px;
		font-size: 9px;
	}

	.main-text h1 {
		font-size: 20px;
	}

	.site-footer-cols {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.site-footer-apps-btns {
		flex-direction: column;
	}

	.app-badge {
		justify-content: center;
	}
}

.site-topnav ul li:nth-last-child(-n+3) {
	display: none;
}