.hso-game-card {
	--hso-accent: #e11d48;
	--hso-game-height: 520px;

	position: relative;
	isolation: isolate;
	width: 100%;
	box-sizing: border-box;
	margin: clamp(32px, 6vw, 72px) 0 24px;
	overflow: hidden;
	color: #172033;
	background: #fff;
	background:
		radial-gradient(circle at 90% 5%, color-mix(in srgb, var(--hso-accent) 18%, transparent), transparent 32%),
		linear-gradient(150deg, #fff, #f6f8fc);
	border: 1px solid #dce2ec;
	border-radius: 24px;
	box-shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.hso-fallback-source[hidden] {
	display: none !important;
}

.hso-game-card *,
.hso-game-card *::before,
.hso-game-card *::after {
	box-sizing: border-box;
}

.hso-game-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: clamp(22px, 4vw, 36px);
	border-bottom: 1px solid #e4e9f1;
}

.hso-game-heading-main {
	min-width: 0;
}

.hso-game-heading-badge-only {
	justify-content: flex-end;
}

.hso-game-kicker {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 9px;
	color: var(--hso-accent);
	font-size: 12px;
	font-weight: 850;
	letter-spacing: 0.14em;
}

.hso-game-kicker::before {
	width: 22px;
	height: 3px;
	content: "";
	background: var(--hso-accent);
	border-radius: 999px;
}

.hso-game-heading h2 {
	margin: 0 !important;
	color: #111827 !important;
	font-size: clamp(22px, 3vw, 32px) !important;
	font-weight: 850 !important;
	line-height: 1.16 !important;
	letter-spacing: -0.035em;
}

.hso-game-heading p {
	max-width: 760px;
	margin: 10px 0 0 !important;
	color: #586174;
	font-size: 15px;
	line-height: 1.65;
}

.hso-game-badge {
	display: grid;
	flex: 0 0 auto;
	width: 70px;
	height: 70px;
	place-items: center;
	background: var(--hso-accent);
	border: 7px solid color-mix(in srgb, var(--hso-accent) 18%, white);
	border-radius: 22px;
	box-shadow: 0 12px 26px color-mix(in srgb, var(--hso-accent) 28%, transparent);
	font-size: 30px;
	transform: rotate(4deg);
}

.hso-game-meta {
	display: grid;
	grid-template-columns: minmax(180px, 0.32fr) 1fr;
	align-items: center;
	gap: 20px;
	padding: 14px clamp(18px, 4vw, 30px);
	color: #647084;
	background: #f8faff;
	border-bottom: 1px solid #e3e8f0;
	font-size: 13px;
	line-height: 1.45;
}

.hso-game-meta strong {
	color: #202a3b;
	font-size: 14px;
	font-weight: 800;
}

.hso-game-meta-single {
	grid-template-columns: 1fr;
}

.hso-game-frame-wrap {
	position: relative;
	width: 100%;
	min-height: min(var(--hso-game-height), 75vh);
	background: #0f172a;
}

.hso-game-frame {
	display: block;
	width: 100%;
	height: var(--hso-game-height);
	max-height: 78vh;
	margin: 0;
	padding: 0;
	background: #111827;
	border: 0;
}

.hso-game-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 10px;
	padding: 13px clamp(16px, 4vw, 26px);
	background: #fff;
	border-top: 1px solid #e3e8f0;
}

.hso-game-action {
	min-height: 40px;
	padding: 9px 15px;
	color: #344054;
	background: #f8fafc;
	border: 1px solid #d9e0e9;
	border-radius: 10px;
	font: inherit;
	font-size: 13px;
	font-weight: 750;
	line-height: 1;
	cursor: pointer;
	transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.hso-game-action:hover,
.hso-game-action:focus-visible {
	border-color: var(--hso-accent);
	box-shadow: 0 5px 16px rgba(15, 23, 42, 0.09);
	outline: none;
	transform: translateY(-1px);
}

.hso-game-action-primary {
	color: #fff;
	background: var(--hso-accent);
	border-color: var(--hso-accent);
}

.hso-game-card:fullscreen,
.hso-game-card:-webkit-full-screen,
.hso-game-card.hso-is-fullscreen {
	display: flex;
	flex-direction: column;
	width: 100vw !important;
	height: 100vh;
	height: 100dvh;
	max-width: none !important;
	max-height: none !important;
	margin: 0 !important;
	overflow: hidden;
	background: #0f172a;
	border: 0;
	border-radius: 0;
}

.hso-game-card:fullscreen .hso-game-heading,
.hso-game-card:fullscreen .hso-game-meta,
.hso-game-card:-webkit-full-screen .hso-game-heading,
.hso-game-card:-webkit-full-screen .hso-game-meta,
.hso-game-card.hso-is-fullscreen .hso-game-heading,
.hso-game-card.hso-is-fullscreen .hso-game-meta {
	display: none;
}

.hso-game-card:fullscreen .hso-game-frame-wrap,
.hso-game-card:-webkit-full-screen .hso-game-frame-wrap,
.hso-game-card.hso-is-fullscreen .hso-game-frame-wrap {
	display: flex;
	flex: 1 1 auto;
	width: 100% !important;
	height: auto !important;
	min-width: 0 !important;
	min-height: 0 !important;
	max-width: none !important;
	max-height: none !important;
	overflow: hidden;
}

.hso-game-card:fullscreen .hso-game-frame,
.hso-game-card:-webkit-full-screen .hso-game-frame,
.hso-game-card.hso-is-fullscreen .hso-game-frame {
	display: block;
	flex: 1 1 auto;
	width: 100% !important;
	height: 100% !important;
	min-width: 0 !important;
	min-height: 0 !important;
	max-width: none !important;
	max-height: none !important;
}

.hso-game-card:fullscreen .hso-game-actions,
.hso-game-card:-webkit-full-screen .hso-game-actions,
.hso-game-card.hso-is-fullscreen .hso-game-actions {
	flex: 0 0 auto;
	width: 100%;
}

@media (max-width: 640px) {
	.hso-game-card {
		margin-top: 36px;
		border-radius: 18px;
	}

	.hso-game-heading {
		align-items: flex-start;
		padding: 20px;
	}

	.hso-game-badge {
		width: 54px;
		height: 54px;
		border-width: 5px;
		border-radius: 17px;
		font-size: 23px;
	}

	.hso-game-meta {
		grid-template-columns: 1fr;
		gap: 3px;
		padding: 12px 18px;
	}

	.hso-game-frame {
		height: min(var(--hso-game-height), 72vh);
		min-height: 460px;
	}

	.hso-game-actions {
		justify-content: stretch;
	}

	.hso-game-action {
		flex: 1 1 50%;
		padding-inline: 8px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.hso-game-action {
		transition: none;
	}
}
