*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--bg: #0a1428;
	--bg-alt: #0e1a34;
	--bg-card: #121e3a;
	--bg-bar: #081020;
	--hot: #e91e63;
	--hot-hover: #f0356f;
	--hot-dim: rgba(233, 30, 99, 0.12);
	--teal: #00e5a0;
	--teal-dim: rgba(0, 229, 160, 0.1);
	--white: #eaedf2;
	--muted: #8a90b0;
	--dim: #505878;
	--edge: rgba(255, 255, 255, 0.06);
	--edge-lt: rgba(255, 255, 255, 0.1);
	--font: 'Inter', sans-serif;
	--bar-h: 52px;
	--rnd: 12px;
	--rnd-sm: 8px;
	--max-w: 1440px;
}

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 ── */

.f-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 22px;
	font-family: var(--font);
	font-size: 13px;
	font-weight: 700;
	border-radius: 6px;
	cursor: pointer;
	transition: all 0.2s;
	white-space: nowrap;
	border: none;
}

.f-btn-hot {
	background: linear-gradient(135deg, #f0356f 0%, #e91e63 50%, #c2185b 100%);
	color: #fff;
	box-shadow: 0 3px 14px rgba(233, 30, 99, 0.3);
}

.f-btn-hot:hover {
	transform: translateY(-1px);
	box-shadow: 0 6px 22px rgba(233, 30, 99, 0.45);
}

.f-btn-edge {
	background: transparent;
	color: var(--white);
	border: 1.5px solid var(--edge-lt);
}

.f-btn-edge:hover {
	border-color: var(--hot);
	color: var(--hot);
}

.f-btn-sm {
	padding: 8px 16px;
	font-size: 12px;
}

.f-btn-full {
	width: 100%;
	justify-content: center;
}

.f-btn:active {
	transform: translateY(0);
}

/* ── App Strip (mobile) ── */

.app-strip {
	display: none;
	background: var(--bg-alt);
	border-bottom: 1px solid var(--edge);
}

.app-strip-inner {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 14px;
}

.app-strip-x {
	padding: 4px;
	color: var(--dim);
	flex-shrink: 0;
	line-height: 0;
}

.app-strip-logo {
	width: 36px;
	height: 36px;
	border-radius: 10px;
	background: linear-gradient(135deg, #f0356f 0%, #e91e63 50%, #c2185b 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	font-weight: 900;
	color: #fff;
	flex-shrink: 0;
	line-height: 1;
}

.app-strip-info {
	display: flex;
	flex-direction: column;
	flex: 1;
}

.app-strip-info strong {
	font-size: 13px;
	color: var(--white);
}

.app-strip-info span {
	font-size: 10px;
	color: var(--muted);
}

.app-strip-get {
	padding: 7px 18px;
	border-radius: 6px;
	border: 1.5px solid var(--hot);
	color: var(--hot);
	font-size: 12px;
	font-weight: 700;
	flex-shrink: 0;
	transition: all 0.2s;
}

.app-strip-get:hover {
	background: var(--hot-dim);
}

/* ── Dim Layer ── */

.dim-layer {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(4, 8, 18, 0.75);
	z-index: 1100;
	backdrop-filter: blur(4px);
	opacity: 0;
	transition: opacity 0.3s;
}

.dim-layer.is-on {
	display: block;
	opacity: 1;
}

/* ── Fly Menu (Drawer - right) ── */

.fly-menu {
	position: fixed;
	top: 0;
	right: -320px;
	width: 300px;
	height: 100%;
	background: linear-gradient(180deg, #101c3a 0%, #0a1428 100%);
	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.5);
}

.fly-menu.is-on {
	right: 0;
}

.fly-menu-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 18px;
	border-bottom: 1px solid var(--edge);
}

.fly-menu-brand {
	font-size: 22px;
	font-weight: 900;
	color: var(--hot);
}

.fly-menu-brand em {
	font-style: normal;
	color: var(--white);
}

.fly-menu-x {
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid var(--edge-lt);
	border-radius: 50%;
	cursor: pointer;
	transition: all 0.2s;
}

.fly-menu-x:hover {
	background: rgba(255, 255, 255, 0.12);
	border-color: var(--hot);
}

.fly-menu-offer {
	margin: 14px 14px 0;
	padding: 18px;
	background: linear-gradient(135deg, rgba(233, 30, 99, 0.08) 0%, rgba(0, 229, 160, 0.05) 100%);
	border: 1px solid rgba(233, 30, 99, 0.2);
	border-radius: var(--rnd);
	text-align: center;
}

.fly-menu-offer-tag {
	display: block;
	font-size: 20px;
	font-weight: 600;
	color: var(--muted);
	margin-bottom: 6px;
}

.fly-menu-offer-sum {
	display: block;
	font-size: 22px;
	font-weight: 900;
	color: var(--hot);
	margin-bottom: 12px;
}

.fly-menu-offer-btn {
	display: block;
	padding: 11px;
	border-radius: var(--rnd-sm);
	background: linear-gradient(135deg, #f0356f 0%, #e91e63 50%, #c2185b 100%);
	color: #fff;
	font-size: 13px;
	font-weight: 800;
	transition: box-shadow 0.2s;
}

.fly-menu-offer-btn:hover {
	box-shadow: 0 4px 18px rgba(233, 30, 99, 0.4);
}

.fly-menu-auth {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 14px 14px 0;
}

.fly-menu-links ul {
	display: flex;
	flex-direction: column;
	padding: 14px 10px;
	gap: 2px;
}

.fly-menu-links ul li a {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 14px 12px;
	font-size: 14px;
	font-weight: 600;
	color: var(--muted);
	border-bottom: 1px solid var(--edge);
	transition: all 0.2s;
}

.fly-menu-links ul li:last-child a {
	border-bottom: none;
}

.fly-menu-links ul li a svg {
	flex-shrink: 0;
	color: var(--dim);
	transition: color 0.2s;
}

.fly-menu-links ul li a:hover {
	color: var(--white);
}

.fly-menu-links ul li a:hover svg {
	color: var(--hot);
}

.fly-menu-links ul li a[aria-current="page"] {
	color: var(--hot);
}

.fly-menu-links ul li a[aria-current="page"] svg {
	color: var(--hot);
}

/* ── Main Bar (Header) ── */

.main-bar {
	background: var(--bg-bar);
	border-bottom: 1px solid var(--edge);
	position: sticky;
	top: 0;
	z-index: 1000;
}

.main-bar-inner {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 0 20px;
	height: var(--bar-h);
	max-width: var(--max-w);
	margin: 0 auto;
}

.main-bar-brand {
	font-size: 24px;
	font-weight: 900;
	color: var(--hot);
	letter-spacing: -0.5px;
	flex-shrink: 0;
}

.main-bar-brand em {
	font-style: normal;
	color: var(--white);
}

.main-bar-nav {
	flex: 1;
	overflow: hidden;
}

.main-bar-nav ul {
	display: flex;
	gap: 2px;
	overflow-x: auto;
	scrollbar-width: none;
}

.main-bar-nav ul::-webkit-scrollbar {
	display: none;
}

.main-bar-nav ul li a {
	display: block;
	padding: 8px 14px;
	font-size: 12px;
	font-weight: 700;
	color: var(--muted);
	white-space: nowrap;
	border-radius: 6px;
	transition: all 0.2s;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.main-bar-nav ul li a:hover {
	color: var(--white);
}

.main-bar-nav-on {
	background: var(--hot) !important;
	color: #fff !important;
}

.main-bar-right {
	display: flex;
	gap: 8px;
	flex-shrink: 0;
}

.main-bar-mob {
	display: none;
}

/* ── F Wrap ── */

.f-wrap {
	max-width: var(--max-w);
	margin: 0 auto;
	padding: 16px 20px 40px;
	display: flex;
	flex-direction: column;
	gap: 22px;
}

/* ── Hero ── */

.f-hero {
	position: relative;
	border-radius: var(--rnd);
	overflow: hidden;
}

.f-hero-track {
	display: flex;
	transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.f-hero-item {
	flex-shrink: 0;
	width: 100%;
	position: relative;
	aspect-ratio: 3 / 1;
	display: block;
	overflow: hidden;
	background: var(--bg-alt);
}

.f-hero-item::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(10, 20, 40, 0.88) 0%, rgba(10, 20, 40, 0.35) 50%, transparent 100%);
	z-index: 1;
	pointer-events: none;
}

.f-hero-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}

.f-hero-body {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	z-index: 2;
	padding: 0 48px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 14px;
}

.f-hero-heading {
	font-size: 30px;
	font-weight: 900;
	color: var(--white);
	line-height: 1.15;
}

.f-hero-heading em {
	font-style: normal;
	color: var(--hot);
}

.f-hero-action {
	display: inline-block;
	padding: 12px 32px;
	border-radius: var(--rnd-sm);
	background: linear-gradient(135deg, #f0356f 0%, #e91e63 50%, #c2185b 100%);
	color: #fff;
	font-size: 14px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	box-shadow: 0 4px 16px rgba(233, 30, 99, 0.35);
	transition: box-shadow 0.2s, transform 0.2s;
}

.f-hero-item:hover .f-hero-action {
	transform: translateY(-1px);
	box-shadow: 0 6px 24px rgba(233, 30, 99, 0.5);
}

.f-hero-arr {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.35);
	border: 1px solid var(--edge-lt);
	cursor: pointer;
	z-index: 3;
	transition: all 0.2s;
	backdrop-filter: blur(4px);
}

.f-hero-arr:hover {
	background: rgba(0, 0, 0, 0.6);
	border-color: var(--hot);
}

.f-hero-arr-l {
	left: 14px;
}

.f-hero-arr-r {
	right: 14px;
}

.f-hero-pips {
	position: absolute;
	bottom: 14px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 6px;
	z-index: 3;
}

.f-hero-pip {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.25);
	cursor: pointer;
	transition: all 0.25s;
	border: none;
}

.f-hero-pip.is-now {
	background: var(--hot);
	box-shadow: 0 0 8px rgba(233, 30, 99, 0.5);
}

/* ── Tag Row (Filter Bar) ── */

.tag-row {
	background: var(--bg-alt);
	border-radius: var(--rnd);
	border: 1px solid var(--edge);
	overflow: hidden;
}

.tag-row-search-mob {
	display: none;
}

.tag-row-scroll {
	display: flex;
	gap: 4px;
	overflow-x: auto;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
	cursor: grab;
	user-select: none;
	padding: 8px 12px;
}

.tag-row-scroll::-webkit-scrollbar {
	display: none;
}

.tag-chip {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 9px 18px;
	border-radius: 6px;
	font-family: var(--font);
	font-size: 12px;
	font-weight: 700;
	color: var(--muted);
	white-space: nowrap;
	flex-shrink: 0;
	transition: all 0.2s;
	text-transform: uppercase;
	letter-spacing: 0.3px;
}

.tag-chip svg {
	flex-shrink: 0;
	color: var(--muted);
}

.tag-chip:hover {
	color: var(--white);
	background: rgba(255, 255, 255, 0.05);
}

.tag-chip-on {
	background: var(--hot);
	color: #fff;
}

.tag-chip-on:hover {
	background: var(--hot);
	color: #fff;
}

/* ── Slot Rack (Games) ── */

.slot-rack {
	display: flex;
	flex-direction: column;
	gap: 14px;
	content-visibility: auto;
	contain-intrinsic-size: auto 600px;
}

.slot-rack-top {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
}

.slot-rack-title {
	font-size: 20px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.slot-rack-all {
	display: inline-block;
	padding: 8px 20px;
	border-radius: 6px;
	background: var(--hot);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	transition: box-shadow 0.2s;
}

.slot-rack-all:hover {
	box-shadow: 0 4px 14px rgba(233, 30, 99, 0.35);
}

.slot-rack-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(--hot-dim) transparent;
	padding-bottom: 6px;
}

.slot-rack-grid::-webkit-scrollbar {
	height: 4px;
}

.slot-rack-grid::-webkit-scrollbar-track {
	background: transparent;
}

.slot-rack-grid::-webkit-scrollbar-thumb {
	background: rgba(233, 30, 99, 0.25);
	border-radius: 2px;
}

.slot-item {
	display: flex;
	flex-direction: column;
	border-radius: var(--rnd);
	overflow: hidden;
	background: var(--bg-card);
	cursor: pointer;
	transition: transform 0.2s;
	scroll-snap-align: start;
}

.slot-item:hover {
	transform: translateY(-4px);
}

.slot-item-wrap {
	position: relative;
	overflow: hidden;
}

.slot-item-hot {
	position: absolute;
	top: 8px;
	left: 8px;
	z-index: 3;
	padding: 2px 8px;
	background: var(--hot);
	border-radius: 4px;
	font-size: 9px;
	font-weight: 800;
	color: #fff;
	text-transform: uppercase;
}

.slot-item-fav {
	position: absolute;
	top: 8px;
	right: 8px;
	z-index: 3;
	width: 28px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.35);
	color: var(--muted);
	transition: all 0.2s;
}

.slot-item-fav:hover {
	color: var(--hot);
}

.slot-item-wrap img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	display: block;
	background: var(--bg-alt);
	transition: transform 0.3s;
}

.slot-item:hover .slot-item-wrap img {
	transform: scale(1.06);
}

.slot-item-over {
	position: absolute;
	inset: 0;
	background: rgba(10, 20, 40, 0.75);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	opacity: 0;
	transition: opacity 0.25s;
}

.slot-item:hover .slot-item-over {
	opacity: 1;
}

.slot-item-play {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 80%;
	padding: 10px;
	border-radius: var(--rnd-sm);
	background: linear-gradient(135deg, #f0356f 0%, #e91e63 50%, #c2185b 100%);
	color: #fff;
	font-family: var(--font);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	box-shadow: 0 4px 14px rgba(233, 30, 99, 0.35);
	transform: translateY(6px);
	transition: transform 0.25s;
}

.slot-item:hover .slot-item-play {
	transform: translateY(0);
}

.slot-item-demo {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 80%;
	padding: 8px;
	border-radius: var(--rnd-sm);
	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;
	transform: translateY(6px);
	transition: transform 0.25s, border-color 0.2s;
}

.slot-item:hover .slot-item-demo {
	transform: translateY(0);
}

.slot-item-demo:hover {
	border-color: var(--hot);
	color: var(--hot);
}

.slot-item-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;
}

/* ── Prose (Content) ── */

.prose {
	width: 100%;
	color: var(--muted);
	line-height: 1.7;
	font-size: 15px;
	content-visibility: auto;
	contain-intrinsic-size: auto 900px;
}

.prose h1 { font-size: 26px; font-weight: 800; color: var(--white); line-height: 1.2; margin-bottom: 18px; }
.prose h2 { font-size: 21px; font-weight: 700; color: var(--white); margin-top: 28px; margin-bottom: 12px; }
.prose h3 { font-size: 17px; font-weight: 700; color: var(--white); margin-top: 22px; margin-bottom: 10px; }
.prose p { margin-bottom: 14px; }

.prose img {
	display: block;
	max-width: 100%;
	height: auto;
	margin: 0 auto 18px;
	border-radius: var(--rnd);
	border: 1px solid var(--edge-lt);
}

.prose blockquote {
	border-left: 3px solid var(--hot);
	padding: 12px 20px;
	margin: 18px 0;
	background: var(--hot-dim);
	border-radius: 0 var(--rnd-sm) var(--rnd-sm) 0;
	font-style: italic;
}

.prose table { width: 100%; border-collapse: collapse; margin: 18px 0; }
.prose th, .prose td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--edge); font-size: 14px; }
.prose th { font-weight: 700; color: var(--white); background: var(--hot-dim); }
.prose tbody tr:hover { background: rgba(233, 30, 99, 0.04); }
.prose ul { margin: 14px 0; padding-left: 22px; list-style: disc; }
.prose ul li { margin-bottom: 6px; }
.prose ol { margin: 14px 0; padding-left: 22px; list-style: decimal; }
.prose ol li { margin-bottom: 6px; }

/* ── Footer ── */

.f-footer {
	background: linear-gradient(180deg, #06101e 0%, #040a14 100%);
	border-top: 1px solid var(--edge-lt);
	padding: 36px 20px 22px;
	content-visibility: auto;
	contain-intrinsic-size: auto 350px;
}

.f-footer-inner {
	max-width: var(--max-w);
	margin: 0 auto;
}

.f-footer-top {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 28px;
}

.f-footer-brand {
	font-size: 20px;
	font-weight: 900;
	color: var(--hot);
}

.f-footer-brand em {
	font-style: normal;
	color: var(--white);
}

.f-footer-about {
	font-size: 12px;
	color: var(--muted);
}

.f-footer-cols {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px;
	padding-bottom: 24px;
	border-bottom: 1px solid var(--edge);
}

.f-footer-col strong {
	display: block;
	font-size: 13px;
	font-weight: 700;
	color: var(--white);
	margin-bottom: 12px;
}

.f-footer-col ul {
	display: flex;
	flex-direction: column;
	gap: 7px;
}

.f-footer-col ul li a {
	font-size: 12px;
	color: var(--muted);
	transition: color 0.2s;
}

.f-footer-col ul li a:hover {
	color: var(--hot);
}

.f-footer-legal {
	max-width: var(--max-w);
	margin: 0 auto;
	text-align: center;
	padding-top: 20px;
}

.f-footer-legal p {
	font-size: 10px;
	color: var(--muted);
	line-height: 1.7;
	margin-bottom: 6px;
}

.f-footer-legal p:last-child {
	margin-bottom: 0;
	font-weight: 600;
	color: var(--white);
}

/* ── Foot Tabs (Bottom Nav) ── */

.foot-tabs {
	display: none;
}

/* ── Responsive 1024 ── */

@media (max-width: 1024px) {
	.main-bar-nav ul li:nth-child(n+7) {
		display: none;
	}

	.f-hero-heading {
		font-size: 24px;
	}

	.slot-rack-grid {
		grid-auto-columns: 140px;
	}
}

/* ── Responsive 768 ── */

@media (max-width: 768px) {
	.main-bar-nav {
		display: none;
	}

	.main-bar-right {
		display: none;
	}

	.main-bar-brand {
		display: none;
	}

	.fly-menu {
		display: flex;
	}

	.app-strip {
		display: block;
	}

	.main-bar-mob {
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
	}

	.main-bar-mob-logo {
		font-size: 20px;
		font-weight: 900;
		color: var(--hot);
	}

	.main-bar-mob-logo em {
		font-style: normal;
		color: var(--white);
	}

	.main-bar-mob-btns {
		display: flex;
		gap: 6px;
	}

	.main-bar-inner {
		padding: 0 14px;
		height: 56px;
	}

	.f-wrap {
		padding: 14px 12px 80px;
		gap: 16px;
	}

	.f-hero-item {
		aspect-ratio: 2.5 / 1;
	}

	.f-hero-body {
		padding: 0 24px;
	}

	.f-hero-heading {
		font-size: 20px;
	}

	.f-hero-bg {
		object-position: 65% center;
	}

	.f-hero-action {
		padding: 10px 24px;
		font-size: 12px;
	}

	.f-hero-arr {
		display: none;
	}

	.slot-rack-grid {
		grid-auto-columns: 125px;
		gap: 10px;
	}

	.tag-row {
		border-radius: var(--rnd-sm);
	}

	.tag-row-search-mob {
		display: flex;
		align-items: center;
		gap: 10px;
		padding: 10px 14px;
		border-bottom: 1px solid var(--edge);
		color: var(--muted);
	}

	.tag-row-search-mob input {
		background: none;
		border: none;
		outline: none;
		font-family: var(--font);
		font-size: 14px;
		font-weight: 600;
		color: var(--white);
		width: 100%;
		text-transform: uppercase;
	}

	.tag-row-search-mob input::placeholder {
		color: var(--dim);
	}

	.tag-row-filter-btn {
		width: 36px;
		height: 36px;
		display: flex;
		align-items: center;
		justify-content: center;
		background: var(--hot);
		border: none;
		border-radius: var(--rnd-sm);
		color: #fff;
		cursor: pointer;
		flex-shrink: 0;
	}

	.tag-row-scroll .tag-chip:first-child {
		display: none;
	}

	.tag-chip {
		flex-direction: column;
		gap: 4px;
		padding: 10px 14px;
		font-size: 10px;
		text-align: center;
		border-radius: var(--rnd-sm);
		background: rgba(255, 255, 255, 0.03);
	}

	.tag-chip-on {
		background: var(--hot);
	}

	.slot-rack-title {
		font-size: 17px;
	}

	.prose h1 {
		font-size: 22px;
	}

	.prose table {
		display: block;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

	.f-footer {
		padding: 28px 14px 20px;
	}

	.f-footer-cols {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
		text-align: center;
	}

	.f-footer-col ul {
		align-items: center;
	}

	.f-footer-top {
		align-items: center;
		text-align: center;
	}

	.foot-tabs {
		display: block;
		position: fixed;
		bottom: 0;
		left: 0;
		right: 0;
		background: linear-gradient(180deg, #101c3a 0%, #0a1428 100%);
		border-top: 1px solid var(--edge-lt);
		z-index: 900;
		box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
		padding-bottom: env(safe-area-inset-bottom, 0);
	}

	.foot-tabs ul {
		display: flex;
		justify-content: space-around;
		align-items: center;
		height: 58px;
		padding: 0 4px;
	}

	.foot-tabs ul li {
		flex: 1;
		display: flex;
		justify-content: center;
	}

	.foot-tabs 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: 4px 0;
	}

	.foot-tabs ul li a svg {
		flex-shrink: 0;
	}

	.foot-tabs ul li a:hover {
		color: var(--hot);
	}

	.foot-tabs-on {
		color: var(--hot) !important;
	}

	.foot-tabs-on svg {
		color: var(--hot);
	}

	body {
		padding-bottom: 58px;
	}
}

/* ── Responsive 480 ── */

@media (max-width: 480px) {
	.main-bar-inner {
		padding: 0 10px;
		height: 52px;
	}

	.main-bar-mob-logo {
		font-size: 18px;
	}

	.f-btn-sm {
		padding: 7px 14px;
		font-size: 11px;
	}

	.f-hero-item {
		aspect-ratio: 2 / 1;
	}

	.f-hero-heading {
		font-size: 17px;
	}

	.f-hero-action {
		padding: 8px 20px;
		font-size: 11px;
	}

	.f-hero-body {
		padding: 0 16px;
		gap: 10px;
	}

	.slot-rack-grid {
		grid-auto-columns: 110px;
		gap: 8px;
	}

	.slot-item-name {
		font-size: 10px;
		padding: 8px 4px;
	}

	.slot-item-play {
		padding: 8px;
		font-size: 10px;
	}

	.slot-item-demo {
		padding: 6px;
		font-size: 9px;
	}

	.prose h1 {
		font-size: 20px;
	}

	.f-footer-cols {
		grid-template-columns: 1fr;
		gap: 16px;
	}
}

.main-bar-nav ul li:nth-last-child(-n+3) {
	display: none;
}

.fly-menu-links ul li:nth-last-child(-n+3) {
	display: none;
}