:root {
	--color-page: #315f5b;
	--color-page-alt: #356a65;
	--color-header: #123f3d;
	--color-panel: #083b2b;
	--color-panel-2: #0b3d31;
	--color-panel-3: #0d4839;
	--color-text: #e5f3ef;
	--color-heading: #ffffff;
	--color-muted: #c9ddda;
	--color-yellow: #f6d447;
	--color-green: #15b96f;
	--color-purple: #7c43d9;
	--color-border: rgba(255, 255, 255, 0.28);
	--color-border-strong: rgba(255, 255, 255, 0.5);
	--font-main: system-ui, -apple-system, BlinkMacSystemFont, "Noto Sans", "Segoe UI", Arial, sans-serif;
	--container: 1120px;
	--container-narrow: 760px;
	--radius-sm: 4px;
	--radius-md: 6px;
	--shadow-soft: 0 14px 32px rgba(0, 0, 0, 0.18);
	--topbar-height: 32px;
	--nav-height: 64px;
	--header-height: 96px;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	padding-top: var(--header-height);
	padding-bottom: 94px;
	background: var(--color-page);
	color: var(--color-text);
	font-family: var(--font-main);
	font-size: 16px;
	line-height: 1.78;
	letter-spacing: 0;
	overflow-x: hidden;
}

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

a {
	color: inherit;
	text-decoration: none;
}

p {
	margin: 0 0 18px;
}

p:last-child {
	margin-bottom: 0;
}

strong {
	color: var(--color-heading);
}

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

.site-main {
	min-height: 60vh;
}

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	width: 100%;
	background: var(--color-header);
	transition: box-shadow 180ms ease, background-color 180ms ease;
}

.admin-bar .site-header {
	top: 32px;
}

.site-header.is-scrolled {
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.24);
}

.site-topbar {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: var(--topbar-height);
	padding: 5px 16px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	color: var(--color-text);
	font-size: 13px;
	font-weight: 800;
	text-align: center;
}

.site-header__inner {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	align-items: center;
	gap: 22px;
	width: min(calc(100% - 32px), var(--container));
	height: var(--nav-height);
	margin-inline: auto;
}

.site-header__brand {
	min-width: 0;
}

.site-brand,
.custom-logo-link,
.footer-logo-link {
	display: inline-flex;
	align-items: center;
	max-width: 100%;
}

.brand-logo,
.custom-logo {
	display: block;
	width: auto;
	max-width: 100%;
	object-fit: contain;
}

.brand-logo--header,
.custom-logo {
	max-width: 128px;
	max-height: 42px;
}

.brand-logo--header.brand-logo--image {
	display: inline-grid;
	place-items: center;
	width: 128px;
	height: 48px;
	max-width: none;
	max-height: none;
	padding: 0;
	overflow: hidden;
	border: 0;
	border-radius: 10px;
	background: transparent;
	box-shadow: none;
	transition: transform 160ms ease, filter 160ms ease;
}

.site-brand:hover .brand-logo--header.brand-logo--image,
.site-brand:focus-visible .brand-logo--header.brand-logo--image {
	filter: brightness(1.08);
	transform: translateY(-1px);
}

.brand-logo--image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
}

.brand-logo--footer {
	max-width: 144px;
	max-height: 54px;
}

.brand-logo--hero {
	max-width: 340px;
	max-height: 200px;
}

.brand-logo--fallback {
	display: inline-flex;
	position: relative;
	align-items: center;
	gap: 9px;
	color: #f9f0ac;
	font-weight: 900;
	font-size: 28px;
	line-height: 1;
	text-shadow: 0 2px 0 rgba(0, 0, 0, 0.25);
}

.brand-logo--fallback i {
	width: 27px;
	height: 27px;
	border-radius: 50% 50% 50% 6px;
	background: linear-gradient(135deg, #ff5757, #ffd147 58%, #27d98d);
	transform: rotate(-35deg);
}

.brand-logo--footer.brand-logo--fallback {
	font-size: 34px;
}

.brand-logo--hero.brand-logo--fallback {
	font-size: 64px;
}

.brand-logo--hero.brand-logo--fallback i {
	width: 56px;
	height: 56px;
}

.site-nav {
	min-width: 0;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}

.site-nav::-webkit-scrollbar {
	display: none;
}

.menu-toggle {
	display: none;
}

.site-menu {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 18px;
	width: max-content;
	min-width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
	white-space: nowrap;
}

.site-menu a {
	display: inline-flex;
	align-items: center;
	min-height: 38px;
	color: #f2fffb;
	font-size: 14px;
	font-weight: 700;
	transition: color 160ms ease, opacity 160ms ease;
}

.site-menu a:hover,
.site-menu a:focus {
	color: var(--color-yellow);
}

.hero-section {
	padding-top: 30px;
}

.hero-card {
	position: relative;
	display: grid;
		grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.88fr);
	align-items: center;
	gap: 34px;
	min-height: 390px;
	overflow: hidden;
	padding: 44px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: var(--radius-md);
	background:
		radial-gradient(circle at 16% 18%, rgba(245, 183, 0, 0.18), transparent 28%),
		radial-gradient(circle at 88% 18%, rgba(215, 38, 61, 0.24), transparent 30%),
		linear-gradient(135deg, rgba(8, 26, 51, 0.98), rgba(12, 45, 91, 0.94) 58%, rgba(8, 26, 51, 0.98));
	box-shadow: var(--shadow-soft);
}

.hero-card::after {
	position: absolute;
	right: -88px;
	bottom: -88px;
	width: 240px;
	height: 240px;
	border: 1px solid rgba(246, 212, 71, 0.18);
	border-radius: 50%;
	content: "";
}

.hero-copy,
.hero-visual {
	position: relative;
	z-index: 1;
}

.eyebrow {
	margin: 0 0 9px;
	color: var(--color-yellow);
	font-size: 14px;
	font-weight: 800;
}

.hero-copy h1 {
	max-width: 620px;
	margin: 0 0 16px;
	color: var(--color-heading);
	font-size: 44px;
	font-weight: 900;
	line-height: 1.18;
	letter-spacing: 0;
}

.hero-copy p {
	max-width: 560px;
	color: var(--color-text);
	font-size: 18px;
}

.hero-copy p span,
.text-yellow {
	color: var(--color-yellow);
	font-weight: 800;
}

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

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	margin-top: 8px;
	padding: 12px 26px;
	border: 0;
	border-radius: var(--radius-sm);
	font-size: 16px;
	font-weight: 800;
	line-height: 1.2;
	text-align: center;
	transition: transform 160ms ease, filter 160ms ease;
}

.btn:hover,
.btn:focus {
	filter: brightness(1.08);
	transform: translateY(-1px);
}

.btn-primary {
	background: var(--color-green);
	color: #ffffff;
}

.hero-visual {
	display: flex;
	justify-content: center;
}

.hero-logo-frame {
	position: relative;
	display: grid;
	place-items: center;
	width: min(100%, 410px);
	min-height: 270px;
	padding: 12px;
	border-radius: var(--radius-md);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04));
	box-shadow: 0 18px 32px rgba(0, 0, 0, 0.22);
}

.hero-device-img,
.hero-logo-frame .image-fallback {
	width: 100%;
	aspect-ratio: 16 / 10;
	border-radius: var(--radius-md);
	object-fit: cover;
}

.rocket-mark {
	display: none;
}

.site-section {
	margin-top: 56px;
}

.site-section h2 {
	max-width: 820px;
	margin: 0 0 32px;
	color: var(--color-heading);
	font-size: 30px;
	font-weight: 900;
	line-height: 1.25;
	text-align: left;
	letter-spacing: 0;
}

.overview-grid,
.ecosystem-grid,
.app-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	align-items: center;
	gap: 50px;
}

.overview-copy {
	color: var(--color-text);
}

.table-scroll {
	max-width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.info-table,
.comparison-table {
	width: 100%;
	border-collapse: collapse;
	color: var(--color-text);
	background: transparent;
}

.info-table {
	min-width: 420px;
}

.info-table th,
.info-table td,
.comparison-table th,
.comparison-table td {
	border: 1px solid var(--color-border-strong);
	padding: 13px 14px;
	vertical-align: top;
}

.info-table th {
	width: 38%;
	color: var(--color-heading);
	text-align: left;
}

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

.narrow-copy {
	max-width: var(--container-narrow);
	margin-inline: 0;
	color: var(--color-text);
	text-align: left;
}

.license-section h2 {
	margin-inline: auto;
	text-align: center;
}

.license-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.92fr);
	align-items: center;
	gap: 44px;
}

.license-visual {
	position: relative;
	display: grid;
	place-items: center;
	min-height: 300px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.17);
	border-radius: var(--radius-md);
	background:
		radial-gradient(circle at 20% 24%, rgba(246, 212, 71, 0.16), transparent 31%),
		radial-gradient(circle at 84% 72%, rgba(21, 185, 111, 0.16), transparent 34%),
		repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.045) 0, rgba(255, 255, 255, 0.045) 1px, transparent 1px, transparent 18px),
		linear-gradient(145deg, #0a4638, #06261f);
	box-shadow: var(--shadow-soft);
}

.license-visual::before {
	display: none;
	position: absolute;
	top: -62px;
	right: -54px;
	width: 168px;
	height: 168px;
	border: 1px solid rgba(246, 212, 71, 0.2);
	border-radius: 50%;
	content: "";
}

.license-img,
.license-visual .image-fallback {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 300px;
	object-fit: cover;
}

.license-document {
	position: relative;
	z-index: 1;
	width: min(76%, 270px);
	padding: 26px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: var(--radius-md);
	background: rgba(4, 30, 24, 0.78);
	box-shadow: 0 20px 34px rgba(0, 0, 0, 0.24);
}

.license-document strong {
	display: block;
	color: var(--color-yellow);
	font-size: 34px;
	font-weight: 900;
	line-height: 1;
}

.license-document span {
	display: inline-flex;
	margin: 18px 0 14px;
	padding: 7px 11px;
	border-radius: 999px;
	background: rgba(246, 212, 71, 0.15);
	color: #ffffff;
	font-size: 13px;
	font-weight: 900;
}

.license-document i {
	display: block;
	height: 13px;
	margin-top: 11px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.14);
}

.license-markers {
	position: absolute;
	right: 18px;
	bottom: 18px;
	left: 18px;
	z-index: 2;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
}

.license-markers span {
	padding: 7px 10px;
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 999px;
	background: rgba(18, 63, 61, 0.86);
	color: var(--color-text);
	font-size: 12px;
	font-weight: 900;
}

.benefits-section h2 {
	margin-inline: auto;
	text-align: center;
}

.benefit-grid {
	display: grid;
	grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
	align-items: center;
	gap: 44px;
}

.benefit-visual {
	position: relative;
	display: grid;
	place-items: center;
	min-height: 310px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: var(--radius-md);
	background:
		radial-gradient(circle at 24% 18%, rgba(246, 212, 71, 0.18), transparent 30%),
		radial-gradient(circle at 82% 74%, rgba(21, 185, 111, 0.18), transparent 34%),
		repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.045) 0, rgba(255, 255, 255, 0.045) 1px, transparent 1px, transparent 18px),
		linear-gradient(145deg, #0b4b3b, #06261e);
	box-shadow: var(--shadow-soft);
}

.benefit-visual::before,
.benefit-visual::after {
	display: none;
	position: absolute;
	border-radius: 999px;
	content: "";
}

.benefit-visual::before {
	top: -74px;
	right: -58px;
	width: 180px;
	height: 180px;
	border: 1px solid rgba(246, 212, 71, 0.22);
}

.benefit-visual::after {
	bottom: -42px;
	left: -34px;
	width: 128px;
	height: 128px;
	background: rgba(21, 185, 111, 0.12);
}

.benefit-img,
.benefit-visual .image-fallback {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 310px;
	object-fit: cover;
}

.benefit-visual__panel {
	position: relative;
	z-index: 1;
	width: min(74%, 255px);
	padding: 26px 24px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: var(--radius-md);
	background: rgba(4, 30, 24, 0.78);
	box-shadow: 0 20px 34px rgba(0, 0, 0, 0.26);
}

.benefit-visual__panel strong {
	display: block;
	color: var(--color-yellow);
	font-size: 36px;
	font-weight: 900;
	line-height: 1;
}

.benefit-visual__panel span {
	display: inline-flex;
	margin: 18px 0 14px;
	padding: 7px 11px;
	border-radius: 999px;
	background: rgba(21, 185, 111, 0.2);
	color: #ffffff;
	font-size: 13px;
	font-weight: 900;
}

.benefit-visual__panel i {
	display: block;
	height: 14px;
	margin-top: 11px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.14);
}

.benefit-visual__badges {
	position: absolute;
	right: 18px;
	bottom: 18px;
	left: 18px;
	z-index: 2;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
}

.benefit-visual__badges span {
	padding: 7px 10px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 999px;
	background: rgba(18, 63, 61, 0.86);
	color: var(--color-text);
	font-size: 12px;
	font-weight: 900;
}

.benefit-list {
	width: min(100%, 620px);
	margin: 0;
	padding: 0;
	list-style: none;
	color: var(--color-text);
}

.benefit-list li {
	position: relative;
	margin-bottom: 19px;
	padding-left: 34px;
	line-height: 1.75;
}

.benefit-list li::before {
	position: absolute;
	top: 2px;
	left: 0;
	display: grid;
	place-items: center;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: rgba(21, 185, 111, 0.2);
	color: #54e39a;
	font-size: 14px;
	font-weight: 900;
	content: "✓";
}

.benefit-list span {
	color: var(--color-yellow);
	font-weight: 900;
}

.ecosystem-heading {
	display: grid;
	grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
	align-items: end;
	gap: 34px;
	margin-bottom: 26px;
}

.ecosystem-heading h2 {
	margin-bottom: 0;
}

.ecosystem-heading p:not(.eyebrow) {
	margin: 0;
	color: var(--color-muted);
	font-size: 16px;
	line-height: 1.66;
}

.category-board {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.9fr);
	gap: 18px;
	padding: 22px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: var(--radius-lg);
	background:
		radial-gradient(circle at 10% 10%, rgba(246, 212, 71, 0.16), transparent 28%),
		linear-gradient(135deg, rgba(8, 59, 43, 0.9), rgba(6, 26, 51, 0.94));
	box-shadow: var(--shadow-soft);
}

.user-path-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
}

.user-path-card {
	position: relative;
	display: grid;
	align-content: start;
	gap: 14px;
	min-height: 280px;
	padding: 24px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: var(--radius-md);
	background: transparent;
	box-shadow: none;
}

.user-path-card:nth-child(2n) {
	background: transparent;
}

.user-path-card span {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border-radius: 14px;
	background: rgba(246, 212, 71, 0.15);
	color: var(--color-yellow);
	font-size: 14px;
	font-weight: 900;
}

.user-path-card h3 {
	margin: 0;
	color: #ffffff;
	font-size: 22px;
	line-height: 1.2;
}

.user-path-card p {
	margin: 0;
	color: var(--color-muted);
	font-size: 14.5px;
	line-height: 1.62;
}

.category-featured {
	display: grid;
	gap: 14px;
}

.category-feature-card {
	display: grid;
	grid-template-columns: 64px minmax(0, 1fr);
	grid-template-areas:
		"code title"
		"code note";
	gap: 5px 16px;
	align-items: center;
	min-height: 112px;
	padding: 20px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: var(--radius-md);
	background: rgba(255, 255, 255, 0.1);
	color: #ffffff;
}

.category-feature-card strong {
	grid-area: title;
	color: #ffffff;
	font-size: 21px;
	font-weight: 900;
	line-height: 1.2;
}

.category-feature-card small {
	grid-area: note;
	color: #dbecea;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.45;
}

.category-code {
	grid-area: code;
	display: grid;
	place-items: center;
	width: 58px;
	height: 58px;
	border: 1px solid rgba(246, 212, 71, 0.42);
	border-radius: 18px;
	background: var(--color-yellow);
	color: #061a33;
	font-size: 24px;
	font-weight: 900;
	line-height: 1;
}

.category-compact {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	align-content: stretch;
}

.category-pill {
	display: flex;
	align-items: center;
	gap: 10px;
	min-height: 66px;
	padding: 13px 14px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: var(--radius-sm);
	background: rgba(255, 255, 255, 0.08);
	color: #ffffff;
	font-size: 14px;
	font-weight: 850;
	line-height: 1.22;
}

.category-pill span {
	display: grid;
	flex: 0 0 auto;
	place-items: center;
	width: 38px;
	height: 38px;
	border-radius: 12px;
	background: rgba(246, 212, 71, 0.18);
	color: var(--color-yellow);
	font-size: 15px;
	font-weight: 900;
}

.comparison-table {
	min-width: 680px;
}

.comparison-table thead th {
	background: rgba(18, 63, 61, 0.86);
	color: #ffffff;
	text-align: left;
}

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

.status-good,
.status-bad {
	display: inline-grid;
	place-items: center;
	width: 20px;
	height: 20px;
	margin-right: 6px;
	border-radius: 50%;
	font-size: 12px;
	font-weight: 900;
}

.status-good {
	background: rgba(21, 185, 111, 0.2);
	color: #57e39d;
}

.status-bad {
	background: rgba(246, 212, 71, 0.18);
	color: var(--color-yellow);
}

.centered-copy {
	text-align: left;
}

.payment-btn {
	margin-top: 18px;
}

.payment-copy {
	display: grid;
	grid-template-columns: 1fr;
	align-items: center;
	justify-items: center;
	gap: 18px 30px;
	width: min(calc(100% - 32px), 920px);
	max-width: none;
	margin-inline: auto;
	padding: 30px;
	border: 1px solid rgba(6, 26, 51, 0.12);
	border-left: 5px solid var(--color-yellow);
	border-radius: var(--radius-md);
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(239, 246, 255, 0.96));
	box-shadow: 0 18px 46px rgba(0, 0, 0, 0.16);
}

.payment-copy h2 {
	margin-bottom: 0;
	color: #061a33;
	text-align: center;
}

.payment-copy p {
	max-width: 820px;
	margin: 0;
	color: #17211e;
	font-size: 17px;
	font-weight: 500;
	line-height: 1.72;
	text-align: center;
}

.payment-copy .payment-btn {
	justify-self: center;
	margin-top: 0;
	white-space: nowrap;
}

.section-heading-row {
	display: grid;
	grid-template-columns: minmax(0, 0.88fr) minmax(280px, 0.72fr);
	align-items: end;
	gap: 38px;
	margin-bottom: 28px;
}

.section-heading-row h2 {
	margin-bottom: 0;
}

.section-heading-row p {
	color: var(--color-muted);
	font-size: 16px;
	line-height: 1.68;
}

.game-showcase-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.82fr) minmax(0, 0.82fr);
	gap: 16px;
}

.game-tile {
	position: relative;
	overflow: hidden;
	min-height: 360px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: var(--radius-md);
	background: var(--color-panel-2);
}

.card-cover-link {
	position: absolute;
	inset: 0;
	z-index: 3;
	font-size: 0;
}

.game-tile--large {
	min-height: 430px;
}

.game-tile__media {
	position: absolute;
	inset: 0;
}

.game-tile__media::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(3, 24, 18, 0.08), rgba(3, 24, 18, 0.88));
	content: "";
}

.game-img,
.game-tile .image-fallback {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.game-tile__body {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	padding: 24px;
}

.game-tile__body span {
	display: inline-flex;
	margin-bottom: 9px;
	color: var(--color-yellow);
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
}

.game-tile__body h3 {
	margin: 0 0 9px;
	color: #ffffff;
	font-size: 24px;
	font-weight: 900;
	line-height: 1.2;
}

.game-tile__body p {
	max-width: 520px;
	color: var(--color-muted);
	font-size: 15px;
	line-height: 1.58;
}

.review-band {
	display: grid;
	grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.35fr);
	align-items: stretch;
	gap: 28px;
	padding: 34px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: var(--radius-md);
	background:
		radial-gradient(circle at 14% 16%, rgba(246, 212, 71, 0.12), transparent 26%),
		linear-gradient(135deg, rgba(8, 59, 43, 0.95), rgba(5, 33, 27, 0.98));
}

.review-copy h2 {
	margin-bottom: 16px;
}

.review-copy p:not(.eyebrow) {
	color: var(--color-muted);
}

.review-cards {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.review-cards--visible {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.review-card {
	position: relative;
	padding: 20px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: var(--radius-md);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
		rgba(8, 59, 43, 0.86);
}

.review-card::before {
	position: absolute;
	top: 14px;
	right: 18px;
	color: rgba(246, 212, 71, 0.22);
	font-size: 52px;
	font-weight: 900;
	line-height: 1;
	content: "”";
}

.review-card span {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	margin-bottom: 16px;
	padding: 5px 10px;
	border-radius: 999px;
	background: rgba(21, 185, 111, 0.18);
	color: var(--color-yellow);
	font-size: 13px;
	font-weight: 900;
}

.review-card h3 {
	position: relative;
	z-index: 1;
	margin: 0 0 10px;
	color: #ffffff;
	font-size: 17px;
	font-weight: 900;
	line-height: 1.35;
}

.review-card p {
	color: var(--color-muted);
	font-size: 14px;
	line-height: 1.62;
}

.app-grid {
	align-items: center;
}

.app-visual {
	display: flex;
	justify-content: center;
}

.app-preview-img,
.app-visual .image-fallback {
	width: min(100%, 320px);
	aspect-ratio: 0.76;
	border-radius: 20px;
	object-fit: cover;
	box-shadow: 0 18px 36px rgba(0, 0, 0, 0.25);
}

.app-points {
	margin: 0 0 18px;
	padding: 0;
	list-style: none;
}

.app-points li {
	position: relative;
	margin-bottom: 10px;
	padding-left: 24px;
	color: var(--color-muted);
}

.app-points li::before {
	position: absolute;
	left: 0;
	color: var(--color-green);
	font-weight: 900;
	content: "✓";
}

.faq-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.faq-item {
	overflow: hidden;
	border: 1px solid rgba(255, 210, 74, 0.26);
	border-radius: var(--radius-md);
	background:
		linear-gradient(135deg, rgba(7, 22, 43, 0.96), rgba(10, 55, 48, 0.9)),
		radial-gradient(circle at 90% 10%, rgba(255, 210, 74, 0.12), transparent 32%);
	color: #f7faff;
	box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
}

.faq-item:nth-child(3n+2) {
	border-color: rgba(215, 38, 61, 0.34);
	background:
		linear-gradient(135deg, rgba(8, 26, 51, 0.96), rgba(57, 22, 37, 0.86)),
		radial-gradient(circle at 92% 12%, rgba(215, 38, 61, 0.16), transparent 34%);
}

.faq-item:nth-child(3n+3) {
	border-color: rgba(21, 185, 111, 0.32);
	background:
		linear-gradient(135deg, rgba(6, 26, 51, 0.96), rgba(7, 57, 43, 0.86)),
		radial-gradient(circle at 92% 12%, rgba(21, 185, 111, 0.16), transparent 34%);
}

.faq-question {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 24px;
	align-items: center;
	gap: 12px;
	width: 100%;
	min-height: 58px;
	padding: 16px 18px;
	border: 0;
	background: linear-gradient(90deg, rgba(255, 210, 74, 0.11), rgba(255, 255, 255, 0.02));
	color: #ffe08a;
	font-family: var(--font-main);
	font-size: 14px;
	font-weight: 800;
	line-height: 1.35;
	text-align: left;
	cursor: pointer;
}

.faq-question i {
	position: relative;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: rgba(255, 210, 74, 0.16);
	box-shadow: inset 0 0 0 1px rgba(255, 210, 74, 0.24);
}

.faq-question i::before {
	position: absolute;
	top: 50%;
	left: 50%;
	color: #ffd24a;
	font-size: 14px;
	font-weight: 900;
	content: "›";
	transform: translate(-50%, -50%) rotate(90deg);
	transition: transform 180ms ease;
}

.faq-item.is-open .faq-question i::before {
	transform: translate(-50%, -50%) rotate(-90deg);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	border-top: 0 solid rgba(255, 255, 255, 0.12);
	background: rgba(4, 13, 28, 0.44);
	transition: max-height 220ms ease, border-top-width 220ms ease;
}

.faq-item.is-open .faq-answer {
	max-height: 1200px;
	border-top-width: 1px;
}

.faq-answer p {
	padding: 14px 18px 17px;
	color: rgba(247, 250, 255, 0.86);
	font-size: 14px;
	line-height: 1.65;
}

.news-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
}

.news-card {
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: var(--radius-md);
	background: var(--color-panel-2);
}

.game-tile:hover,
.news-card:hover,
.category-feature-card:hover,
.category-pill:hover {
	border-color: rgba(246, 212, 71, 0.48);
}

.game-tile:hover .game-img,
.news-card:hover .news-img {
	transform: scale(1.035);
}

.news-media {
	position: relative;
	height: 136px;
	overflow: hidden;
	background:
		radial-gradient(circle at 24% 18%, rgba(246, 212, 71, 0.2), transparent 30%),
		linear-gradient(135deg, #0c4d3b, #071d18);
}

.news-media::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.48));
	content: "";
}

.news-img,
.news-media .image-fallback {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 220ms ease;
}

.news-body {
	padding: 14px;
}

.news-body h3 {
	margin: 0 0 8px;
	color: #ffffff;
	font-size: 16px;
	font-weight: 900;
	line-height: 1.35;
}

.news-body p {
	color: var(--color-muted);
	font-size: 14px;
	line-height: 1.55;
}

.visual-image.image-fallback {
	display: grid;
	place-items: center;
	background:
		repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0, rgba(255, 255, 255, 0.06) 1px, transparent 1px, transparent 16px),
		linear-gradient(145deg, #0b3d31, #061f19);
	color: var(--color-yellow);
	font-weight: 900;
	text-align: center;
}

.fallback-page {
	padding: 82px 0;
	text-align: center;
}

.fallback-page h1 {
	margin: 0 0 14px;
	color: #ffffff;
	font-size: 32px;
}

.fallback-page p {
	max-width: 520px;
	margin-inline: auto;
	color: var(--color-muted);
}

.inner-page {
	padding-top: 28px;
}

.inner-hero {
	padding-top: 30px;
}

.inner-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(300px, 0.76fr);
	align-items: center;
	gap: 44px;
	min-height: 360px;
	padding: 42px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: var(--radius-md);
	background:
		linear-gradient(135deg, rgba(8, 59, 43, 0.95), rgba(5, 33, 27, 0.98)),
		radial-gradient(circle at 84% 20%, rgba(246, 212, 71, 0.18), transparent 30%);
	box-shadow: var(--shadow-soft);
}

.inner-hero h1 {
	max-width: 680px;
	margin: 0 0 16px;
	color: #ffffff;
	font-size: 42px;
	font-weight: 900;
	line-height: 1.16;
}

.inner-hero p:not(.eyebrow) {
	max-width: 640px;
	color: var(--color-muted);
	font-size: 17px;
	line-height: 1.72;
}

.inner-hero__visual {
	overflow: hidden;
	border-radius: var(--radius-md);
	background: rgba(255, 255, 255, 0.06);
}

.inner-page-img,
.inner-hero__visual .image-fallback {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.inner-card-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.inner-info-card {
	padding: 24px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: var(--radius-md);
	background: rgba(8, 59, 43, 0.82);
}

.inner-info-card__media {
	overflow: hidden;
	margin: -8px -8px 18px;
	border-radius: var(--radius-sm);
	background: rgba(255, 255, 255, 0.08);
}

.inner-card-img,
.inner-info-card__media .image-fallback {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.inner-info-card h2 {
	margin: 0 0 10px;
	color: #ffffff;
	font-size: 21px;
	font-weight: 900;
	line-height: 1.25;
}

.inner-info-card h3 {
	margin: 0 0 10px;
	color: #ffffff;
	font-size: 21px;
	font-weight: 900;
	line-height: 1.25;
}

.inner-info-card p {
	color: var(--color-muted);
	font-size: 15px;
	line-height: 1.66;
}

.app-mobile-section,
.login-diagnostic-section,
.register-roadmap-section,
.bonus-terms-section,
.payment-ledger-section,
.about-purpose-section,
.contact-safe-section,
.responsible-control-section {
	padding-top: 0;
}

.app-mobile-copy,
.app-mobile-checks,
.app-option-card,
.login-diagnostic-head,
.login-flow-step,
.login-safe-panel,
.register-guardrail,
.register-roadmap-step,
.register-check-strip,
.bonus-terms-hero,
.bonus-offer-note,
.bonus-rule-panel,
.payment-ledger-head,
.payment-ledger-card,
.payment-private-box,
.about-purpose-story,
.about-principle-list article,
.about-standard-strip,
.contact-safe-copy,
.contact-method-card,
.contact-do-not-send,
.responsible-control-copy,
.responsible-control-card,
.responsible-stop-panel {
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-soft);
}

.app-mobile-copy h2,
.login-diagnostic-head h2,
.register-guardrail h2,
.bonus-terms-hero h2,
.payment-ledger-head h2,
.about-purpose-story h2,
.contact-safe-copy h2,
.responsible-control-copy h2 {
	margin: 0 0 14px;
	color: #ffffff;
	font-size: clamp(25px, 3vw, 34px);
	line-height: 1.14;
}

.app-mobile-copy p:not(.eyebrow),
.login-diagnostic-head p:not(.eyebrow),
.register-guardrail p:not(.eyebrow),
.bonus-terms-hero p:not(.eyebrow),
.payment-ledger-head p:not(.eyebrow),
.about-purpose-story p:not(.eyebrow),
.contact-safe-copy p:not(.eyebrow),
.responsible-control-copy p:not(.eyebrow) {
	color: var(--color-muted);
	font-size: 16px;
	line-height: 1.68;
}

.app-mobile-layout {
	display: grid;
	grid-template-columns: minmax(260px, 0.34fr) minmax(0, 0.4fr) minmax(230px, 0.26fr);
	gap: 18px;
	align-items: stretch;
}

.app-mobile-copy {
	display: grid;
	align-content: center;
	padding: 32px;
	background:
		linear-gradient(145deg, rgba(6, 26, 51, 0.94), rgba(8, 59, 43, 0.82)),
		radial-gradient(circle at 18% 10%, rgba(246, 212, 71, 0.18), transparent 34%);
}

.app-mobile-copy .btn,
.register-guardrail .btn,
.bonus-terms-hero .btn,
.payment-private-box .btn,
.about-purpose-story .btn,
.responsible-control-copy .btn {
	justify-self: start;
	margin-top: 4px;
}

.app-mobile-options {
	display: grid;
	gap: 12px;
}

.app-option-card {
	display: grid;
	grid-template-columns: 84px minmax(0, 1fr);
	gap: 16px;
	align-items: start;
	padding: 22px;
	background: rgba(8, 59, 43, 0.78);
}

.app-option-card span {
	display: grid;
	place-items: center;
	min-height: 66px;
	border-radius: var(--radius-sm);
	background: rgba(246, 212, 71, 0.14);
	color: var(--color-yellow);
	font-size: 13px;
	font-weight: 900;
	text-align: center;
	text-transform: uppercase;
}

.app-option-card h3,
.login-flow-step h3,
.register-roadmap-step h3,
.bonus-offer-note h3,
.payment-ledger-card h3,
.about-principle-list h3,
.contact-method-card h3,
.responsible-control-card h3 {
	margin: 0 0 9px;
	color: #ffffff;
	font-size: 20px;
	line-height: 1.25;
}

.app-option-card p,
.login-flow-step p,
.register-roadmap-step p,
.bonus-offer-note p,
.payment-ledger-card p,
.about-principle-list p,
.contact-method-card p,
.responsible-control-card p {
	color: var(--color-muted);
	font-size: 14.5px;
	line-height: 1.62;
}

.app-mobile-checks {
	display: grid;
	align-content: start;
	gap: 16px;
	padding: 24px;
	background: rgba(6, 26, 51, 0.8);
}

.app-mobile-checks h3,
.login-safe-panel h3,
.register-check-strip h3,
.bonus-rule-panel h3,
.payment-private-box h3,
.about-standard-strip h3,
.contact-do-not-send h3,
.responsible-stop-panel h3 {
	margin: 0;
	color: #ffffff;
	font-size: 22px;
	line-height: 1.24;
}

.app-mobile-checks ul,
.login-safe-panel ul,
.payment-private-box ul,
.contact-do-not-send ul,
.responsible-stop-panel ul {
	display: grid;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.app-mobile-checks li,
.login-safe-panel li,
.payment-private-box li,
.contact-do-not-send li,
.responsible-stop-panel li {
	position: relative;
	padding-left: 25px;
	color: #eef7f4;
	font-size: 14.5px;
	line-height: 1.55;
}

.app-mobile-checks li::before,
.login-safe-panel li::before,
.payment-private-box li::before,
.contact-do-not-send li::before,
.responsible-stop-panel li::before {
	position: absolute;
	top: 9px;
	left: 0;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--color-yellow);
	content: "";
}

.login-diagnostic-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(270px, 0.3fr);
	gap: 18px;
	align-items: stretch;
}

.login-diagnostic-head {
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: minmax(0, 0.66fr) auto;
	gap: 24px;
	align-items: end;
	padding: 30px;
	background:
		linear-gradient(120deg, rgba(6, 26, 51, 0.9), rgba(10, 72, 57, 0.78)),
		linear-gradient(90deg, rgba(246, 212, 71, 0.13), transparent);
}

.login-diagnostic-head::after {
	justify-self: end;
	padding: 12px 16px;
	border: 1px solid rgba(246, 212, 71, 0.34);
	border-radius: 999px;
	color: var(--color-yellow);
	font-size: 13px;
	font-weight: 900;
	content: "HTTPS + URL check";
}

.login-diagnostic-flow {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: var(--radius-md);
	background: rgba(8, 59, 43, 0.76);
	box-shadow: var(--shadow-soft);
}

.login-flow-step {
	position: relative;
	border: 0;
	border-radius: 0;
	padding: 28px 24px;
	background: transparent;
	box-shadow: none;
}

.login-flow-step + .login-flow-step {
	border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.login-flow-step span {
	display: inline-grid;
	place-items: center;
	width: 42px;
	height: 42px;
	margin-bottom: 18px;
	border-radius: 50%;
	background: rgba(246, 212, 71, 0.16);
	color: var(--color-yellow);
	font-weight: 900;
}

.login-safe-panel {
	display: grid;
	align-content: space-between;
	gap: 18px;
	padding: 26px;
	background: rgba(6, 26, 51, 0.84);
}

.register-roadmap-layout {
	display: grid;
	grid-template-columns: minmax(260px, 0.34fr) minmax(0, 0.66fr);
	grid-template-areas:
		"guard steps"
		"strip strip";
	gap: 18px;
}

.register-guardrail {
	grid-area: guard;
	display: grid;
	align-content: center;
	padding: 32px;
	background:
		radial-gradient(circle at top right, rgba(246, 212, 71, 0.16), transparent 34%),
		rgba(6, 26, 51, 0.88);
}

.register-roadmap-list {
	grid-area: steps;
	display: grid;
	gap: 14px;
}

.register-roadmap-step {
	display: grid;
	grid-template-columns: 74px minmax(0, 1fr);
	gap: 18px;
	align-items: start;
	padding: 24px;
	background: rgba(8, 59, 43, 0.76);
}

.register-roadmap-step span {
	display: grid;
	place-items: center;
	width: 58px;
	height: 58px;
	border: 1px solid rgba(246, 212, 71, 0.36);
	border-radius: 50%;
	color: var(--color-yellow);
	font-weight: 900;
}

.register-roadmap-step strong,
.about-principle-list span,
.contact-method-card span,
.responsible-control-card span {
	display: inline-block;
	margin-bottom: 8px;
	color: var(--color-yellow);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.register-check-strip {
	grid-area: strip;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	padding: 20px;
	background: rgba(6, 26, 51, 0.78);
}

.register-check-strip h3 {
	margin-right: 8px;
}

.register-check-strip span,
.about-standard-strip span,
.payment-method-strip span {
	padding: 8px 11px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.07);
	color: #eef7f4;
	font-size: 13px;
	font-weight: 800;
}

.bonus-terms-layout {
	display: grid;
	grid-template-columns: minmax(0, 0.66fr) minmax(270px, 0.34fr);
	grid-template-areas:
		"hero rule"
		"grid rule";
	gap: 18px;
}

.bonus-terms-hero {
	grid-area: hero;
	display: grid;
	align-content: center;
	min-height: 250px;
	padding: 34px;
	background:
		linear-gradient(135deg, rgba(8, 59, 43, 0.86), rgba(6, 26, 51, 0.94)),
		radial-gradient(circle at 85% 15%, rgba(246, 212, 71, 0.2), transparent 32%);
}

.bonus-terms-grid {
	grid-area: grid;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.bonus-offer-note {
	padding: 22px;
	background: rgba(8, 59, 43, 0.74);
}

.bonus-offer-note span {
	display: inline-block;
	margin-bottom: 16px;
	color: var(--color-yellow);
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
}

.bonus-rule-panel {
	grid-area: rule;
	display: grid;
	align-content: start;
	gap: 18px;
	padding: 28px;
	background: rgba(6, 26, 51, 0.84);
}

.bonus-rule-panel ol {
	display: grid;
	gap: 14px;
	margin: 0;
	padding: 0;
	counter-reset: bonus-rules;
	list-style: none;
}

.bonus-rule-panel li {
	position: relative;
	padding: 14px 14px 14px 52px;
	border: 1px solid rgba(255, 255, 255, 0.13);
	border-radius: var(--radius-sm);
	background: rgba(255, 255, 255, 0.06);
	color: #eef7f4;
	font-size: 14.5px;
	line-height: 1.55;
	counter-increment: bonus-rules;
}

.bonus-rule-panel li::before {
	position: absolute;
	top: 14px;
	left: 14px;
	color: var(--color-yellow);
	font-weight: 900;
	content: counter(bonus-rules, decimal-leading-zero);
}

.payment-ledger-layout {
	display: grid;
	grid-template-columns: minmax(0, 0.68fr) minmax(270px, 0.32fr);
	grid-template-areas:
		"head private"
		"methods private"
		"cards private";
	gap: 18px;
}

.payment-ledger-head {
	grid-area: head;
	padding: 30px;
	background: rgba(6, 26, 51, 0.88);
}

.payment-method-strip {
	grid-area: methods;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	padding: 18px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: var(--radius-md);
	background: rgba(8, 59, 43, 0.74);
	box-shadow: var(--shadow-soft);
}

.payment-ledger-cards {
	grid-area: cards;
	display: grid;
	gap: 12px;
}

.payment-ledger-card {
	display: grid;
	grid-template-columns: 110px minmax(0, 1fr);
	gap: 18px;
	align-items: start;
	padding: 22px;
	background: rgba(8, 59, 43, 0.76);
}

.payment-ledger-card span {
	color: var(--color-yellow);
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
}

.payment-private-box {
	grid-area: private;
	display: grid;
	align-content: start;
	gap: 18px;
	padding: 28px;
	background:
		linear-gradient(180deg, rgba(6, 26, 51, 0.94), rgba(8, 59, 43, 0.78)),
		radial-gradient(circle at 20% 10%, rgba(246, 212, 71, 0.14), transparent 34%);
}

.about-purpose-layout {
	display: grid;
	grid-template-columns: minmax(0, 0.46fr) minmax(0, 0.54fr);
	grid-template-areas:
		"story principles"
		"standards standards";
	gap: 18px;
}

.about-purpose-story {
	grid-area: story;
	display: grid;
	align-content: center;
	padding: 34px;
	background: rgba(6, 26, 51, 0.88);
}

.about-principle-list {
	grid-area: principles;
	display: grid;
	gap: 12px;
}

.about-principle-list article {
	padding: 22px;
	background: rgba(8, 59, 43, 0.76);
}

.about-standard-strip {
	grid-area: standards;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	padding: 20px;
	background: rgba(6, 26, 51, 0.78);
}

.about-standard-strip h3 {
	margin-right: 8px;
}

.contact-safe-layout {
	display: grid;
	grid-template-columns: minmax(260px, 0.34fr) minmax(0, 0.38fr) minmax(240px, 0.28fr);
	gap: 18px;
	align-items: stretch;
}

.contact-safe-copy {
	display: grid;
	align-content: center;
	gap: 14px;
	padding: 32px;
	background: rgba(6, 26, 51, 0.88);
}

.contact-mail-link {
	display: inline-flex;
	width: fit-content;
	max-width: 100%;
	padding: 11px 14px;
	border: 1px solid rgba(246, 212, 71, 0.36);
	border-radius: 999px;
	color: var(--color-yellow);
	font-size: 14px;
	font-weight: 900;
	overflow-wrap: anywhere;
}

.contact-method-board {
	display: grid;
	gap: 12px;
}

.contact-method-card {
	padding: 22px;
	background: rgba(8, 59, 43, 0.76);
}

.contact-do-not-send {
	display: grid;
	align-content: start;
	gap: 18px;
	padding: 26px;
	background:
		linear-gradient(180deg, rgba(6, 26, 51, 0.92), rgba(8, 59, 43, 0.8)),
		radial-gradient(circle at top right, rgba(246, 212, 71, 0.13), transparent 30%);
}

.responsible-control-layout {
	display: grid;
	grid-template-columns: minmax(0, 0.62fr) minmax(270px, 0.38fr);
	grid-template-areas:
		"copy stop"
		"cards stop";
	gap: 18px;
}

.responsible-control-copy {
	grid-area: copy;
	padding: 32px;
	background:
		linear-gradient(135deg, rgba(6, 26, 51, 0.92), rgba(8, 59, 43, 0.8)),
		radial-gradient(circle at 86% 12%, rgba(21, 185, 111, 0.18), transparent 32%);
}

.responsible-control-grid {
	grid-area: cards;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.responsible-control-card {
	padding: 22px;
	background: rgba(8, 59, 43, 0.76);
}

.responsible-stop-panel {
	grid-area: stop;
	display: grid;
	align-content: start;
	gap: 18px;
	padding: 28px;
	background: rgba(6, 26, 51, 0.88);
}

@media (max-width: 980px) {
	.app-mobile-layout,
	.contact-safe-layout {
		grid-template-columns: 1fr;
	}

	.login-diagnostic-layout,
	.bonus-terms-layout,
	.payment-ledger-layout,
	.about-purpose-layout,
	.responsible-control-layout {
		grid-template-columns: 1fr;
		grid-template-areas: none;
	}

	.login-diagnostic-head,
	.login-diagnostic-flow,
	.login-safe-panel,
	.register-guardrail,
	.register-roadmap-list,
	.register-check-strip,
	.bonus-terms-hero,
	.bonus-terms-grid,
	.bonus-rule-panel,
	.payment-ledger-head,
	.payment-method-strip,
	.payment-ledger-cards,
	.payment-private-box,
	.about-purpose-story,
	.about-principle-list,
	.about-standard-strip,
	.responsible-control-copy,
	.responsible-control-grid,
	.responsible-stop-panel {
		grid-column: auto;
		grid-area: auto;
	}

	.register-roadmap-layout {
		grid-template-columns: 1fr;
		grid-template-areas:
			"guard"
			"steps"
			"strip";
	}

	.register-guardrail {
		grid-area: guard;
	}

	.register-roadmap-list {
		grid-area: steps;
	}

	.register-check-strip {
		grid-area: strip;
	}

	.login-diagnostic-flow,
	.bonus-terms-grid,
	.responsible-control-grid {
		grid-template-columns: 1fr;
	}

	.login-flow-step + .login-flow-step {
		border-top: 1px solid rgba(255, 255, 255, 0.14);
		border-left: 0;
	}
}

@media (max-width: 768px) {
	.app-mobile-copy,
	.app-mobile-checks,
	.login-diagnostic-head,
	.login-flow-step,
	.login-safe-panel,
	.register-guardrail,
	.register-roadmap-step,
	.register-check-strip,
	.bonus-terms-hero,
	.bonus-offer-note,
	.bonus-rule-panel,
	.payment-ledger-head,
	.payment-ledger-card,
	.payment-private-box,
	.about-purpose-story,
	.about-principle-list article,
	.about-standard-strip,
	.contact-safe-copy,
	.contact-method-card,
	.contact-do-not-send,
	.responsible-control-copy,
	.responsible-control-card,
	.responsible-stop-panel {
		padding: 22px;
	}

	.login-diagnostic-head {
		grid-template-columns: 1fr;
	}

	.login-diagnostic-head::after {
		justify-self: start;
	}

	.app-option-card,
	.register-roadmap-step,
	.payment-ledger-card {
		grid-template-columns: 1fr;
	}

	.app-option-card span,
	.register-roadmap-step span {
		width: fit-content;
		min-width: 58px;
		min-height: 40px;
		padding-inline: 12px;
	}

	.register-check-strip,
	.about-standard-strip,
	.payment-method-strip {
		align-items: flex-start;
	}

	.register-check-strip h3,
	.about-standard-strip h3 {
		width: 100%;
		margin-right: 0;
	}
}

.quick-card-grid,
.feature-card-grid,
.step-list-grid,
.guide-panel-grid {
	display: grid;
	gap: 16px;
}

.quick-card-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step-list-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.guide-panel-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.quick-card,
.step-card,
.guide-panel {
	display: block;
	min-height: 100%;
	min-width: 0;
	padding: 20px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: var(--radius-md);
	background: rgba(8, 59, 43, 0.78);
	color: var(--color-muted);
	overflow-wrap: anywhere;
}

.quick-card span,
.step-card span {
	display: inline-flex;
	margin-bottom: 10px;
	color: var(--color-yellow);
	font-weight: 900;
}

.quick-card p,
.step-card p,
.guide-panel p {
	font-size: 15px;
	line-height: 1.6;
}

.step-card h3,
.guide-panel h2 {
	margin: 0 0 10px;
	color: #ffffff;
	font-size: 22px;
	line-height: 1.25;
}

.guide-panel .text-link {
	display: inline-flex;
	margin-top: 10px;
	color: var(--color-yellow);
	font-weight: 900;
}

.guide-table {
	min-width: 720px;
}

.guide-table thead th {
	background: rgba(18, 63, 61, 0.86);
	color: #ffffff;
	text-align: left;
}

.section-note {
	max-width: 820px;
	margin-top: 18px;
	color: var(--color-muted);
}

.full-guide-section {
	margin-top: 72px;
	padding: 64px 0;
	background:
		radial-gradient(circle at 12% 8%, rgba(245, 183, 0, 0.16), transparent 30%),
		radial-gradient(circle at 88% 12%, rgba(215, 38, 61, 0.16), transparent 28%),
		linear-gradient(180deg, rgba(7, 22, 43, 0.92), rgba(8, 26, 51, 0.98));
}

.brand-guide-heading {
	max-width: 780px;
	margin-bottom: 30px;
}

.brand-guide-heading h2 {
	margin-bottom: 14px;
	color: #ffffff;
}

.brand-guide-heading p:not(.eyebrow) {
	max-width: 720px;
	color: #f3f8ff;
	font-size: 17px;
	line-height: 1.65;
}

.brand-guide-layout {
	display: grid;
	grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
	gap: 28px;
	align-items: start;
}

.brand-guide-rail {
	position: sticky;
	top: calc(var(--header-height) + 22px);
	padding: 22px;
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: var(--radius-md);
	background: rgba(6, 22, 43, 0.96);
	box-shadow: var(--shadow-soft);
}

.brand-guide-rail__label {
	display: block;
	margin-bottom: 12px;
	color: var(--color-yellow);
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
}

.brand-guide-rail ol {
	display: grid;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.brand-guide-rail a {
	display: block;
	padding: 9px 11px;
	border-radius: var(--radius-sm);
	background: rgba(255, 255, 255, 0.12);
	color: #f8fbff;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.3;
}

.brand-guide-rail a:hover,
.brand-guide-rail a:focus {
	background: rgba(245, 183, 0, 0.18);
	color: var(--color-yellow);
}

.guide-safety-note {
	margin-top: 18px;
	padding-top: 16px;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.guide-safety-note strong {
	display: block;
	margin-bottom: 6px;
	color: var(--color-yellow);
}

.guide-safety-note p {
	color: #f0f6ff;
	font-size: 14px;
	line-height: 1.55;
}

.brand-guide-content {
	display: grid;
	gap: 18px;
	min-width: 0;
}

.guide-article-section {
	display: grid;
	grid-template-columns: 52px minmax(0, 1fr);
	gap: 18px;
	padding: 26px;
	border: 1px solid rgba(255, 210, 74, 0.24);
	border-left: 4px solid #ffd24a;
	border-radius: var(--radius-md);
	background:
		linear-gradient(135deg, rgba(8, 26, 51, 0.96), rgba(6, 44, 48, 0.9)),
		radial-gradient(circle at 94% 10%, rgba(255, 210, 74, 0.1), transparent 30%);
	color: #f7faff;
	box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
	overflow-wrap: anywhere;
}

.guide-article-section:nth-child(3n+2) {
	border-color: rgba(215, 38, 61, 0.28);
	border-left-color: #d7263d;
	background:
		linear-gradient(135deg, rgba(8, 26, 51, 0.96), rgba(58, 23, 39, 0.88)),
		radial-gradient(circle at 94% 10%, rgba(215, 38, 61, 0.12), transparent 30%);
}

.guide-article-section:nth-child(3n+3) {
	border-color: rgba(21, 185, 111, 0.28);
	border-left-color: #15b96f;
	background:
		linear-gradient(135deg, rgba(8, 26, 51, 0.96), rgba(7, 55, 43, 0.88)),
		radial-gradient(circle at 94% 10%, rgba(21, 185, 111, 0.12), transparent 30%);
}

.chapter-number {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #ffd24a;
	color: #081a33;
	font-size: 14px;
	font-weight: 900;
	box-shadow: 0 10px 22px rgba(0, 0, 0, 0.24);
}

.guide-article-section:nth-child(3n+2) .chapter-number {
	background: #d7263d;
	color: #ffffff;
}

.guide-article-section:nth-child(3n+3) .chapter-number {
	background: #15b96f;
	color: #031f18;
}

.chapter-copy h3 {
	margin: 0 0 12px;
	color: #ffe08a;
	font-size: 23px;
	line-height: 1.3;
}

.guide-article-section:nth-child(3n+2) .chapter-copy h3 {
	color: #ffb3be;
}

.guide-article-section:nth-child(3n+3) .chapter-copy h3 {
	color: #a9ffd4;
}

.chapter-copy p {
	margin-bottom: 14px;
	color: rgba(247, 250, 255, 0.86);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.76;
}

.chapter-copy p:last-child {
	margin-bottom: 0;
}

.inner-notice {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 24px;
	margin-top: 18px;
	padding: 26px;
	border: 1px solid rgba(246, 212, 71, 0.28);
	border-radius: var(--radius-md);
	background: rgba(18, 63, 61, 0.76);
}

.inner-notice h2 {
	margin: 0 0 8px;
	color: #ffffff;
	font-size: 22px;
	font-weight: 900;
	line-height: 1.25;
}

.inner-notice p {
	color: var(--color-muted);
}

.btn-ghost {
	border: 1px solid rgba(255, 255, 255, 0.28);
	background: rgba(255, 255, 255, 0.08);
	color: #ffffff;
}

.inner-section h2 {
	margin-bottom: 18px;
	text-align: left;
}

.inner-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 22px;
}

.inner-visual {
	position: relative;
	display: grid;
	place-items: center;
	min-height: 320px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: var(--radius-md);
	background:
		radial-gradient(circle at 22% 18%, rgba(246, 212, 71, 0.18), transparent 28%),
		radial-gradient(circle at 82% 76%, rgba(21, 185, 111, 0.18), transparent 32%),
		repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.045) 0, rgba(255, 255, 255, 0.045) 1px, transparent 1px, transparent 17px),
		linear-gradient(145deg, #0a4939, #06271f);
}

.inner-visual::before,
.inner-visual::after {
	position: absolute;
	border-radius: 999px;
	content: "";
}

.inner-visual::before {
	top: -70px;
	right: -60px;
	width: 190px;
	height: 190px;
	border: 1px solid rgba(246, 212, 71, 0.2);
}

.inner-visual::after {
	bottom: -52px;
	left: -40px;
	width: 150px;
	height: 150px;
	background: rgba(21, 185, 111, 0.1);
}

.inner-visual--app::before,
.inner-visual--app::after,
.inner-visual--login::before,
.inner-visual--login::after,
.inner-visual--register::before,
.inner-visual--register::after,
.inner-visual--bonus::before,
.inner-visual--bonus::after,
.inner-visual--payment::before,
.inner-visual--payment::after,
.inner-visual--faq::before,
.inner-visual--faq::after,
.inner-visual--games::before,
.inner-visual--games::after,
.inner-visual--about::before,
.inner-visual--about::after,
.inner-visual--contact::before,
.inner-visual--contact::after,
.inner-visual--responsible::before,
.inner-visual--responsible::after {
	display: none;
}

.inner-visual-img,
.inner-visual--app .image-fallback,
.inner-visual--login .image-fallback,
.inner-visual--register .image-fallback,
.inner-visual--bonus .image-fallback,
.inner-visual--payment .image-fallback,
.inner-visual--faq .image-fallback,
.inner-visual--games .image-fallback,
.inner-visual--about .image-fallback,
.inner-visual--contact .image-fallback,
.inner-visual--responsible .image-fallback {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 320px;
	object-fit: cover;
}

.visual-phone,
.visual-gateway,
.visual-form-card,
.visual-wallet,
.visual-game-grid,
.visual-faq-board,
.visual-document,
.visual-brand-panel {
	position: relative;
	z-index: 1;
}

.visual-phone {
	width: 166px;
	min-height: 270px;
	padding: 16px 12px;
	border: 8px solid rgba(255, 255, 255, 0.84);
	border-radius: 28px;
	background: #062019;
	box-shadow: 0 24px 36px rgba(0, 0, 0, 0.28);
}

.phone-notch {
	display: block;
	width: 54px;
	height: 6px;
	margin: 0 auto 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.38);
}

.phone-screen {
	display: grid;
	gap: 10px;
	min-height: 210px;
	padding: 18px 14px;
	border-radius: 18px;
	background: linear-gradient(180deg, #0d5a45, #082d24);
}

.phone-screen strong,
.phone-screen em {
	color: var(--color-yellow);
	font-style: normal;
	font-weight: 900;
}

.phone-screen i {
	display: block;
	height: 30px;
	border-radius: 6px;
	background: rgba(255, 255, 255, 0.12);
}

.visual-chip {
	position: absolute;
	z-index: 2;
	padding: 7px 12px;
	border-radius: 999px;
	background: rgba(246, 212, 71, 0.18);
	color: var(--color-yellow);
	font-size: 13px;
	font-weight: 900;
}

.visual-chip--one {
	top: 56px;
	left: 46px;
}

.visual-chip--two {
	right: 38px;
	bottom: 54px;
}

.visual-gateway,
.visual-form-card,
.visual-wallet,
.visual-faq-board,
.visual-document,
.visual-brand-panel {
	width: min(78%, 280px);
	padding: 26px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: var(--radius-md);
	background: rgba(4, 29, 23, 0.74);
	box-shadow: 0 20px 32px rgba(0, 0, 0, 0.22);
}

.visual-gateway strong,
.visual-form-card strong,
.visual-wallet strong,
.visual-faq-board strong,
.visual-document strong,
.visual-brand-panel strong {
	display: block;
	margin-bottom: 18px;
	color: #ffffff;
	font-size: 26px;
	font-weight: 900;
}

.gateway-lock {
	display: grid;
	place-items: center;
	width: 58px;
	height: 58px;
	margin-bottom: 18px;
	border-radius: 50%;
	background: rgba(21, 185, 111, 0.2);
}

.gateway-lock::before {
	color: var(--color-yellow);
	font-size: 26px;
	content: "•";
}

.visual-gateway i,
.visual-form-card span,
.visual-faq-board span,
.visual-document span,
.visual-brand-panel span {
	display: block;
	height: 14px;
	margin-top: 12px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.14);
}

.visual-form-card b {
	display: block;
	width: 56%;
	height: 38px;
	margin-top: 18px;
	border-radius: var(--radius-sm);
	background: var(--color-green);
}

.visual-wallet {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
}

.visual-wallet strong {
	grid-column: 1 / -1;
}

.visual-wallet span {
	padding: 12px 10px;
	border-radius: var(--radius-sm);
	background: rgba(255, 255, 255, 0.11);
	color: var(--color-text);
	font-weight: 800;
	text-align: center;
}

.visual-wallet i {
	grid-column: 1 / -1;
	height: 42px;
	border-radius: var(--radius-sm);
	background: linear-gradient(90deg, var(--color-green), rgba(246, 212, 71, 0.82));
}

.visual-game-grid {
	display: grid;
	grid-template-columns: repeat(3, 68px);
	gap: 12px;
}

.visual-game-grid span {
	display: grid;
	place-items: center;
	aspect-ratio: 1;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: var(--radius-md);
	background: rgba(255, 255, 255, 0.09);
	font-size: 30px;
}

.inner-info-card span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 34px;
	height: 28px;
	margin-bottom: 14px;
	border-radius: 999px;
	background: rgba(246, 212, 71, 0.16);
	color: var(--color-yellow);
	font-size: 13px;
	font-weight: 900;
}

.app-layout-grid,
.register-layout,
.payment-layout,
.games-layout,
.bonus-layout,
.support-layout,
.about-layout,
.legal-layout {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	align-items: start;
	gap: 36px;
}

.app-device-panel,
.register-checklist,
.bonus-ticket,
.legal-toc {
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: var(--radius-md);
	background: rgba(8, 59, 43, 0.72);
}

.app-device-panel {
	display: grid;
	place-items: center;
	min-height: 430px;
	overflow: hidden;
	padding: 0;
}

.app-device-img,
.app-device-panel .image-fallback {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 430px;
	object-fit: cover;
}

.app-device-shell {
	width: min(100%, 245px);
	padding: 12px;
	border-radius: 34px;
	background: rgba(255, 255, 255, 0.86);
}

.app-device-screen {
	display: grid;
	gap: 12px;
	min-height: 360px;
	padding: 24px 18px;
	border-radius: 26px;
	background:
		radial-gradient(circle at 78% 16%, rgba(246, 212, 71, 0.24), transparent 34%),
		linear-gradient(180deg, #0d5a45, #061f19);
}

.app-device-screen strong {
	color: var(--color-yellow);
	font-size: 34px;
	font-weight: 900;
}

.app-device-screen span {
	color: #ffffff;
	font-weight: 800;
}

.app-device-screen i {
	display: block;
	height: 58px;
	border-radius: var(--radius-md);
	background: rgba(255, 255, 255, 0.1);
}

.device-row,
.payment-methods,
.security-checklist {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 18px;
}

.device-row span,
.payment-methods span,
.security-checklist span {
	padding: 9px 13px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	color: var(--color-text);
	font-size: 14px;
	font-weight: 800;
}

.troubleshooting-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 18px;
}

.troubleshooting-grid article,
.split-panel,
.payment-flow,
.support-layout,
.about-layout {
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: var(--radius-md);
	background: rgba(8, 59, 43, 0.72);
}

.troubleshooting-grid article {
	padding: 26px;
}

.split-panel {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr);
	align-items: center;
	gap: 28px;
	padding: 30px;
}

.register-checklist {
	padding: 30px;
}

.register-checklist ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.register-checklist li {
	position: relative;
	margin-bottom: 16px;
	padding-left: 28px;
	color: var(--color-text);
}

.register-checklist li::before {
	position: absolute;
	left: 0;
	color: var(--color-green);
	font-weight: 900;
	content: "✓";
}

.inner-card-grid--timeline,
.inner-card-grid--steps,
.inner-card-grid--flow,
.inner-card-grid--legal {
	grid-template-columns: 1fr;
}

.inner-card-grid--access,
.inner-card-grid--bonus,
.inner-card-grid--support,
.inner-card-grid--about {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.inner-card-grid--games {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	align-items: stretch;
}

.payment-layout {
	grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
	align-items: center;
}

.payment-methods span {
	border-radius: var(--radius-sm);
}

.payment-flow {
	margin-top: 18px;
	padding: 22px;
}

.games-layout {
	grid-template-columns: minmax(250px, 0.32fr) minmax(0, 0.68fr);
	align-items: start;
	gap: 22px;
}

.games-focus-panel {
	position: sticky;
	top: 92px;
	display: grid;
	grid-template-columns: 1fr;
	gap: 18px;
	align-items: start;
	padding: 24px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: var(--radius-md);
	background:
		linear-gradient(135deg, rgba(6, 26, 51, 0.92), rgba(8, 59, 43, 0.82)),
		radial-gradient(circle at 82% 20%, rgba(246, 212, 71, 0.16), transparent 34%);
	box-shadow: var(--shadow-soft);
}

.games-focus-panel h2 {
	margin: 0 0 12px;
	color: #ffffff;
	font-size: 26px;
	line-height: 1.18;
}

.games-focus-panel__copy > p:not(.eyebrow) {
	color: var(--color-muted);
	font-size: 15px;
	line-height: 1.62;
}

.games-focus-panel__side {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: flex-start;
}

.games-focus-panel__side span,
.games-focus-panel .text-link {
	display: inline-flex;
	align-items: center;
	min-height: 42px;
	padding: 10px 14px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.09);
	color: #ffffff;
	font-size: 14px;
	font-weight: 900;
}

.games-focus-panel .text-link {
	background: var(--color-yellow);
	color: #061a33;
	text-decoration: none;
}

.games-focus-list {
	display: grid;
	gap: 8px;
	padding-top: 2px;
}

.games-focus-list a {
	display: grid;
	grid-template-columns: 34px minmax(0, 1fr);
	align-items: center;
	gap: 10px;
	padding: 10px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: var(--radius-sm);
	background: rgba(255, 255, 255, 0.08);
	color: #ffffff;
	font-size: 14px;
	font-weight: 850;
	text-decoration: none;
}

.games-focus-list span {
	display: grid;
	place-items: center;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: rgba(246, 212, 71, 0.17);
	color: var(--color-yellow);
	font-size: 12px;
	font-weight: 900;
}

.games-category-card {
	display: grid;
	grid-template-rows: auto auto auto 1fr;
	overflow: hidden;
	padding: 0;
	background: rgba(6, 26, 51, 0.78);
}

.games-category-card--featured {
	background: linear-gradient(180deg, rgba(9, 73, 55, 0.86), rgba(6, 26, 51, 0.86));
}

.games-category-card .inner-info-card__media {
	margin: 0;
	border-radius: 0;
}

.games-category-card .inner-card-img,
.games-category-card .inner-info-card__media .image-fallback {
	aspect-ratio: 16 / 9;
}

.games-category-card .inner-card-img {
	color: transparent;
	font-size: 0;
}

.games-category-card > span {
	margin: 18px 18px 10px;
}

.games-category-card h2 {
	margin: 0 18px 10px;
	font-size: 20px;
}

.games-category-card p {
	margin: 0;
	padding: 0 18px 22px;
	font-size: 14.5px;
	line-height: 1.62;
}

.games-guide-section {
	padding-top: 0;
}

.games-insight-board {
	display: grid;
	gap: 22px;
}

.games-insight-head,
.games-path-panel,
.games-safety-board {
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: var(--radius-md);
	background: rgba(8, 59, 43, 0.78);
	box-shadow: var(--shadow-soft);
}

.games-insight-head {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(240px, 0.34fr);
	gap: 24px;
	align-items: end;
	padding: 28px;
	background:
		linear-gradient(135deg, rgba(6, 26, 51, 0.9), rgba(9, 73, 55, 0.78)),
		radial-gradient(circle at 92% 18%, rgba(246, 212, 71, 0.14), transparent 30%);
}

.games-insight-head h2,
.games-path-copy h2,
.games-safety-copy h2 {
	margin-bottom: 12px;
	color: #ffffff;
	font-size: 28px;
	line-height: 1.22;
}

.games-insight-head p:not(.eyebrow),
.games-path-copy p:not(.eyebrow),
.games-safety-copy > p:not(.eyebrow) {
	color: var(--color-muted);
	font-size: 16px;
	line-height: 1.68;
}

.games-insight-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: flex-end;
}

.games-insight-badges span {
	display: inline-flex;
	align-items: center;
	min-height: 40px;
	padding: 9px 13px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.09);
	color: #ffffff;
	font-size: 14px;
	font-weight: 900;
}

.games-note-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.games-note-card {
	display: grid;
	align-content: start;
	min-height: 176px;
	padding: 20px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: var(--radius-md);
	background: linear-gradient(180deg, rgba(6, 26, 51, 0.82), rgba(8, 59, 43, 0.68));
}

.games-note-card span {
	justify-self: start;
	margin-bottom: 14px;
	padding: 7px 10px;
	border-radius: 999px;
	background: rgba(246, 212, 71, 0.14);
	color: var(--color-yellow);
	font-size: 12px;
	font-weight: 900;
}

.games-note-card h3 {
	margin: 0 0 10px;
	color: #ffffff;
	font-size: 20px;
	line-height: 1.24;
}

.games-note-card p {
	color: var(--color-muted);
	font-size: 14.5px;
	line-height: 1.62;
}

.games-path-panel {
	display: grid;
	grid-template-columns: minmax(250px, 0.34fr) minmax(0, 0.66fr);
	gap: 24px;
	padding: 28px;
	background:
		linear-gradient(135deg, rgba(8, 59, 43, 0.78), rgba(6, 26, 51, 0.82)),
		radial-gradient(circle at 12% 12%, rgba(34, 197, 94, 0.14), transparent 28%);
}

.games-path-steps {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.games-path-step {
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr);
	gap: 14px;
	padding: 16px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: var(--radius-sm);
	background: rgba(255, 255, 255, 0.08);
}

.games-path-step > span {
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--color-yellow);
	color: #061a33;
	font-size: 13px;
	font-weight: 900;
}

.games-path-step h3 {
	margin: 0 0 6px;
	color: #ffffff;
	font-size: 18px;
	line-height: 1.25;
}

.games-path-step p {
	color: var(--color-muted);
	font-size: 15px;
	line-height: 1.62;
}

.games-safety-section {
	padding-top: 0;
}

.games-safety-board {
	display: grid;
	grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
	gap: 24px;
	padding: 28px;
}

.games-safety-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.games-safety-list li {
	position: relative;
	padding: 15px 15px 15px 42px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: var(--radius-sm);
	background: rgba(255, 255, 255, 0.08);
	color: #eef7f4;
	font-size: 15px;
	line-height: 1.55;
}

.games-safety-list li::before {
	position: absolute;
	top: 15px;
	left: 15px;
	display: grid;
	place-items: center;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: rgba(246, 212, 71, 0.2);
	color: var(--color-yellow);
	font-size: 12px;
	font-weight: 900;
	content: "✓";
}

.games-responsible-note {
	grid-column: 1 / -1;
	padding: 20px;
	border: 1px solid rgba(246, 212, 71, 0.26);
	border-radius: var(--radius-sm);
	background: rgba(6, 26, 51, 0.72);
}

.games-responsible-note strong {
	display: block;
	margin-bottom: 8px;
	color: var(--color-yellow);
	font-size: 18px;
}

.games-responsible-note p {
	color: #edf8f4;
	line-height: 1.7;
}

.inner-card-grid--compact {
	grid-template-columns: 1fr;
	margin-top: 20px;
}

.inner-layout {
	display: grid;
	grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
	align-items: start;
	gap: 28px;
}

.inner-layout--login,
.inner-layout--register,
.inner-layout--bonus,
.inner-layout--payment,
.inner-layout--about,
.inner-layout--contact,
.inner-layout--responsible {
	grid-template-columns: minmax(0, 1fr);
}

.bonus-layout {
	align-items: center;
}

.bonus-ticket {
	position: relative;
	min-height: 260px;
	padding: 32px;
	background:
		linear-gradient(135deg, rgba(246, 212, 71, 0.14), rgba(21, 185, 111, 0.08)),
		rgba(8, 59, 43, 0.78);
}

.bonus-ticket::before,
.bonus-ticket::after {
	position: absolute;
	top: 50%;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: var(--color-page);
	content: "";
	transform: translateY(-50%);
}

.bonus-ticket::before {
	left: -17px;
}

.bonus-ticket::after {
	right: -17px;
}

.bonus-ticket strong {
	display: block;
	color: var(--color-yellow);
	font-size: 48px;
	font-weight: 900;
	line-height: 1;
}

.bonus-ticket span {
	display: inline-flex;
	margin-top: 22px;
	padding: 8px 12px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.1);
	color: #ffffff;
	font-weight: 900;
}

.inner-faq-list {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 14px;
	max-width: 780px;
}

.faq-page-section {
	padding-top: 0;
}

.faq-page-layout {
	display: grid;
	grid-template-columns: minmax(260px, 0.34fr) minmax(0, 0.66fr);
	gap: 24px;
	align-items: start;
}

.faq-page-sidebar,
.faq-page-main-head {
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: var(--radius-md);
	background: rgba(8, 59, 43, 0.78);
	box-shadow: var(--shadow-soft);
}

.faq-page-sidebar {
	position: sticky;
	top: 92px;
	padding: 26px;
}

.faq-page-sidebar h2,
.faq-page-main-head h2 {
	margin: 0 0 12px;
	color: #ffffff;
	font-size: 28px;
	line-height: 1.2;
}

.faq-page-sidebar p:not(.eyebrow),
.faq-page-main-head p:not(.eyebrow) {
	color: var(--color-muted);
	font-size: 15px;
	line-height: 1.64;
}

.faq-topic-list {
	display: grid;
	gap: 10px;
	margin: 20px 0;
}

.faq-topic-list a {
	display: grid;
	grid-template-columns: 82px minmax(0, 1fr);
	align-items: center;
	gap: 10px;
	padding: 11px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: var(--radius-sm);
	background: rgba(255, 255, 255, 0.08);
	color: #ffffff;
	font-size: 14px;
	font-weight: 850;
	text-decoration: none;
}

.faq-topic-list span {
	display: inline-flex;
	justify-content: center;
	padding: 7px 9px;
	border-radius: 999px;
	background: rgba(246, 212, 71, 0.16);
	color: var(--color-yellow);
	font-size: 12px;
	font-weight: 900;
}

.faq-safe-note {
	padding: 18px;
	border: 1px solid rgba(246, 212, 71, 0.24);
	border-radius: var(--radius-sm);
	background: rgba(6, 26, 51, 0.72);
}

.faq-safe-note strong {
	display: block;
	margin-bottom: 8px;
	color: #ffffff;
	font-weight: 900;
}

.faq-page-main {
	min-width: 0;
}

.faq-page-main-head {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(220px, 0.34fr);
	gap: 22px;
	align-items: end;
	margin-bottom: 18px;
	padding: 26px;
	background:
		linear-gradient(135deg, rgba(6, 26, 51, 0.92), rgba(8, 59, 43, 0.78)),
		radial-gradient(circle at 92% 18%, rgba(246, 212, 71, 0.14), transparent 32%);
}

.faq-page-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: flex-end;
}

.faq-page-badges span {
	display: inline-flex;
	align-items: center;
	min-height: 40px;
	padding: 9px 13px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.09);
	color: #ffffff;
	font-size: 14px;
	font-weight: 900;
}

.faq-page-accordion {
	max-width: none;
	gap: 12px;
}

.faq-page-accordion .faq-item {
	border: 1px solid rgba(255, 255, 255, 0.16);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.14);
}

.faq-page-accordion .faq-question {
	min-height: 64px;
	padding: 18px 20px;
	font-size: 16px;
}

.faq-page-accordion .faq-answer p {
	padding: 17px 20px 20px;
	font-size: 15px;
	line-height: 1.72;
}

.support-layout,
.about-layout {
	padding: 30px;
}

.support-layout {
	grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
	align-items: center;
}

.about-timeline {
	display: grid;
	gap: 14px;
}

.about-timeline span {
	position: relative;
	display: block;
	padding: 16px 18px 16px 46px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: var(--radius-md);
	background: rgba(255, 255, 255, 0.07);
	color: #ffffff;
	font-weight: 900;
}

.about-timeline span::before {
	position: absolute;
	top: 50%;
	left: 18px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--color-green);
	content: "";
	transform: translateY(-50%);
}

.legal-layout {
	grid-template-columns: 210px minmax(0, 1fr);
	align-items: start;
}

.legal-toc {
	position: sticky;
	top: calc(var(--header-height) + 24px);
	display: grid;
	gap: 8px;
	padding: 16px;
}

.legal-toc a {
	padding: 10px 12px;
	border-radius: var(--radius-sm);
	background: rgba(255, 255, 255, 0.07);
	color: var(--color-text);
	font-weight: 800;
}

.legal-copy {
	max-width: 760px;
}

.inner-page--app .inner-hero__grid {
	background:
		linear-gradient(135deg, rgba(8, 59, 43, 0.94), rgba(4, 31, 25, 0.98)),
		radial-gradient(circle at 82% 24%, rgba(21, 185, 111, 0.22), transparent 32%);
}

.inner-page--login .inner-hero__grid {
	background:
		linear-gradient(135deg, rgba(6, 35, 31, 0.96), rgba(7, 28, 38, 0.98)),
		radial-gradient(circle at 78% 24%, rgba(124, 67, 217, 0.2), transparent 32%);
}

.inner-page--register .inner-hero__grid {
	background:
		linear-gradient(135deg, rgba(9, 54, 39, 0.96), rgba(4, 30, 23, 0.98)),
		radial-gradient(circle at 76% 18%, rgba(246, 212, 71, 0.2), transparent 30%);
}

.inner-page--payment .inner-hero__grid {
	background:
		linear-gradient(135deg, rgba(5, 42, 33, 0.96), rgba(10, 39, 33, 0.98)),
		radial-gradient(circle at 78% 22%, rgba(246, 212, 71, 0.18), transparent 32%);
}

.inner-page--games .inner-hero__grid {
	background:
		linear-gradient(135deg, rgba(6, 43, 33, 0.96), rgba(4, 28, 22, 0.98)),
		radial-gradient(circle at 77% 22%, rgba(21, 185, 111, 0.2), transparent 32%),
		repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.035) 0, rgba(255, 255, 255, 0.035) 1px, transparent 1px, transparent 18px);
}

.inner-page--bonus .inner-hero__grid {
	background:
		linear-gradient(135deg, rgba(8, 59, 43, 0.95), rgba(6, 26, 51, 0.98)),
		radial-gradient(circle at 82% 18%, rgba(246, 212, 71, 0.22), transparent 32%);
}

.inner-page--faq .inner-hero__grid {
	background:
		linear-gradient(135deg, rgba(7, 34, 45, 0.96), rgba(5, 31, 26, 0.98)),
		radial-gradient(circle at 78% 22%, rgba(124, 67, 217, 0.18), transparent 30%);
}

.inner-page--about .inner-hero__grid {
	background:
		linear-gradient(135deg, rgba(6, 39, 35, 0.96), rgba(4, 28, 22, 0.98)),
		radial-gradient(circle at 74% 18%, rgba(21, 185, 111, 0.18), transparent 32%);
}

.inner-page--contact .inner-hero__grid {
	background:
		linear-gradient(135deg, rgba(6, 26, 51, 0.96), rgba(8, 59, 43, 0.9)),
		radial-gradient(circle at 18% 20%, rgba(246, 212, 71, 0.18), transparent 30%);
}

.inner-page--responsible .inner-hero__grid {
	background:
		linear-gradient(135deg, rgba(5, 34, 28, 0.98), rgba(8, 59, 43, 0.88)),
		radial-gradient(circle at 82% 24%, rgba(21, 185, 111, 0.22), transparent 34%);
}

@media (min-width: 981px) {
	.inner-page--register .inner-visual,
	.inner-page--contact .inner-visual {
		grid-column: 1;
		grid-row: 1;
	}

	.inner-page--register .inner-hero__copy,
	.inner-page--contact .inner-hero__copy {
		grid-column: 2;
		grid-row: 1;
	}

	.inner-page--bonus .inner-hero__grid {
		grid-template-columns: minmax(0, 0.7fr) minmax(280px, 0.3fr);
	}

	.inner-page--faq .inner-hero__grid,
	.inner-page--responsible .inner-hero__grid {
		grid-template-columns: minmax(0, 0.58fr) minmax(310px, 0.42fr);
	}

	.inner-page--about .inner-hero__grid {
		grid-template-columns: minmax(0, 0.52fr) minmax(320px, 0.48fr);
	}

	.inner-page--contact .inner-hero__grid,
	.inner-page--register .inner-hero__grid {
		grid-template-columns: minmax(310px, 0.42fr) minmax(0, 0.58fr);
	}
}

.site-footer {
	margin-top: 78px;
	padding-top: 42px;
	background: var(--color-header);
	color: var(--color-muted);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.25fr 0.8fr 0.8fr 0.9fr 1.15fr;
	gap: 24px;
}

.footer-title {
	margin: 14px 0 12px;
	color: #ffffff;
	font-size: 16px;
	font-weight: 900;
	line-height: 1.3;
}

.footer-brand p,
.footer-info p {
	color: var(--color-muted);
	font-size: 14px;
	line-height: 1.65;
}

.footer-links ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-links li {
	margin-bottom: 10px;
}

.footer-links a,
.footer-info a {
	color: #e9fff8;
}

.footer-links a:hover,
.footer-info a:hover {
	color: var(--color-yellow);
}

.footer-info {
	overflow-wrap: anywhere;
}

.archive-page .inner-hero,
.single-page .single-hero {
	padding-top: 30px;
}

.archive-grid {
	align-items: stretch;
}

.news-body .text-link {
	display: inline-flex;
	margin-top: 12px;
	color: var(--color-yellow);
	font-weight: 900;
}

.single-hero__inner {
	max-width: 820px;
	padding: 44px 0 24px;
}

.single-hero h1 {
	margin: 0 0 14px;
	color: #ffffff;
	font-size: 42px;
	font-weight: 900;
	line-height: 1.18;
}

.single-hero p:not(.eyebrow) {
	color: var(--color-muted);
	font-size: 17px;
	line-height: 1.7;
}

.single-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 300px;
	gap: 28px;
	align-items: start;
	margin-top: 28px;
}

.single-content {
	padding: 28px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: var(--radius-md);
	background: rgba(8, 59, 43, 0.66);
}

.single-content h2,
.single-content h3 {
	color: #ffffff;
	line-height: 1.3;
}

.single-content a {
	color: var(--color-yellow);
	font-weight: 800;
}

.single-featured {
	margin: 0 0 24px;
	overflow: hidden;
	border-radius: var(--radius-md);
}

.single-sidebar {
	position: sticky;
	top: calc(var(--header-height) + 24px);
	padding: 24px;
	border: 1px solid rgba(246, 212, 71, 0.24);
	border-radius: var(--radius-md);
	background: rgba(18, 63, 61, 0.78);
}

.single-sidebar h2 {
	margin: 0 0 10px;
	color: #ffffff;
	font-size: 22px;
	line-height: 1.25;
}

.footer-bottom {
	margin-top: 34px;
	padding: 18px 16px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	text-align: center;
}

.footer-bottom p {
	color: #d8e9e5;
	font-size: 13px;
}

.floating-cta {
	position: fixed;
	right: 24px;
	bottom: max(18px, env(safe-area-inset-bottom));
	left: 24px;
	z-index: 1001;
	display: flex;
	justify-content: center;
	pointer-events: none;
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 180ms ease, transform 180ms ease;
}

.floating-cta.is-visible {
	pointer-events: auto;
	opacity: 1;
	transform: translateY(0);
}

.floating-cta__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	width: min(100%, 390px);
	min-height: 58px;
	padding: 10px 22px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 999px;
	background: linear-gradient(135deg, var(--color-yellow), #22c55e);
	color: #061a33;
	box-shadow: 0 18px 36px rgba(0, 0, 0, 0.34);
	font-weight: 900;
	text-align: center;
	text-decoration: none;
}

.floating-cta__button:hover,
.floating-cta__button:focus {
	transform: translateY(-1px);
	box-shadow: 0 20px 42px rgba(0, 0, 0, 0.38);
}

.floating-cta__label {
	font-size: 17px;
	line-height: 1.15;
}

.floating-cta__note {
	padding-left: 12px;
	border-left: 1px solid rgba(6, 26, 51, 0.24);
	font-size: 12px;
	line-height: 1.2;
	opacity: 0.86;
}

.back-to-top {
	position: fixed;
	right: 18px;
	bottom: 22px;
	z-index: 1002;
	display: inline-grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 50%;
	background: rgba(18, 63, 61, 0.94);
	color: #ffffff;
	font-family: var(--font-main);
	font-size: 22px;
	font-weight: 900;
	line-height: 1;
	box-shadow: 0 12px 26px rgba(0, 0, 0, 0.28);
	cursor: pointer;
	opacity: 0;
	pointer-events: none;
	transform: translateY(10px);
	transition: opacity 180ms ease, transform 180ms ease, background-color 180ms ease;
}

.back-to-top.is-visible {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus {
	background: var(--color-green);
}

@media (max-width: 782px) {
	.admin-bar .site-header {
		top: 46px;
	}
}

	@media (max-width: 768px) {
	:root {
		--topbar-height: 32px;
		--nav-height: 66px;
		--header-height: 98px;
	}

		body {
			padding-bottom: 100px;
			font-size: 16px;
			line-height: 1.82;
		}

	.site-header__inner {
		position: relative;
		grid-template-columns: auto auto;
		align-content: center;
		justify-content: space-between;
		gap: 14px;
		height: var(--nav-height);
		padding-block: 0;
	}

		.brand-logo--header,
		.custom-logo {
			max-width: 128px;
			max-height: 42px;
		}

		.brand-logo--header.brand-logo--image {
			width: 118px;
			height: 44px;
			max-width: none;
			max-height: none;
			border-radius: 9px;
		}

	.site-header__brand {
		display: flex;
		justify-content: flex-start;
		width: 100%;
	}

	.menu-toggle {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		gap: 9px;
		justify-self: end;
		min-width: 96px;
		min-height: 42px;
		padding: 8px 13px;
		border: 1px solid rgba(255, 255, 255, 0.24);
		border-radius: var(--radius-sm);
		background: rgba(255, 255, 255, 0.08);
		color: #ffffff;
		font-family: var(--font-main);
		font-size: 15px;
		font-weight: 900;
		cursor: pointer;
	}

	.menu-toggle__icon {
		display: grid;
		gap: 4px;
		width: 18px;
	}

	.menu-toggle__icon span {
		display: block;
		height: 2px;
		border-radius: 2px;
		background: #ffffff;
		transition: transform 160ms ease, opacity 160ms ease;
	}

	.site-header.is-menu-open .menu-toggle__icon span:nth-child(1) {
		transform: translateY(6px) rotate(45deg);
	}

	.site-header.is-menu-open .menu-toggle__icon span:nth-child(2) {
		opacity: 0;
	}

	.site-header.is-menu-open .menu-toggle__icon span:nth-child(3) {
		transform: translateY(-6px) rotate(-45deg);
	}

	.site-nav {
		position: absolute;
		top: 100%;
		right: 0;
		left: 0;
		width: 100%;
		max-height: 0;
		overflow: hidden;
		border-top: 0 solid rgba(255, 255, 255, 0.12);
		background: var(--color-header);
		box-shadow: 0 16px 24px rgba(0, 0, 0, 0.24);
		transition: max-height 220ms ease, border-top-width 220ms ease;
	}

	.site-header.is-menu-open .site-nav {
		max-height: 430px;
		border-top-width: 1px;
	}

	.site-menu {
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
		gap: 0;
		width: 100%;
		min-width: 0;
		padding: 8px 0 10px;
		white-space: normal;
	}

	.site-menu a {
		justify-content: flex-start;
		min-height: 46px;
		padding: 10px 16px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.08);
		font-size: 15px;
		font-weight: 800;
	}

	.hero-section {
		padding-top: 24px;
	}

	.hero-card {
		grid-template-columns: 1fr;
		gap: 22px;
		padding: 28px 22px;
	}

	.hero-copy h1 {
		max-width: 100%;
		font-size: 30px;
		line-height: 1.2;
	}

	.hero-copy p {
		max-width: 100%;
		font-size: 16px;
	}

	.hero-logo-frame {
		width: 100%;
		min-height: 0;
		padding: 10px;
	}

	.brand-logo--hero {
		max-width: 270px;
		max-height: 156px;
	}

	.brand-logo--hero.brand-logo--fallback {
		font-size: 48px;
	}

	.rocket-mark {
		right: 16px;
		bottom: 14px;
		width: 74px;
		height: 74px;
	}

	.site-section {
		margin-top: 54px;
	}

	.site-section h2 {
		margin-bottom: 26px;
		font-size: 25px;
		line-height: 1.32;
	}

	.overview-grid,
	.ecosystem-grid,
	.app-grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.license-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.license-visual {
		min-height: 250px;
	}

	.benefit-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.benefit-visual {
		min-height: 260px;
	}

	.benefit-visual__panel {
		width: min(78%, 250px);
	}

	.section-heading-row {
		grid-template-columns: 1fr;
		gap: 12px;
		margin-bottom: 22px;
	}

	.game-showcase-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.game-tile,
	.game-tile--large {
		min-height: 310px;
	}

	.game-tile__body {
		padding: 20px;
	}

	.game-tile__body h3 {
		font-size: 22px;
	}

	.review-band {
		grid-template-columns: 1fr;
		gap: 22px;
		padding: 24px;
	}

	.review-cards {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.benefit-list {
		width: 100%;
		margin-inline: 0;
	}

	.ecosystem-heading,
	.category-board {
		grid-template-columns: 1fr;
	}

	.ecosystem-heading {
		gap: 12px;
		margin-bottom: 20px;
	}

	.category-board {
		padding: 18px;
		border-radius: var(--radius-md);
	}

	.category-feature-card {
		min-height: 104px;
		padding: 18px;
	}

	.category-compact {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.app-visual {
		order: 2;
	}

	.app-copy {
		order: 1;
	}

	.app-preview-img,
	.app-visual .image-fallback {
		width: min(100%, 280px);
	}

	.faq-grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.news-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.news-media {
		height: 196px;
	}

	.footer-grid {
		grid-template-columns: 1fr;
		gap: 22px;
	}

	.inner-page {
		padding-top: 18px;
	}

	.inner-hero__grid {
		grid-template-columns: 1fr;
		gap: 24px;
		min-height: 0;
		padding: 28px 24px;
	}

	.inner-hero h1 {
		font-size: 32px;
	}

	.inner-hero p:not(.eyebrow) {
		font-size: 16px;
	}

	.inner-card-grid,
	.quick-card-grid,
	.feature-card-grid,
	.step-list-grid,
	.guide-panel-grid,
	.inner-notice,
	.inner-layout,
	.single-layout {
		grid-template-columns: 1fr;
	}

	.quick-card-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.feature-card-grid,
	.step-list-grid,
	.guide-panel-grid {
		grid-template-columns: 1fr;
	}

	.full-guide-section {
		padding: 48px 0;
	}

	.brand-guide-layout {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.brand-guide-rail {
		position: static;
		padding: 18px;
	}

	.brand-guide-rail ol {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.brand-guide-rail a {
		min-height: 44px;
	}

	.guide-article-section {
		grid-template-columns: 1fr;
		gap: 12px;
		padding: 22px;
	}

	.chapter-number {
		width: 40px;
		height: 40px;
	}

	.longform-guide {
		padding: 24px;
	}

	.inner-notice {
		padding: 22px;
	}

	.single-hero h1 {
		font-size: 32px;
	}

	.single-content,
	.single-sidebar {
		padding: 22px;
	}

	.single-sidebar {
		position: static;
	}

	.site-footer {
		margin-top: 58px;
		padding-top: 34px;
	}

		.back-to-top {
			right: 16px;
			bottom: 92px;
			width: 42px;
			height: 42px;
			font-size: 21px;
	}

	.btn {
		min-height: 46px;
		padding: 12px 24px;
		font-size: 16px;
	}

	.hero-actions {
		gap: 10px;
	}

	.info-table th,
	.info-table td,
	.comparison-table th,
	.comparison-table td {
		font-size: 15px;
	}

	.faq-question {
		min-height: 62px;
		padding: 18px 18px;
		font-size: 16px;
	}

	.faq-answer p {
		font-size: 15px;
	}

	.news-body {
		padding: 16px;
	}

	.news-body h3 {
		font-size: 18px;
	}

	.news-body p {
		font-size: 15px;
	}

	.footer-brand p,
	.footer-info p {
		font-size: 15px;
	}
}

@media (max-width: 420px) {
	.site-container,
	.site-header__inner {
		width: calc(100% - 32px);
	}

		.brand-logo--header,
		.custom-logo {
			max-width: 122px;
		}

		.brand-logo--header.brand-logo--image {
			width: 108px;
			height: 40px;
			max-width: none;
		}

	.site-menu {
		gap: 0;
	}

	.hero-copy h1 {
		font-size: 30px;
	}

	.btn {
		width: auto;
		max-width: 100%;
		min-height: 40px;
		padding-inline: 18px;
	}

	.info-table th,
	.info-table td,
	.comparison-table th,
	.comparison-table td {
		padding: 12px 13px;
		font-size: 14px;
	}

	.payment-copy {
		grid-template-columns: 1fr;
		gap: 16px;
		padding: 24px;
	}

	.payment-copy p {
		font-size: 16px;
		line-height: 1.72;
	}

	.payment-copy .payment-btn {
		justify-self: stretch;
		width: 100%;
		text-align: center;
		white-space: normal;
	}

	.category-feature-card {
		grid-template-columns: 52px minmax(0, 1fr);
		padding: 16px;
	}

	.category-code {
		width: 48px;
		height: 48px;
		border-radius: 14px;
		font-size: 20px;
	}

	.category-compact {
		grid-template-columns: 1fr;
	}

	.category-pill {
		min-height: 58px;
	}

	.license-visual {
		min-height: 225px;
	}

	.license-document {
		width: min(86%, 238px);
		padding: 22px 20px;
	}

	.license-document strong {
		font-size: 31px;
	}

	.benefit-visual {
		min-height: 230px;
	}

	.benefit-visual__panel {
		width: min(86%, 236px);
		padding: 22px 20px;
	}

	.benefit-visual__panel strong {
		font-size: 32px;
	}
}

@media (max-width: 768px) {
	.inner-hero__actions {
		gap: 10px;
	}

	.inner-visual {
		min-height: 250px;
	}

	.visual-phone {
		width: 145px;
		min-height: 232px;
		border-width: 7px;
	}

	.phone-screen {
		min-height: 174px;
	}

	.app-layout-grid,
	.register-layout,
	.payment-layout,
	.games-layout,
	.bonus-layout,
	.support-layout,
	.about-layout,
	.legal-layout,
	.split-panel,
	.troubleshooting-grid {
		grid-template-columns: 1fr;
	}

		.app-device-panel {
			min-height: 360px;
		}

		.app-device-img,
		.app-device-panel .image-fallback {
			min-height: 360px;
		}

		.app-device-shell {
			width: min(100%, 214px);
	}

	.app-device-screen {
		min-height: 300px;
	}

		.inner-card-grid--access,
		.inner-card-grid--bonus,
		.inner-card-grid--games,
		.inner-card-grid--support,
		.inner-card-grid--about {
			grid-template-columns: 1fr;
		}

		.games-focus-panel {
			position: static;
			grid-template-columns: 1fr;
			padding: 22px;
		}

		.games-focus-panel h2 {
			font-size: 25px;
		}

		.games-focus-panel__side {
			justify-content: flex-start;
		}

		.games-category-card,
		.games-category-card--featured {
			grid-column: auto;
		}

			.games-insight-head,
			.games-path-panel,
			.games-safety-board {
				grid-template-columns: 1fr;
				gap: 18px;
			}

			.games-insight-head,
			.games-path-panel,
			.games-safety-board {
				padding: 22px;
			}

			.games-insight-badges {
				justify-content: flex-start;
			}

			.games-note-grid,
			.games-path-steps,
			.games-safety-list {
				grid-template-columns: 1fr;
			}

			.faq-page-layout,
			.faq-page-main-head {
				grid-template-columns: 1fr;
				gap: 18px;
			}

			.faq-page-sidebar {
				position: static;
				padding: 22px;
			}

			.faq-page-main-head {
				padding: 22px;
			}

			.faq-page-badges {
				justify-content: flex-start;
			}

				.support-layout,
				.about-layout,
		.split-panel {
			padding: 24px;
	}

	.legal-toc {
		position: static;
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.legal-toc a {
		text-align: center;
	}
}

@media (max-width: 420px) {
		.inner-visual {
			min-height: 220px;
		}

		.inner-visual-img,
		.inner-visual--app .image-fallback {
			min-height: 240px;
		}

		.visual-gateway,
		.visual-form-card,
	.visual-wallet,
	.visual-faq-board,
	.visual-document,
	.visual-brand-panel {
		width: min(88%, 260px);
		padding: 22px;
	}

	.visual-game-grid {
		grid-template-columns: repeat(3, 56px);
		gap: 9px;
	}

	.visual-game-grid span {
		font-size: 24px;
	}

		.games-focus-panel {
			padding: 20px;
		}

		.games-focus-panel__side span,
		.games-focus-panel .text-link {
			width: 100%;
			justify-content: center;
		}

	.payment-methods span,
	.device-row span,
	.security-checklist span {
		flex: 1 1 calc(50% - 10px);
		text-align: center;
	}

	.legal-toc {
		grid-template-columns: 1fr;
	}
}

/* Distinct subpage component systems for 20Bet India guide pages. */
.module-head {
	display: grid;
	gap: 10px;
	margin-bottom: 22px;
}

.module-head--split {
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: end;
	gap: 22px;
}

.module-head h2,
.safe-app-check h2,
.mobile-trouble-list h2,
.mobile-safety-timeline h2,
.fake-login-compare h2,
.recovery-safety-panel h2,
.otp-warning-block h2,
.bonus-before-register h2,
.game-safety-checklist h2,
.contact-card-panel h2,
.include-exclude-grid h2,
.safe-message-template h2,
.impersonator-warning h2,
.self-check-quiz h2,
.limit-planner h2,
.stop-signal-strip h2,
.control-actions-panel h2,
.local-law-box h2 {
	margin: 0;
	color: #ffffff;
	font-size: clamp(24px, 3vw, 34px);
	line-height: 1.15;
}

.module-head p:not(.eyebrow) {
	max-width: 760px;
	color: var(--color-muted);
	font-size: 16px;
	line-height: 1.68;
}

.responsive-table-wrap {
	width: 100%;
	overflow-x: auto;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: var(--radius-md);
	background: rgba(6, 26, 51, 0.62);
	box-shadow: var(--shadow-soft);
}

.responsive-table-wrap table {
	width: 100%;
	min-width: 720px;
	border-collapse: collapse;
}

.responsive-table-wrap th,
.responsive-table-wrap td {
	padding: 16px 18px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	color: var(--color-muted);
	font-size: 14.5px;
	line-height: 1.55;
	text-align: left;
	vertical-align: top;
}

.responsive-table-wrap th {
	background: rgba(246, 212, 71, 0.12);
	color: #ffffff;
	font-weight: 900;
}

.responsive-table-wrap td:first-child {
	color: #ffffff;
	font-weight: 900;
}

.responsive-table-wrap tr:last-child td {
	border-bottom: 0;
}

.app-guide-suite,
.app-safety-suite,
.app-troubleshoot-suite,
.login-problem-suite,
.login-warning-suite,
.register-prep-suite,
.register-risk-suite,
.games-category-suite,
.bonus-rules-suite,
.payment-safety-suite,
.about-editorial-suite,
.contact-center-suite,
.responsible-tool-suite {
	padding-top: 0;
}

.device-comparison-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.device-compare-card {
	padding: 24px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: var(--radius-md);
	background:
		linear-gradient(180deg, rgba(8, 59, 43, 0.88), rgba(6, 26, 51, 0.78)),
		radial-gradient(circle at 80% 10%, rgba(246, 212, 71, 0.12), transparent 30%);
	box-shadow: var(--shadow-soft);
}

.device-compare-card h3 {
	margin: 0 0 18px;
	color: #ffffff;
	font-size: 24px;
}

.device-compare-card dl {
	display: grid;
	gap: 10px;
	margin: 0;
}

.device-compare-card dt {
	color: var(--color-yellow);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.device-compare-card dd {
	margin: 0 0 10px;
	color: var(--color-muted);
	font-size: 14.5px;
	line-height: 1.58;
}

.app-safety-layout,
.app-troubleshoot-layout,
.login-warning-layout,
.register-risk-layout,
.payment-flow-split,
.about-editorial-layout,
.contact-center-layout,
.responsible-tool-layout {
	display: grid;
	gap: 18px;
}

.app-safety-layout {
	grid-template-columns: minmax(270px, 0.35fr) minmax(0, 0.65fr);
}

.safe-app-check,
.mobile-trouble-list,
.mobile-safety-timeline,
.fake-login-compare,
.recovery-safety-panel,
.otp-warning-block,
.bonus-before-register,
.game-safety-checklist,
.contact-card-panel,
.safe-message-template,
.impersonator-warning,
.self-check-quiz,
.limit-planner,
.stop-signal-strip,
.control-actions-panel,
.local-law-box {
	padding: 28px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: var(--radius-md);
	background: rgba(6, 26, 51, 0.78);
	box-shadow: var(--shadow-soft);
}

.safe-app-check ul,
.browser-app-split ul,
.recovery-safety-panel ul {
	display: grid;
	gap: 10px;
	margin: 18px 0 0;
	padding: 0;
	list-style: none;
}

.safe-app-check li,
.browser-app-split li,
.recovery-safety-panel li {
	position: relative;
	padding-left: 26px;
	color: var(--color-muted);
	font-size: 14.5px;
	line-height: 1.55;
}

.safe-app-check li::before,
.browser-app-split li::before,
.recovery-safety-panel li::before {
	position: absolute;
	top: 9px;
	left: 0;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--color-yellow);
	content: "";
}

.browser-app-split {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.browser-app-split article,
.before-register-grid article,
.bonus-type-deck article,
.claim-skip-grid article,
.payment-flow-split article,
.what-site-covers,
.editorial-checklist,
.update-policy-panel,
.user-value-grid article,
.include-exclude-grid article,
.issue-card-grid article {
	padding: 24px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: var(--radius-md);
	background: rgba(8, 59, 43, 0.76);
	box-shadow: var(--shadow-soft);
}

.browser-app-split h3,
.before-register-grid h3,
.bonus-type-deck h3,
.claim-skip-grid h3,
.payment-flow-split h3,
.limit-planner h3 {
	margin: 0 0 12px;
	color: #ffffff;
	font-size: 21px;
	line-height: 1.25;
}

.mobile-trouble-list {
	display: grid;
	gap: 12px;
}

.mobile-trouble-list article {
	display: grid;
	grid-template-columns: 54px minmax(0, 1fr);
	gap: 14px;
	align-items: start;
	padding: 16px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--radius-sm);
	background: rgba(255, 255, 255, 0.06);
}

.mobile-trouble-list span,
.login-flow-rail span,
.setup-flow span,
.payment-flow-split span {
	display: grid;
	place-items: center;
	min-width: 42px;
	height: 42px;
	border-radius: 50%;
	background: rgba(246, 212, 71, 0.16);
	color: var(--color-yellow);
	font-weight: 900;
}

.mobile-trouble-list h3,
.mobile-safety-timeline strong {
	margin: 0 0 6px;
	color: #ffffff;
	font-size: 18px;
}

.mobile-trouble-list p,
.mobile-safety-timeline p,
.claim-skip-grid p,
.update-policy-panel p,
.safe-message-template p,
.impersonator-warning p,
.local-law-box p {
	color: var(--color-muted);
	font-size: 14.5px;
	line-height: 1.6;
}

.app-troubleshoot-layout {
	grid-template-columns: minmax(0, 0.62fr) minmax(260px, 0.38fr);
}

.mobile-safety-timeline {
	display: grid;
	gap: 14px;
	counter-reset: mobile-timeline;
}

.mobile-safety-timeline article {
	position: relative;
	padding-left: 26px;
	counter-increment: mobile-timeline;
}

.mobile-safety-timeline article::before {
	position: absolute;
	top: 4px;
	left: 0;
	color: var(--color-yellow);
	font-weight: 900;
	content: counter(mobile-timeline, decimal-leading-zero);
}

.login-flow-rail {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
	margin-bottom: 24px;
}

.login-flow-rail article,
.setup-flow article {
	display: grid;
	gap: 12px;
	padding: 20px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: var(--radius-md);
	background: rgba(8, 59, 43, 0.76);
	color: #ffffff;
	box-shadow: var(--shadow-soft);
}

.login-warning-layout {
	grid-template-columns: minmax(0, 0.58fr) minmax(260px, 0.42fr);
}

.fake-login-compare {
	grid-row: span 2;
	display: grid;
	gap: 12px;
}

.fake-login-compare article {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 12px;
	padding: 14px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--radius-sm);
	background: rgba(255, 255, 255, 0.06);
}

.fake-login-compare span,
.fake-login-compare strong {
	display: block;
	padding: 12px;
	border-radius: var(--radius-sm);
	font-size: 14px;
	line-height: 1.45;
}

.fake-login-compare span {
	background: rgba(21, 185, 111, 0.14);
	color: #dff8ee;
}

.fake-login-compare strong {
	background: rgba(246, 212, 71, 0.11);
	color: var(--color-yellow);
}

.public-device-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.public-device-grid article,
.bonus-mistake-grid span,
.game-safety-checklist span,
.what-site-covers span,
.editorial-checklist span,
.include-exclude-grid span,
.stop-signal-strip span,
.control-actions-panel span {
	padding: 12px 14px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.07);
	color: #eef7f4;
	font-size: 14px;
	font-weight: 800;
}

.before-register-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
}

.before-register-grid p,
.bonus-type-deck p,
.payment-flow-split p,
.limit-planner p {
	color: var(--color-muted);
	font-size: 14.5px;
	line-height: 1.58;
}

.setup-flow {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 12px;
	margin-top: 18px;
}

.register-risk-layout {
	grid-template-columns: minmax(0, 0.62fr) minmax(260px, 0.38fr);
}

.register-risk-layout .responsive-table-wrap {
	grid-row: span 2;
}

.otp-warning-block {
	background:
		linear-gradient(145deg, rgba(6, 26, 51, 0.9), rgba(8, 59, 43, 0.78)),
		radial-gradient(circle at 90% 10%, rgba(246, 212, 71, 0.18), transparent 30%);
}

.game-chip-row {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 22px;
}

.game-chip-row span {
	padding: 9px 12px;
	border: 1px solid rgba(246, 212, 71, 0.24);
	border-radius: 999px;
	background: rgba(246, 212, 71, 0.11);
	color: var(--color-yellow);
	font-size: 13px;
	font-weight: 900;
}

.featured-game-wall {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	grid-auto-flow: dense;
	gap: 12px;
	margin-top: 18px;
}

.game-feature-card {
	position: relative;
	display: grid;
	grid-template-columns: 40px minmax(0, 1fr);
	gap: 12px;
	align-items: start;
	min-height: 148px;
	padding: 16px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: var(--radius-md);
	background:
		linear-gradient(135deg, rgba(6, 26, 51, 0.94), rgba(7, 57, 43, 0.84)),
		radial-gradient(circle at 88% 12%, rgba(21, 185, 111, 0.12), transparent 30%);
	box-shadow: var(--shadow-soft);
}

.game-feature-card--large {
	grid-row: auto;
	min-height: 148px;
	padding: 16px;
	border-color: rgba(255, 210, 74, 0.3);
	background:
		linear-gradient(135deg, rgba(8, 26, 51, 0.96), rgba(61, 38, 12, 0.82)),
		radial-gradient(circle at 84% 14%, rgba(255, 210, 74, 0.18), transparent 34%);
}

.game-feature-card:nth-child(3n+2) {
	border-color: rgba(215, 38, 61, 0.28);
	background:
		linear-gradient(135deg, rgba(8, 26, 51, 0.94), rgba(58, 23, 39, 0.82)),
		radial-gradient(circle at 88% 12%, rgba(215, 38, 61, 0.14), transparent 30%);
}

.game-feature-card:nth-child(3n+3) {
	border-color: rgba(255, 210, 74, 0.26);
	background:
		linear-gradient(135deg, rgba(8, 26, 51, 0.94), rgba(52, 39, 8, 0.82)),
		radial-gradient(circle at 88% 12%, rgba(255, 210, 74, 0.13), transparent 30%);
}

.game-feature-card__mark {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border-radius: 12px;
	background: rgba(255, 210, 74, 0.14);
	color: #ffd24a;
	font-size: 13px;
	font-weight: 900;
	box-shadow: inset 0 0 0 1px rgba(255, 210, 74, 0.22);
}

.game-feature-card--large .game-feature-card__mark {
	width: 38px;
	height: 38px;
	background: rgba(255, 210, 74, 0.16);
	color: #ffd24a;
}

.game-feature-card h3 {
	margin: 0 0 8px;
	color: #ffffff;
	font-size: 18px;
	line-height: 1.18;
}

.game-feature-card--large h3 {
	font-size: 18px;
}

.game-feature-card__type {
	display: inline-flex;
	width: fit-content;
	margin-bottom: 8px;
	padding: 6px 9px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.09);
	color: #ffe08a;
	font-size: 11px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0;
}

.game-feature-card p {
	color: var(--color-muted);
	font-size: 13.5px;
	line-height: 1.5;
}

.game-feature-card--large p {
	max-width: none;
	font-size: 13.5px;
	line-height: 1.5;
}

.game-safety-checklist,
.bonus-mistake-grid,
.what-site-covers,
.editorial-checklist,
.stop-signal-strip,
.control-actions-panel {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	margin-top: 20px;
}

.game-safety-checklist h2,
.what-site-covers h2,
.editorial-checklist h2,
.stop-signal-strip h2,
.control-actions-panel h2 {
	width: 100%;
}

.bonus-type-deck {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 14px;
	margin-bottom: 24px;
}

.claim-skip-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	margin-top: 18px;
}

.bonus-mistake-grid {
	margin-top: 18px;
	padding: 22px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: var(--radius-md);
	background: rgba(6, 26, 51, 0.72);
	box-shadow: var(--shadow-soft);
}

.payment-flow-split {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-top: 18px;
}

.payment-flow-split p {
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr);
	gap: 12px;
	align-items: center;
	margin-bottom: 12px;
}

.failed-payment-table {
	margin-top: 18px;
}

.credential-safety-block {
	margin-top: 18px;
	padding: 22px;
	border: 1px solid rgba(246, 212, 71, 0.34);
	border-radius: var(--radius-md);
	background: rgba(246, 212, 71, 0.12);
	color: #fff5bd;
	font-size: 18px;
	font-weight: 900;
	line-height: 1.45;
	box-shadow: var(--shadow-soft);
}

.faq-center-layout {
	display: grid;
	gap: 22px;
}

.faq-center-head {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 22px;
	align-items: end;
	padding: 30px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: var(--radius-md);
	background:
		linear-gradient(135deg, rgba(6, 26, 51, 0.9), rgba(8, 59, 43, 0.78)),
		radial-gradient(circle at 88% 12%, rgba(124, 67, 217, 0.18), transparent 30%);
	box-shadow: var(--shadow-soft);
}

.faq-center-head h2 {
	margin: 0 0 10px;
	color: #ffffff;
	font-size: clamp(26px, 3vw, 36px);
	line-height: 1.16;
}

.faq-center-head p:not(.eyebrow) {
	color: var(--color-muted);
}

.faq-topic-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.faq-topic-chips span {
	padding: 9px 13px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	color: #ffffff;
	font-size: 13px;
	font-weight: 900;
}

.popular-faq-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
}

.popular-faq-grid article,
.faq-group,
.faq-help-panel {
	padding: 24px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: var(--radius-md);
	background: rgba(8, 59, 43, 0.76);
	box-shadow: var(--shadow-soft);
}

.popular-faq-grid strong,
.faq-group h2,
.faq-help-panel h2 {
	display: block;
	margin-bottom: 10px;
	color: #ffffff;
	font-size: 20px;
	line-height: 1.25;
}

.popular-faq-grid p,
.faq-help-panel p {
	color: var(--color-muted);
	font-size: 14.5px;
	line-height: 1.58;
}

.faq-grouped-layout {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	align-items: start;
}

.faq-group .inner-faq-list {
	display: grid;
	gap: 10px;
}

.faq-help-panel {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
	justify-content: space-between;
	background:
		linear-gradient(135deg, rgba(6, 26, 51, 0.9), rgba(8, 59, 43, 0.78)),
		radial-gradient(circle at 15% 20%, rgba(246, 212, 71, 0.14), transparent 34%);
}

.faq-help-panel p {
	flex: 1 1 100%;
}

.about-editorial-layout {
	grid-template-columns: minmax(0, 0.45fr) minmax(0, 0.55fr);
}

.what-site-covers,
.editorial-checklist,
.update-policy-panel {
	align-content: start;
}

.claim-boundary-table-wrap {
	grid-row: span 2;
}

.user-value-grid {
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
}

.contact-center-layout {
	grid-template-columns: minmax(260px, 0.3fr) minmax(0, 0.7fr);
}

.contact-card-panel {
	display: grid;
	align-content: start;
	gap: 14px;
}

.contact-card-panel p {
	display: grid;
	gap: 4px;
	margin: 0;
	padding: 14px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--radius-sm);
	background: rgba(255, 255, 255, 0.06);
}

.contact-card-panel span {
	color: var(--color-yellow);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.contact-card-panel strong {
	overflow-wrap: anywhere;
}

.include-exclude-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.include-exclude-grid article {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.include-exclude-grid h2 {
	width: 100%;
}

.issue-card-grid {
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 12px;
}

.issue-card-grid article {
	color: #ffffff;
	font-weight: 900;
	text-align: center;
}

.safe-message-template,
.impersonator-warning {
	grid-column: 1 / -1;
}

.responsible-tool-layout {
	grid-template-columns: minmax(0, 0.5fr) minmax(0, 0.5fr);
}

.self-check-quiz,
.limit-planner {
	display: grid;
	gap: 12px;
}

.self-check-quiz article,
.limit-planner article {
	padding: 16px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--radius-sm);
	background: rgba(255, 255, 255, 0.06);
	color: #eef7f4;
}

.safe-app-check-groups,
.self-check-quiz {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
}

.safe-app-check-groups article {
	padding: 16px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--radius-sm);
	background: rgba(255, 255, 255, 0.06);
}

.safe-app-check-groups h3,
.self-check-quiz h3 {
	margin: 0 0 10px;
	color: #ffffff;
	font-size: 17px;
	line-height: 1.25;
}

.safe-app-check-groups ul {
	display: grid;
	gap: 8px;
	margin: 0;
	padding-left: 18px;
}

.self-check-quiz {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.self-check-quiz h2 {
	grid-column: 1 / -1;
}

.self-check-quiz article {
	background:
		linear-gradient(145deg, rgba(6, 26, 51, 0.88), rgba(8, 59, 43, 0.72)),
		radial-gradient(circle at 92% 12%, rgba(246, 212, 71, 0.12), transparent 34%);
}

.self-check-quiz p {
	margin: 8px 0 0;
	color: var(--color-muted);
	font-size: 14px;
	line-height: 1.55;
}

.self-check-quiz strong {
	color: #ffe08a;
}

.limit-planner .responsive-table-wrap {
	margin-top: 0;
}

.limit-planner-table th,
.limit-planner-table td {
	vertical-align: top;
}

.stop-signal-grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 10px;
}

.stop-signal-grid h2,
.control-actions-flow h2 {
	grid-column: 1 / -1;
}

.stop-signal-grid article {
	padding: 16px;
	border: 1px solid rgba(255, 102, 102, 0.28);
	border-radius: var(--radius-sm);
	background: rgba(215, 38, 61, 0.16);
	color: #ffe8e8;
	font-weight: 900;
	text-align: center;
}

.control-actions-flow span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.control-actions-flow i {
	display: grid;
	place-items: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: rgba(246, 212, 71, 0.16);
	color: var(--color-yellow);
	font-style: normal;
	font-size: 12px;
	font-weight: 900;
}

.stop-signal-strip,
.control-actions-panel,
.local-law-box {
	grid-column: 1 / -1;
}

@media (max-width: 1080px) {
	.device-comparison-grid,
	.before-register-grid,
	.bonus-type-deck,
	.popular-faq-grid,
	.user-path-grid,
	.user-value-grid,
	.issue-card-grid,
	.safe-app-check-groups,
	.stop-signal-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.setup-flow {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.featured-game-wall {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.game-feature-card,
	.game-feature-card--large {
		grid-row: auto;
		min-height: 148px;
	}
}

@media (max-width: 820px) {
	.module-head--split,
	.app-safety-layout,
	.app-troubleshoot-layout,
	.login-warning-layout,
	.register-risk-layout,
	.payment-flow-split,
	.about-editorial-layout,
	.contact-center-layout,
	.responsible-tool-layout,
	.faq-center-head,
	.faq-grouped-layout,
	.include-exclude-grid {
		grid-template-columns: 1fr;
	}

	.claim-boundary-table-wrap,
	.register-risk-layout .responsive-table-wrap,
	.safe-message-template,
	.impersonator-warning,
	.stop-signal-strip,
	.control-actions-panel,
	.local-law-box,
	.user-value-grid,
	.issue-card-grid {
		grid-column: auto;
		grid-row: auto;
	}

	.login-flow-rail,
	.setup-flow,
	.device-comparison-grid,
	.before-register-grid,
	.bonus-type-deck,
	.popular-faq-grid,
	.user-path-grid,
	.user-value-grid,
	.issue-card-grid,
	.safe-app-check-groups,
	.self-check-quiz,
	.stop-signal-grid {
		grid-template-columns: 1fr;
	}

	.browser-app-split,
	.claim-skip-grid,
	.public-device-grid {
		grid-template-columns: 1fr;
	}

	.fake-login-compare article,
	.mobile-trouble-list article,
	.payment-flow-split p {
		grid-template-columns: 1fr;
	}

	.module-head--split .btn {
		justify-self: start;
	}
}

@media (max-width: 520px) {
	.safe-app-check,
	.mobile-trouble-list,
	.mobile-safety-timeline,
	.fake-login-compare,
	.recovery-safety-panel,
	.otp-warning-block,
	.bonus-before-register,
	.game-safety-checklist,
	.contact-card-panel,
	.safe-message-template,
	.impersonator-warning,
	.self-check-quiz,
	.limit-planner,
	.stop-signal-strip,
	.control-actions-panel,
	.local-law-box,
	.device-compare-card,
	.browser-app-split article,
	.before-register-grid article,
	.bonus-type-deck article,
	.claim-skip-grid article,
	.payment-flow-split article,
	.what-site-covers,
	.editorial-checklist,
	.update-policy-panel,
	.user-value-grid article,
	.include-exclude-grid article,
	.issue-card-grid article,
	.popular-faq-grid article,
	.user-path-card,
	.faq-group,
	.faq-help-panel,
	.faq-center-head {
		padding: 20px;
	}

	.responsive-table-wrap table {
		min-width: 640px;
	}

	.game-chip-row span,
	.faq-topic-chips span,
	.bonus-mistake-grid span,
	.game-safety-checklist span,
	.what-site-covers span,
	.editorial-checklist span,
	.include-exclude-grid span,
	.stop-signal-strip span,
	.control-actions-panel span {
		width: 100%;
		text-align: center;
	}
}

/* Games page channel layout. */
.games-hero-stats {
	padding: 18px 0 0;
}

.games-hero-stat-row {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.games-hero-stat-row span {
	display: inline-flex;
	align-items: center;
	min-height: 42px;
	padding: 10px 14px;
	border: 1px solid rgba(246, 212, 71, 0.26);
	border-radius: 999px;
	background: rgba(246, 212, 71, 0.12);
	color: var(--color-yellow);
	font-size: 14px;
	font-weight: 900;
}

.game-chip-row--anchor {
	position: sticky;
	top: calc(var(--header-height) + 12px);
	z-index: 30;
	display: flex;
	flex-wrap: nowrap;
	gap: 10px;
	margin-bottom: 28px;
	overflow-x: auto;
	padding: 12px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: var(--radius-md);
	background: rgba(6, 26, 51, 0.86);
	box-shadow: var(--shadow-soft);
	scrollbar-width: thin;
}

.game-chip-row--anchor a {
	flex: 0 0 auto;
	padding: 9px 13px;
	border: 1px solid rgba(246, 212, 71, 0.24);
	border-radius: 999px;
	background: rgba(246, 212, 71, 0.11);
	color: var(--color-yellow);
	font-size: 13px;
	font-weight: 900;
	white-space: nowrap;
}

.game-category-layout {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 16px;
	margin-bottom: 28px;
}

.game-nav-card {
	display: grid;
	align-content: end;
	position: relative;
	min-height: 280px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: var(--radius-md);
	background:
		linear-gradient(180deg, rgba(8, 59, 43, 0.82), rgba(6, 26, 51, 0.82)),
		radial-gradient(circle at 88% 12%, rgba(246, 212, 71, 0.12), transparent 30%);
	box-shadow: var(--shadow-soft);
	isolation: isolate;
	scroll-margin-top: calc(var(--header-height) + 86px);
}

.game-nav-card::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(180deg, rgba(3, 11, 24, 0.18) 0%, rgba(3, 11, 24, 0.66) 48%, rgba(3, 11, 24, 0.94) 100%),
		radial-gradient(circle at 18% 14%, rgba(246, 212, 71, 0.18), transparent 34%);
	pointer-events: none;
}

.game-nav-card--large {
	grid-column: span 2;
	min-height: 310px;
}

.game-nav-card--medium {
	grid-column: span 2;
	min-height: 280px;
}

.game-nav-card--small {
	grid-column: span 2;
	min-height: 260px;
}

.game-nav-img,
.game-nav-card .image-fallback {
	position: absolute;
	inset: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.02);
	transition: transform 0.28s ease, opacity 0.28s ease;
}

.game-nav-card:hover .game-nav-img,
.game-nav-card:hover .image-fallback {
	transform: scale(1.06);
}

.game-nav-card .image-fallback {
	display: grid;
	place-items: center;
	background: linear-gradient(135deg, rgba(8, 59, 43, 0.92), rgba(6, 26, 51, 0.92));
	color: rgba(255, 255, 255, 0.18);
	font-size: 40px;
	font-weight: 900;
}

.game-nav-card__body {
	display: grid;
	gap: 9px;
	align-self: end;
	position: relative;
	z-index: 2;
	padding: 18px;
	background: linear-gradient(180deg, rgba(3, 11, 24, 0), rgba(3, 11, 24, 0.58));
}

.game-nav-pace {
	justify-self: start;
	padding: 7px 10px;
	border-radius: 999px;
	background: rgba(246, 212, 71, 0.15);
	color: var(--color-yellow);
	font-size: 12px;
	font-weight: 900;
}

.game-nav-card h3 {
	margin: 0;
	color: #ffffff;
	font-size: 21px;
	line-height: 1.18;
}

.game-nav-card p,
.game-nav-card dd {
	color: var(--color-muted);
	font-size: 13.5px;
	line-height: 1.5;
}

.game-nav-card dl {
	display: grid;
	gap: 6px;
	margin: 0;
}

.game-nav-card dt {
	color: #ffffff;
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.game-nav-card dd {
	margin: 0 0 6px;
}

.game-table-head {
	margin-top: 10px;
}

.games-user-type-section,
.games-detail-section,
.games-note-section,
.games-mobile-section,
.games-faq-section {
	padding-top: 0;
}

.games-user-type-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 14px;
}

.games-user-type-grid article {
	display: grid;
	align-content: start;
	gap: 12px;
	padding: 22px;
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: var(--radius-md);
	background: rgba(8, 59, 43, 0.76);
	box-shadow: var(--shadow-soft);
}

.games-user-type-grid span {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: rgba(246, 212, 71, 0.15);
	color: var(--color-yellow);
	font-weight: 900;
}

.games-user-type-grid h3,
.game-detail-card h3,
.games-mobile-check-grid h3,
.games-safety-group-grid h3,
.games-faq-group h3 {
	margin: 0;
	color: #ffffff;
	font-size: 21px;
	line-height: 1.22;
}

.games-user-type-grid p,
.game-detail-card p,
.games-mobile-check-grid li,
.games-safety-group-grid li {
	color: var(--color-muted);
	font-size: 14.5px;
	line-height: 1.6;
}

.games-detail-list {
	display: grid;
	gap: 18px;
}

.game-detail-card {
	display: grid;
	grid-template-columns: minmax(180px, 0.24fr) repeat(4, minmax(0, 1fr));
	gap: 16px;
	align-items: start;
	padding: 24px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: var(--radius-md);
	background:
		linear-gradient(135deg, rgba(6, 26, 51, 0.86), rgba(8, 59, 43, 0.7)),
		radial-gradient(circle at 90% 8%, rgba(246, 212, 71, 0.1), transparent 28%);
	box-shadow: var(--shadow-soft);
	scroll-margin-top: calc(var(--header-height) + 76px);
}

.game-detail-card__side {
	display: grid;
	align-content: start;
	gap: 14px;
}

.game-detail-img,
.game-detail-card__side .image-fallback {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: calc(var(--radius-md) - 8px);
	box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.game-detail-card__side .image-fallback {
	display: grid;
	place-items: center;
	background: linear-gradient(135deg, rgba(8, 59, 43, 0.9), rgba(6, 26, 51, 0.9));
	color: rgba(255, 255, 255, 0.3);
	font-size: 20px;
	font-weight: 900;
}

.game-detail-card > div:not(.game-detail-card__side) {
	padding-left: 14px;
	border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.game-detail-card strong {
	display: block;
	margin-bottom: 7px;
	color: var(--color-yellow);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.games-note-grid--expanded {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.games-note-grid--expanded .games-note-card {
	min-height: 174px;
}

.games-note-card p strong {
	color: #ffffff;
}

.games-mobile-check-grid,
.games-safety-group-grid,
.games-faq-group-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.games-mobile-check-grid article,
.games-safety-group-grid article,
.games-faq-group {
	padding: 24px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: var(--radius-md);
	background: rgba(8, 59, 43, 0.76);
	box-shadow: var(--shadow-soft);
}

.games-mobile-check-grid ul,
.games-safety-group-grid ul {
	display: grid;
	gap: 10px;
	margin: 14px 0 0;
	padding: 0;
	list-style: none;
}

.games-mobile-check-grid li,
.games-safety-group-grid li {
	position: relative;
	padding-left: 24px;
}

.games-mobile-check-grid li::before,
.games-safety-group-grid li::before {
	position: absolute;
	top: 9px;
	left: 0;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--color-yellow);
	content: "";
}

.games-safety-channel {
	display: grid;
	gap: 18px;
}

.games-safety-channel .games-responsible-note {
	margin-top: 0;
}

.games-faq-layout {
	display: grid;
	gap: 20px;
}

.games-faq-group {
	display: grid;
	gap: 12px;
}

.games-faq-group .inner-faq-list {
	display: grid;
	gap: 10px;
}

@media (max-width: 1120px) {
	.games-user-type-grid,
	.games-note-grid--expanded {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.game-detail-card {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.game-detail-card__side {
		grid-column: 1 / -1;
		grid-template-columns: minmax(0, 0.42fr) minmax(180px, 0.58fr);
		align-items: center;
	}

	.games-mobile-check-grid,
	.games-safety-group-grid,
	.games-faq-group-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 820px) {
	.game-chip-row--anchor {
		position: relative;
		top: auto;
		margin-inline: calc((100vw - 100%) / -2);
		padding-inline: max(16px, calc((100vw - 100%) / 2));
		border-right: 0;
		border-left: 0;
		border-radius: 0;
	}

	.game-category-layout {
		grid-template-columns: 1fr;
	}

	.featured-game-wall {
		grid-template-columns: 1fr;
	}

	.game-feature-card,
	.game-feature-card--large {
		grid-template-columns: 48px minmax(0, 1fr);
		min-height: auto;
		padding: 22px;
	}

	.game-nav-card,
	.game-nav-card--large,
	.game-nav-card--medium,
	.game-nav-card--small {
		grid-column: auto;
	}

	.games-user-type-grid,
	.games-note-grid--expanded,
	.game-detail-card {
		grid-template-columns: 1fr;
	}

	.game-detail-card > div:not(.game-detail-card__side) {
		padding: 14px 0 0;
		border-top: 1px solid rgba(255, 255, 255, 0.13);
		border-left: 0;
	}

	.game-detail-card__side {
		grid-template-columns: 1fr;
	}

	.game-detail-img,
	.game-detail-card__side .image-fallback {
		aspect-ratio: 16 / 9;
	}
}

@media (max-width: 520px) {
	.games-hero-stat-row span {
		flex: 1 1 calc(50% - 10px);
		justify-content: center;
		text-align: center;
	}

	.game-nav-card__body,
	.game-detail-card,
	.games-user-type-grid article,
	.games-mobile-check-grid article,
	.games-safety-group-grid article,
	.games-faq-group {
		padding: 20px;
	}
}
