:root {
	--ceogames-primary: #6758D9;
	--ceogames-secondary: #20B89A;
	--ceogames-accent: #E7AD4F;
	--ceogames-background: #07111D;
	--ceogames-surface: #0C1928;
	--ceogames-card: #102236;
	--ceogames-text: #F5F7FB;
	--ceogames-muted: #A8B4C5;
	--ceogames-border: #243A50;
	--ceogames-cta: #E8B451;
	--ceogames-cta-hover: #F2C76E;
	--ceogames-legal: #0B262C;
	--ceogames-footer: #050B13;
	--ceogames-radius-sm: 12px;
	--ceogames-radius: 18px;
	--ceogames-radius-lg: 28px;
	--ceogames-shadow: 0 18px 55px rgba(0,0,0,.20);
	--ceogames-container: 1180px;
	--ceogames-header-height: 74px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	background: var(--ceogames-background);
}

body {
	margin: 0;
	min-width: 0;
	overflow-x: hidden;
	background:
		radial-gradient(circle at 15% 0%, rgba(103,88,217,.13), transparent 34rem),
		var(--ceogames-background);
	color: var(--ceogames-text);
	font-family: Inter, system-ui, Arial, sans-serif;
	font-size: 16px;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
}

body.ceogames-lang-hi {
	font-family: "Noto Sans Devanagari", "Noto Sans", system-ui, sans-serif;
	line-height: 1.85;
}

body.ceogames-drawer-open {
	overflow: hidden;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

a {
	color: inherit;
	text-decoration-thickness: .08em;
	text-underline-offset: .18em;
}

button,
input,
textarea,
select {
	font: inherit;
}

button,
a {
	-webkit-tap-highlight-color: transparent;
}

:focus-visible {
	outline: 3px solid var(--ceogames-accent);
	outline-offset: 4px;
	border-radius: 6px;
}


.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.ceogames-skip-link {
	position: fixed;
	left: 16px;
	top: -100px;
	z-index: 99999;
	padding: 10px 14px;
	background: var(--ceogames-text);
	color: var(--ceogames-background);
	border-radius: 8px;
}

.ceogames-skip-link:focus {
	top: 12px;
}

.ceogames-container {
	width: min(calc(100% - 32px), var(--ceogames-container));
	margin-inline: auto;
	min-width: 0;
}

.ceogames-site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	min-height: var(--ceogames-header-height);
	background: rgba(7,17,29,.92);
	border-bottom: 1px solid rgba(36,58,80,.86);
	backdrop-filter: blur(16px);
}

.ceogames-header-inner {
	min-height: var(--ceogames-header-height);
	display: grid;
	grid-template-columns: minmax(150px, 220px) minmax(0, 1fr) auto;
	align-items: center;
	gap: 18px;
}

.ceogames-brand {
	display: inline-flex;
	align-items: center;
	min-width: 0;
	text-decoration: none;
}

.ceogames-brand img {
	width: min(100%, 184px);
	height: auto;
	aspect-ratio: 640 / 180;
	object-fit: contain;
	object-position: left center;
}

.ceogames-desktop-nav {
	min-width: 0;
}

.ceogames-menu,
.ceogames-mobile-menu,
.ceogames-footer-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.ceogames-menu {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: clamp(10px, 1.5vw, 22px);
	min-width: 0;
}

.ceogames-menu a,
.ceogames-language-switch a,
.ceogames-language-current {
	font-size: .93rem;
	font-weight: 650;
	text-decoration: none;
	white-space: nowrap;
}

.ceogames-menu a {
	color: var(--ceogames-muted);
}

.ceogames-menu .current-menu-item > a,
.ceogames-menu a:hover {
	color: var(--ceogames-text);
}

.ceogames-header-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 12px;
	min-width: 0;
}

.ceogames-language-switch {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 7px 9px;
	border: 1px solid var(--ceogames-border);
	border-radius: 999px;
	background: rgba(16,34,54,.78);
}

.ceogames-language-current {
	color: var(--ceogames-text);
}

.ceogames-language-switch a {
	color: var(--ceogames-secondary);
}

.ceogames-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 10px 18px;
	border: 1px solid transparent;
	border-radius: 12px;
	font-weight: 800;
	line-height: 1.25;
	text-align: center;
	text-decoration: none;
	white-space: normal;
	overflow-wrap: anywhere;
}

.ceogames-button--primary {
	background: var(--ceogames-cta);
	color: #11151a;
	box-shadow: 0 12px 34px rgba(232,180,81,.17);
}

.ceogames-button--secondary {
	border-color: var(--ceogames-border);
	background: rgba(16,34,54,.72);
	color: var(--ceogames-text);
}

.ceogames-menu-toggle {
	display: none;
	width: 46px;
	height: 46px;
	padding: 10px;
	border: 1px solid var(--ceogames-border);
	border-radius: 12px;
	background: var(--ceogames-card);
	color: var(--ceogames-text);
	cursor: pointer;
}

.ceogames-menu-toggle span {
	display: block;
	width: 22px;
	height: 2px;
	margin: 4px auto;
	background: currentColor;
	border-radius: 2px;
}

.ceogames-drawer-overlay {
	position: fixed;
	inset: 0;
	z-index: 1100;
	background: rgba(2,8,14,.72);
	backdrop-filter: blur(3px);
}

.ceogames-mobile-drawer {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 1110;
	width: min(90vw, 390px);
	height: 100dvh;
	padding: 20px;
	overflow-y: auto;
	transform: translateX(105%);
	visibility: hidden;
	background: var(--ceogames-surface);
	border-left: 1px solid var(--ceogames-border);
	box-shadow: -20px 0 70px rgba(0,0,0,.34);
	transition: transform .24s ease, visibility .24s ease;
}

.ceogames-mobile-drawer.is-open {
	transform: translateX(0);
	visibility: visible;
}

.ceogames-drawer-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--ceogames-border);
}

.ceogames-drawer-title {
	font-weight: 850;
	font-size: 1.1rem;
}

.ceogames-drawer-close {
	width: 44px;
	height: 44px;
	border: 1px solid var(--ceogames-border);
	border-radius: 12px;
	background: var(--ceogames-card);
	color: var(--ceogames-text);
	font-size: 1.7rem;
	line-height: 1;
	cursor: pointer;
}

.ceogames-mobile-nav {
	margin-top: 18px;
}

.ceogames-mobile-menu {
	display: grid;
	gap: 6px;
}

.ceogames-mobile-menu a {
	display: block;
	padding: 11px 12px;
	border-radius: 10px;
	color: var(--ceogames-muted);
	font-weight: 700;
	text-decoration: none;
}

.ceogames-mobile-menu .current-menu-item > a {
	background: var(--ceogames-card);
	color: var(--ceogames-text);
}

.ceogames-drawer-language {
	display: flex;
	gap: 10px;
	align-items: center;
	margin: 22px 0;
	padding: 14px;
	border: 1px solid var(--ceogames-border);
	border-radius: 12px;
	background: rgba(7,17,29,.54);
}

.ceogames-drawer-language a {
	color: var(--ceogames-secondary);
	font-weight: 800;
}

.ceogames-mobile-cta {
	width: 100%;
}

.ceogames-main {
	min-width: 0;
}

.ceogames-hero {
	padding: clamp(42px, 7vw, 86px) 0 42px;
}

.ceogames-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
	gap: clamp(30px, 6vw, 74px);
	align-items: center;
}

.ceogames-hero-copy,
.ceogames-hero-media,
.ceogames-card,
.ceogames-feature-copy,
.ceogames-feature-media,
.ceogames-section,
.ceogames-page-content {
	min-width: 0;
}

.ceogames-eyebrow {
	margin: 0 0 12px;
	color: var(--ceogames-secondary);
	font-weight: 850;
	letter-spacing: .07em;
	text-transform: uppercase;
	font-size: .8rem;
}

.ceogames-hero h1,
.ceogames-page-hero h1 {
	margin: 0;
	max-width: 18ch;
	font-size: clamp(2.15rem, 6vw, 4.85rem);
	line-height: 1.03;
	letter-spacing: -.045em;
	overflow-wrap: anywhere;
}

.ceogames-lang-hi .ceogames-hero h1,
.ceogames-lang-hi .ceogames-page-hero h1 {
	letter-spacing: 0;
	line-height: 1.28;
	max-width: 22ch;
}

.ceogames-hero-lead,
.ceogames-page-lead {
	max-width: 64ch;
	margin: 20px 0 0;
	color: var(--ceogames-muted);
	font-size: clamp(1rem, 1.7vw, 1.18rem);
}

.ceogames-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 26px;
}

.ceogames-hero-media {
	position: relative;
}

.ceogames-hero-media-frame {
	padding: 10px;
	border: 1px solid var(--ceogames-border);
	border-radius: var(--ceogames-radius-lg);
	background:
		linear-gradient(145deg, rgba(103,88,217,.16), rgba(32,184,154,.06)),
		var(--ceogames-surface);
	box-shadow: var(--ceogames-shadow);
}

.ceogames-hero-media img {
	width: 100%;
	aspect-ratio: 40 / 21;
	object-fit: cover;
	border-radius: calc(var(--ceogames-radius-lg) - 8px);
}

.ceogames-hero-chip {
	position: absolute;
	left: -18px;
	bottom: 22px;
	max-width: 220px;
	padding: 12px 14px;
	border: 1px solid var(--ceogames-border);
	border-radius: 14px;
	background: rgba(12,25,40,.96);
	box-shadow: var(--ceogames-shadow);
	color: var(--ceogames-muted);
	font-size: .9rem;
}

.ceogames-notice {
	margin: 0 auto 36px;
	padding: 18px 20px;
	border: 1px solid rgba(32,184,154,.42);
	border-left: 4px solid var(--ceogames-secondary);
	border-radius: var(--ceogames-radius);
	background: rgba(11,38,44,.92);
	color: #d8eee9;
}

.ceogames-notice strong {
	color: var(--ceogames-text);
}

.ceogames-section {
	padding: clamp(44px, 7vw, 80px) 0;
}

.ceogames-section--surface {
	background: linear-gradient(180deg, rgba(12,25,40,.80), rgba(12,25,40,.35));
	border-block: 1px solid rgba(36,58,80,.72);
}

.ceogames-section-head {
	max-width: 760px;
	margin-bottom: 28px;
}

.ceogames-section h2,
.ceogames-page-content h2,
.ceogames-related h2 {
	margin: 0 0 14px;
	font-size: clamp(1.65rem, 3.1vw, 2.7rem);
	line-height: 1.17;
	letter-spacing: -.025em;
	overflow-wrap: anywhere;
}

.ceogames-lang-hi .ceogames-section h2,
.ceogames-lang-hi .ceogames-page-content h2,
.ceogames-lang-hi .ceogames-related h2 {
	letter-spacing: 0;
	line-height: 1.4;
}

.ceogames-section-head p,
.ceogames-page-content p {
	color: var(--ceogames-muted);
}

.ceogames-bento {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	gap: 16px;
}

.ceogames-card {
	max-width: 100%;
	box-sizing: border-box;
	padding: 22px;
	border: 1px solid var(--ceogames-border);
	border-radius: var(--ceogames-radius);
	background: var(--ceogames-card);
	box-shadow: 0 10px 35px rgba(0,0,0,.11);
	overflow-wrap: anywhere;
	word-break: normal;
}

.ceogames-card h3 {
	margin: 0 0 9px;
	font-size: 1.15rem;
	line-height: 1.3;
}

.ceogames-lang-hi .ceogames-card h3 {
	line-height: 1.55;
}

.ceogames-card p {
	margin: 0 0 14px;
	color: var(--ceogames-muted);
}


.ceogames-card--bento::before {
	content: "";
	display: block;
	width: 42px;
	height: 4px;
	margin-bottom: 20px;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--ceogames-accent), var(--ceogames-secondary));
}

.ceogames-card--bento {
	grid-column: span 4;
	min-height: 190px;
}

.ceogames-card--bento:nth-child(1),
.ceogames-card--bento:nth-child(4) {
	grid-column: span 5;
}

.ceogames-card--bento:nth-child(2),
.ceogames-card--bento:nth-child(5) {
	grid-column: span 3;
}

.ceogames-card--bento:nth-child(3),
.ceogames-card--bento:nth-child(6) {
	grid-column: span 4;
}


.ceogames-text-link {
	color: var(--ceogames-accent);
	font-weight: 800;
}

.ceogames-feature {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
	gap: clamp(28px, 5vw, 64px);
	align-items: center;
}

.ceogames-feature--reverse .ceogames-feature-copy {
	order: 2;
}

.ceogames-feature--reverse .ceogames-feature-media {
	order: 1;
}

.ceogames-feature-media img {
	width: 100%;
	aspect-ratio: 3 / 2;
	object-fit: cover;
	border-radius: var(--ceogames-radius-lg);
	border: 1px solid var(--ceogames-border);
	background: var(--ceogames-surface);
}

.ceogames-list {
	margin: 18px 0 0;
	padding-left: 1.2rem;
	color: var(--ceogames-muted);
}

.ceogames-list li + li {
	margin-top: 8px;
}

.ceogames-check-grid,
.ceogames-link-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0,1fr));
	gap: 16px;
}

.ceogames-check {
	padding: 18px;
	border: 1px solid var(--ceogames-border);
	border-radius: 14px;
	background: rgba(16,34,54,.66);
}

.ceogames-table-wrap {
	max-width: 100%;
	overflow-x: auto;
	border: 1px solid var(--ceogames-border);
	border-radius: var(--ceogames-radius);
}

.ceogames-table {
	width: 100%;
	min-width: 680px;
	border-collapse: collapse;
	background: var(--ceogames-card);
}

.ceogames-table th,
.ceogames-table td {
	padding: 14px 16px;
	text-align: left;
	vertical-align: top;
	border-bottom: 1px solid var(--ceogames-border);
}

.ceogames-table th {
	color: var(--ceogames-text);
	background: rgba(103,88,217,.10);
}

.ceogames-table td {
	color: var(--ceogames-muted);
}

.ceogames-faq-list {
	display: grid;
	gap: 12px;
}

.ceogames-faq-card {
	border: 1px solid var(--ceogames-border);
	border-radius: var(--ceogames-radius);
	background: var(--ceogames-card);
	overflow: clip;
}

.ceogames-faq-card summary {
	padding: 18px 20px;
	cursor: pointer;
	font-weight: 800;
	list-style-position: inside;
}

.ceogames-faq-answer {
	padding: 0 20px 18px;
}

.ceogames-faq-answer p {
	margin: 0;
	color: var(--ceogames-muted);
}

.ceogames-spaced {
	margin-top: 16px;
}

.ceogames-legal-box {
	padding: 22px;
	border: 1px solid rgba(32,184,154,.35);
	border-radius: var(--ceogames-radius);
	background: var(--ceogames-legal);
	color: #d9ece8;
}

.ceogames-legal-box h2,
.ceogames-legal-box h3 {
	color: var(--ceogames-text);
}

.ceogames-page-hero {
	padding: 42px 0 28px;
}

.ceogames-page-hero h1 {
	max-width: 24ch;
	font-size: clamp(2rem, 5vw, 4rem);
}

.ceogames-breadcrumb {
	padding-top: 18px;
}

.ceogames-breadcrumb ol {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: .91rem;
	color: var(--ceogames-muted);
}

.ceogames-breadcrumb li + li::before {
	content: "›";
	margin-right: 8px;
	color: var(--ceogames-border);
}

.ceogames-breadcrumb a {
	color: var(--ceogames-secondary);
}

.ceogames-page-content {
	max-width: 920px;
	padding: 14px 0 70px;
}

.ceogames-page-content > section {
	padding: 26px 0;
	border-top: 1px solid rgba(36,58,80,.56);
}

.ceogames-page-content > section:first-child {
	border-top: 0;
}

.ceogames-page-content h3 {
	margin: 18px 0 8px;
	font-size: 1.22rem;
}

.ceogames-page-content ul,
.ceogames-page-content ol {
	color: var(--ceogames-muted);
	padding-left: 1.25rem;
}

.ceogames-page-content li + li {
	margin-top: 7px;
}

.ceogames-page-media {
	margin: 24px 0 6px;
}

.ceogames-page-media img {
	width: 100%;
	aspect-ratio: 3 / 2;
	object-fit: cover;
	border-radius: var(--ceogames-radius-lg);
	border: 1px solid var(--ceogames-border);
}

.ceogames-related {
	margin-top: 38px;
	padding: 22px;
	border: 1px solid var(--ceogames-border);
	border-radius: var(--ceogames-radius);
	background: rgba(12,25,40,.72);
}

.ceogames-related h2 {
	font-size: 1.35rem;
}

.ceogames-related ul {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 16px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.ceogames-related a {
	color: var(--ceogames-accent);
	font-weight: 700;
}

.ceogames-search-form {
	display: grid;
	grid-template-columns: minmax(0,1fr) auto;
	gap: 10px;
	margin: 24px 0 34px;
}

.ceogames-search-form input {
	width: 100%;
	min-width: 0;
	min-height: 48px;
	padding: 10px 14px;
	border: 1px solid var(--ceogames-border);
	border-radius: 12px;
	background: var(--ceogames-card);
	color: var(--ceogames-text);
}

.ceogames-results {
	display: grid;
	gap: 14px;
}

.ceogames-result {
	padding: 20px;
	border: 1px solid var(--ceogames-border);
	border-radius: var(--ceogames-radius);
	background: var(--ceogames-card);
}

.ceogames-result h2 {
	margin-bottom: 6px;
	font-size: 1.35rem;
}

.ceogames-empty-state,
.ceogames-error-state {
	max-width: 760px;
	padding: clamp(36px,7vw,78px) 0;
}

.ceogames-article {
	max-width: 820px;
	padding-bottom: 70px;
}

.ceogames-article-meta {
	color: var(--ceogames-muted);
	font-size: .92rem;
}

.ceogames-site-footer {
	padding: 56px 0 22px;
	background: var(--ceogames-footer);
	border-top: 1px solid var(--ceogames-border);
}

.ceogames-footer-grid {
	display: grid;
	grid-template-columns: 1.2fr .9fr 1fr;
	gap: 28px;
}

.ceogames-site-footer h2 {
	margin-top: 0;
	font-size: 1.1rem;
}

.ceogames-site-footer p,
.ceogames-footer-menu a,
.ceogames-footer-safety a {
	color: var(--ceogames-muted);
}

.ceogames-footer-icon {
	width: 54px;
	height: 54px;
	margin-top: 18px;
	border-radius: 14px;
}

.ceogames-footer-menu {
	display: grid;
	gap: 9px;
}

.ceogames-footer-menu a,
.ceogames-footer-safety a {
	text-decoration: none;
}

.ceogames-footer-notice {
	margin-top: 34px;
	padding: 20px;
	border: 1px solid var(--ceogames-border);
	border-radius: var(--ceogames-radius);
	background: rgba(11,38,44,.65);
}

.ceogames-footer-notice p {
	margin: 0;
}

.ceogames-footer-notice p + p {
	margin-top: 8px;
}

.ceogames-footer-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 18px;
	align-items: center;
	justify-content: space-between;
	padding-top: 20px;
	margin-top: 22px;
	border-top: 1px solid rgba(36,58,80,.64);
	color: var(--ceogames-muted);
	font-size: .88rem;
}

.ceogames-footer-meta a {
	color: var(--ceogames-secondary);
}

@media (max-width: 1180px) {
	.ceogames-header-inner {
		grid-template-columns: minmax(140px, 190px) minmax(0,1fr) auto;
		gap: 12px;
	}
	.ceogames-menu {
		gap: 12px;
	}
	.ceogames-menu a {
		font-size: .87rem;
	}
}

@media (max-width: 1024px) {
	.ceogames-desktop-nav,
	.ceogames-desktop-cta {
		display: none;
	}
	.ceogames-header-inner {
		grid-template-columns: minmax(140px, 1fr) auto;
	}
	.ceogames-menu-toggle {
		display: inline-block;
	}
	.ceogames-hero-grid {
		grid-template-columns: minmax(0,1fr) minmax(260px,.8fr);
		gap: 34px;
	}
	.ceogames-bento {
		grid-template-columns: repeat(2, minmax(0,1fr));
	}
	.ceogames-card--bento,
	.ceogames-card--bento:nth-child(n) {
		grid-column: auto;
	}
}

@media (max-width: 768px) {
	.ceogames-container {
		width: min(calc(100% - 26px), var(--ceogames-container));
	}
	.ceogames-hero-grid,
	.ceogames-feature,
	.ceogames-footer-grid {
		grid-template-columns: 1fr;
	}
	.ceogames-feature--reverse .ceogames-feature-copy,
	.ceogames-feature--reverse .ceogames-feature-media {
		order: initial;
	}
	.ceogames-hero-media {
		max-width: 620px;
	}
	.ceogames-hero-chip {
		left: 12px;
		bottom: 12px;
	}
	.ceogames-check-grid,
	.ceogames-link-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	:root {
		--ceogames-header-height: 66px;
	}
	.ceogames-header-inner {
		gap: 8px;
	}
	.ceogames-brand img {
		width: 150px;
	}
	.ceogames-header-actions {
		gap: 8px;
	}
	.ceogames-language-switch {
		padding: 6px 8px;
	}
	.ceogames-language-switch a,
	.ceogames-language-current {
		font-size: .82rem;
	}
	.ceogames-hero {
		padding-top: 34px;
	}
	.ceogames-hero-grid,
	.ceogames-bento,
	.ceogames-feature,
	.ceogames-footer-grid,
	.ceogames-check-grid,
	.ceogames-link-grid {
		grid-template-columns: 1fr;
	}
	.ceogames-card--bento,
	.ceogames-card--bento:nth-child(n) {
		grid-column: 1;
	}
	.ceogames-hero-actions {
		align-items: stretch;
	}
	.ceogames-hero-actions .ceogames-button {
		flex: 1 1 100%;
		width: 100%;
	}
	.ceogames-hero-chip {
		position: static;
		margin-top: 10px;
		max-width: none;
	}
	.ceogames-table-wrap {
		margin-inline: 0;
	}
	.ceogames-search-form {
		grid-template-columns: 1fr;
	}
	.ceogames-footer-meta {
		align-items: flex-start;
		flex-direction: column;
	}
	.ceogames-lang-hi .ceogames-button,
	.ceogames-lang-hi .ceogames-menu-toggle,
	.ceogames-lang-hi .ceogames-language-switch {
		line-height: 1.5;
	}
}

@media (max-width: 480px) {
	.ceogames-container {
		width: min(calc(100% - 20px), var(--ceogames-container));
	}
	.ceogames-language-switch {
		display: none;
	}
	.ceogames-header-inner {
		grid-template-columns: 1fr auto;
	}
	.ceogames-card,
	.ceogames-notice,
	.ceogames-legal-box {
		padding: 18px;
	}
	.ceogames-mobile-drawer {
		width: 92vw;
	}
}

@media (hover: hover) and (pointer: fine) {
	.ceogames-card,
	.ceogames-button,
	.ceogames-feature-media img {
		transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
	}
	.ceogames-card:hover {
		transform: translateY(-3px);
		border-color: rgba(103,88,217,.72);
		box-shadow: 0 16px 42px rgba(0,0,0,.17);
	}
	.ceogames-button--primary:hover {
		background: var(--ceogames-cta-hover);
		transform: translateY(-1px);
	}
	.ceogames-button--secondary:hover {
		border-color: var(--ceogames-secondary);
	}
	.ceogames-feature-media img:hover {
		transform: scale(1.015);
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: .001ms !important;
		animation-duration: .001ms !important;
		animation-iteration-count: 1 !important;
	}
}

/* =========================================================
   1CEO Games — Enhanced bilingual footer
   ========================================================= */

.ceogames-footer-brand,
.ceogames-footer-nav,
.ceogames-footer-safety {
	min-width: 0;
}

.ceogames-footer-brand-link {
	display: inline-flex;
	max-width: 190px;
	margin-bottom: 20px;
	text-decoration: none;
}

.ceogames-footer-logo {
	display: block;
	width: 100%;
	max-width: 190px;
	height: auto;
	aspect-ratio: 640 / 180;
	object-fit: contain;
	object-position: left center;
}

.ceogames-footer-intro,
.ceogames-footer-independence {
	max-width: 48ch;
}

.ceogames-footer-independence {
	font-size: .92rem;
}

.ceogames-footer-brand-points {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 18px;
}

.ceogames-footer-brand-points span {
	display: inline-flex;
	align-items: center;
	min-height: 30px;
	padding: 5px 10px;
	border: 1px solid rgba(36, 58, 80, .9);
	border-radius: 999px;
	background: rgba(16, 34, 54, .72);
	color: var(--ceogames-muted);
	font-size: .78rem;
	font-weight: 700;
	line-height: 1.35;
}

.ceogames-footer-quick-links {
	margin-top: 28px;
	padding-top: 22px;
	border-top: 1px solid rgba(36, 58, 80, .58);
}

.ceogames-footer-quick-links h3 {
	margin: 0 0 12px;
	color: var(--ceogames-text);
	font-size: .93rem;
	line-height: 1.4;
}

.ceogames-footer-quick-links ul {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 14px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.ceogames-footer-quick-links a {
	color: var(--ceogames-muted);
	font-size: .9rem;
	font-weight: 650;
	text-decoration: none;
}

.ceogames-footer-feature-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 6px;
	color: var(--ceogames-accent) !important;
	font-weight: 800;
	text-decoration: none;
}

.ceogames-footer-feature-link span {
	transition: transform .18s ease;
}

.ceogames-footer-security-note {
	margin-top: 24px;
	padding: 16px;
	border: 1px solid rgba(32, 184, 154, .26);
	border-radius: 14px;
	background: rgba(11, 38, 44, .48);
}

.ceogames-footer-security-note strong {
	display: block;
	margin-bottom: 6px;
	color: var(--ceogames-text);
	font-size: .92rem;
}

.ceogames-footer-security-note p {
	margin: 0;
	font-size: .88rem;
	line-height: 1.65;
}

.ceogames-footer-notice-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.ceogames-footer-notice-grid > div {
	min-width: 0;
}

.ceogames-footer-notice-grid strong {
	display: block;
	margin-bottom: 8px;
	color: var(--ceogames-text);
	font-size: .92rem;
	line-height: 1.4;
}

.ceogames-footer-notice-grid p {
	color: var(--ceogames-muted);
	font-size: .86rem;
	line-height: 1.7;
	overflow-wrap: anywhere;
}

.ceogames-footer-legal-links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 18px;
	margin-top: 24px;
	padding-top: 20px;
	border-top: 1px solid rgba(36, 58, 80, .64);
}

.ceogames-footer-legal-links a {
	color: var(--ceogames-muted);
	font-size: .85rem;
	font-weight: 650;
	text-decoration: none;
}

.ceogames-lang-hi .ceogames-footer-intro,
.ceogames-lang-hi .ceogames-footer-independence,
.ceogames-lang-hi .ceogames-footer-security-note p,
.ceogames-lang-hi .ceogames-footer-notice-grid p {
	line-height: 1.85;
}

.ceogames-lang-hi .ceogames-footer-brand-points span,
.ceogames-lang-hi .ceogames-footer-legal-links a,
.ceogames-lang-hi .ceogames-footer-quick-links a {
	line-height: 1.6;
}


/* Tablet */
@media (max-width: 900px) {

	.ceogames-footer-notice-grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}

}


/* Mobile */
@media (max-width: 640px) {

	.ceogames-site-footer {
		padding-top: 42px;
	}

	.ceogames-footer-grid {
		gap: 34px;
	}

	.ceogames-footer-brand-link {
		max-width: 170px;
	}

	.ceogames-footer-logo {
		max-width: 170px;
	}

	.ceogames-footer-brand-points {
		align-items: flex-start;
	}

	.ceogames-footer-quick-links ul,
	.ceogames-footer-legal-links {
		flex-direction: column;
		align-items: flex-start;
	}

	.ceogames-footer-quick-links ul {
		gap: 10px;
	}

	.ceogames-footer-legal-links {
		gap: 10px;
	}

	.ceogames-footer-notice {
		padding: 18px;
	}

}


/* Hover-capable devices only */
@media (hover: hover) and (pointer: fine) {

	.ceogames-footer-menu a:hover,
	.ceogames-footer-quick-links a:hover,
	.ceogames-footer-legal-links a:hover {
		color: var(--ceogames-text);
	}

	.ceogames-footer-feature-link:hover span {
		transform: translateX(4px);
	}

}


/* Reduced motion */
@media (prefers-reduced-motion: reduce) {

	.ceogames-footer-feature-link span {
		transition: none;
	}

}