/**
 * 77UFA theme visual layer
 *
 * Mobile-first, dark navy / premium gold design system.
 */

:root {
	--color-bg: #020816;
	--color-bg-deep: #000918;
	--color-surface: #080d17;
	--color-surface-raised: #0d1421;
	--color-surface-soft: #111a29;
	--color-border: #292f3a;
	--color-border-gold: rgba(217, 162, 62, 0.38);
	--color-gold: #d9a23e;
	--color-gold-bright: #f2c45c;
	--color-gold-dark: #a96f21;
	--color-text: #f4f4f4;
	--color-text-soft: #d4d7dd;
	--color-muted: #a8afbc;
	--color-danger: #ef5b61;
	--gradient-gold: linear-gradient(135deg, #f2c45c 0%, #d9a23e 48%, #b87824 100%);
	--gradient-panel: linear-gradient(145deg, rgba(18, 27, 42, 0.98), rgba(5, 10, 20, 0.98));
	--shadow-card: 0 20px 48px rgba(0, 0, 0, 0.28);
	--shadow-gold: 0 12px 32px rgba(217, 162, 62, 0.22);
	--font-heading: "UFA77 Sans", "Noto Sans Thai", system-ui, sans-serif;
	--font-body: "UFA77 Sans", "Noto Sans Thai", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--container: 1280px;
	--content: 820px;
	--gutter: clamp(1rem, 4vw, 2rem);
	--header-height: 68px;
	--radius-xs: 5px;
	--radius-sm: 8px;
	--radius-md: 12px;
	--radius-lg: 18px;
	--transition-fast: 160ms ease;
	--transition: 240ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

html {
	min-width: 320px;
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--header-height) + 1rem);
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	overflow-x: hidden;
	background:
		radial-gradient(circle at 50% 10%, rgba(25, 46, 75, 0.18), transparent 34rem),
		var(--color-bg);
	color: var(--color-text);
	font-family: var(--font-body);
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.65;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

@supports (overflow: clip) {
	body {
		overflow-x: clip;
	}
}

body.menu-open {
	overflow: hidden;
}

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

button,
[type="button"],
[type="reset"],
[type="submit"] {
	cursor: pointer;
}

img,
svg,
video,
iframe {
	display: block;
	max-width: 100%;
}

img {
	height: auto;
}

figure {
	margin: 0;
}

p,
ul,
ol,
blockquote,
pre,
table {
	margin-block: 0 1.5rem;
}

ul,
ol {
	padding-inline-start: 1.35rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin-block: 0 0.75rem;
	color: var(--color-text);
	font-family: var(--font-heading);
	font-weight: 700;
	line-height: 1.2;
	overflow-wrap: anywhere;
}

h1 {
	font-size: clamp(2.25rem, 8vw, 4rem);
}

h2 {
	font-size: clamp(1.75rem, 5vw, 2.5rem);
}

h3 {
	font-size: clamp(1.25rem, 3vw, 1.625rem);
}

a {
	color: var(--color-gold-bright);
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.18em;
	transition: color var(--transition-fast), opacity var(--transition-fast);
}

a:hover {
	color: #ffe094;
}

::selection {
	background: var(--color-gold);
	color: #111318;
}

:focus-visible {
	outline: 3px solid var(--color-gold-bright);
	outline-offset: 3px;
}

.site-shell,
.container {
	width: min(100% - (var(--gutter) * 2), var(--container));
	margin-inline: auto;
}

.narrow-shell {
	width: min(100% - (var(--gutter) * 2), var(--content));
	margin-inline: auto;
}

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

.screen-reader-text:focus {
	z-index: 100000;
	top: 0.75rem;
	inset-inline-start: 0.75rem;
	width: auto;
	height: auto;
	padding: 0.75rem 1rem;
	clip: auto;
	background: var(--color-text);
	color: var(--color-bg);
	font-weight: 700;
}

.button,
.wp-element-button,
button[type="submit"],
input[type="submit"] {
	display: inline-flex;
	min-height: 46px;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.72rem 1.35rem;
	border: 1px solid transparent;
	border-radius: var(--radius-xs);
	background: var(--gradient-gold);
	box-shadow: 0 8px 22px rgba(185, 122, 31, 0.16);
	color: #111318;
	font-family: var(--font-heading);
	font-size: 0.95rem;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	touch-action: manipulation;
	transition:
		transform var(--transition-fast),
		box-shadow var(--transition-fast),
		filter var(--transition-fast),
		background-color var(--transition-fast);
}

.button:hover,
.wp-element-button:hover,
button[type="submit"]:hover,
input[type="submit"]:hover {
	color: #090b0f;
	filter: brightness(1.08);
	box-shadow: var(--shadow-gold);
	transform: translateY(-2px);
}

.button:active,
.wp-element-button:active,
button[type="submit"]:active,
input[type="submit"]:active {
	transform: translateY(0);
}

.button--outline,
.button.is-style-outline,
.is-style-outline > .wp-element-button {
	border-color: rgba(242, 196, 92, 0.66);
	background: rgba(2, 8, 22, 0.56);
	box-shadow: none;
	color: var(--color-text);
}

.button--outline:hover,
.button.is-style-outline:hover,
.is-style-outline > .wp-element-button:hover {
	border-color: var(--color-gold-bright);
	background: rgba(217, 162, 62, 0.12);
	color: var(--color-gold-bright);
}

.button--ghost {
	border-color: var(--color-border);
	background: rgba(255, 255, 255, 0.035);
	box-shadow: none;
	color: var(--color-text);
}

.button--small {
	min-height: 40px;
	padding: 0.6rem 1rem;
	font-size: 0.875rem;
}

/* Header and navigation */
.site-header {
	position: sticky;
	z-index: 1000;
	top: 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	background: rgba(1, 6, 17, 0.91);
	box-shadow: 0 8px 30px transparent;
	backdrop-filter: blur(16px);
	transition:
		background-color var(--transition),
		box-shadow var(--transition),
		border-color var(--transition);
}

.site-header.is-scrolled {
	border-color: rgba(217, 162, 62, 0.18);
	background: rgba(1, 6, 17, 0.97);
	box-shadow: 0 12px 34px rgba(0, 0, 0, 0.34);
}

.site-header--static {
	position: relative;
}

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

.header-inner,
.site-header__inner {
	display: flex;
	width: min(100% - (var(--gutter) * 2), var(--container));
	min-height: var(--header-height);
	align-items: center;
	margin-inline: auto;
	gap: 0.75rem;
}

.site-branding {
	display: flex;
	min-width: 0;
	align-items: center;
	margin-inline-end: auto;
}

.site-branding a {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
}

.site-branding img,
.custom-logo {
	width: auto;
	max-width: 152px;
	max-height: 42px;
	object-fit: contain;
}

.site-title {
	margin: 0;
	font-family: var(--font-heading);
	font-size: 1.45rem;
	font-weight: 800;
	letter-spacing: -0.04em;
	line-height: 1;
	text-transform: uppercase;
}

.site-title a {
	color: var(--color-gold-bright);
}

.site-title strong,
.site-title span {
	color: var(--color-text);
}

.site-description {
	display: none;
}

.menu-toggle {
	position: relative;
	display: none;
	width: 48px;
	height: 48px;
	flex: 0 0 48px;
	place-items: center;
	padding: 0;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	background: rgba(255, 255, 255, 0.03);
	color: var(--color-text);
}

.nav-enhanced .menu-toggle {
	display: inline-grid;
}

.menu-toggle::before,
.menu-toggle::after,
.menu-toggle .menu-toggle__line,
.menu-toggle .menu-toggle__bar {
	position: absolute;
	width: 22px;
	height: 2px;
	border-radius: 2px;
	background: currentColor;
	content: "";
	transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle::before {
	transform: translateY(-7px);
}

.menu-toggle::after {
	transform: translateY(7px);
}

.menu-toggle .menu-toggle__bar:nth-last-of-type(3) {
	transform: translateY(-7px);
}

.menu-toggle .menu-toggle__bar:nth-last-of-type(2) {
	transform: translateY(0);
}

.menu-toggle .menu-toggle__bar:nth-last-of-type(1) {
	transform: translateY(7px);
}

.menu-toggle[aria-expanded="true"]::before {
	transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
	transform: rotate(-45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__line {
	opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-last-of-type(3) {
	transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-last-of-type(2) {
	opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-last-of-type(1) {
	transform: rotate(-45deg);
}

.primary-navigation {
	position: absolute;
	z-index: 20;
	top: calc(100% + 0.5rem);
	inset-inline: var(--gutter);
	max-height: calc(100dvh - var(--header-height) - 2rem);
	padding: 0.7rem;
	overflow-y: auto;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	background: rgba(7, 13, 25, 0.985);
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.46);
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
	visibility: visible;
	transition:
		opacity var(--transition),
		transform var(--transition),
		visibility var(--transition);
}

.nav-enhanced .primary-navigation {
	opacity: 0;
	pointer-events: none;
	transform: translateY(-0.5rem);
	visibility: hidden;
}

.primary-navigation.is-open,
.navigation-open .primary-navigation,
.menu-toggle[aria-expanded="true"] + .primary-navigation {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
	visibility: visible;
}

.primary-navigation ul,
.primary-navigation .menu {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
	padding: 0;
	margin: 0;
	list-style: none;
}

.primary-navigation li {
	position: relative;
	margin: 0;
}

.primary-navigation a {
	display: flex;
	min-height: 46px;
	align-items: center;
	padding: 0.7rem 0.85rem;
	border-radius: 6px;
	color: var(--color-text-soft);
	font-family: var(--font-heading);
	font-size: 0.95rem;
	font-weight: 500;
	text-decoration: none;
}

.primary-navigation a:hover,
.primary-navigation .current-menu-item > a,
.primary-navigation .current_page_item > a,
.primary-navigation a[aria-current="page"] {
	background: rgba(217, 162, 62, 0.1);
	color: var(--color-gold-bright);
}

.primary-navigation .sub-menu {
	padding-inline-start: 0.8rem;
}

.primary-navigation__actions {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.625rem;
	padding-top: 0.7rem;
	margin-top: 0.65rem;
	border-top: 1px solid var(--color-border);
}

.primary-navigation .primary-navigation__actions .button {
	min-height: 44px;
	justify-content: center;
	padding: 0.65rem 0.75rem;
	background: linear-gradient(135deg, var(--color-gold-bright), var(--color-gold));
	color: #101010;
	font-size: 0.88rem;
	font-weight: 700;
	text-align: center;
}

.primary-navigation .primary-navigation__actions .button--ghost {
	border-color: var(--color-border-gold);
	background: transparent;
	color: var(--color-text);
}

.header-actions {
	display: none;
	align-items: center;
	gap: 0.625rem;
}

/* Hero */
.hero {
	position: relative;
	isolation: isolate;
	min-height: 700px;
	overflow: hidden;
	border-bottom: 1px solid rgba(217, 162, 62, 0.12);
	background-color: #010715;
	background-image:
		linear-gradient(
			180deg,
			rgba(1, 7, 21, calc(var(--hero-overlay, 0.32) * 0.65)) 0%,
			rgba(1, 7, 21, calc(var(--hero-overlay, 0.32) * 2.25)) 48%,
			#020816 100%
		),
		var(--hero-mobile-image, url("../images/hero-mobile.webp"));
	background-position: center top;
	background-size: cover;
}

.hero::after {
	position: absolute;
	z-index: -1;
	inset: auto 0 0;
	height: 28%;
	background: linear-gradient(180deg, transparent, var(--color-bg));
	content: "";
	pointer-events: none;
}

.hero__inner,
.hero > .site-shell {
	display: flex;
	min-height: inherit;
	flex-direction: column;
	justify-content: flex-start;
	padding-block: clamp(3rem, 10vw, 5rem) 2rem;
}

.hero__content {
	width: min(100%, 34rem);
}

.hero__eyebrow,
.section-heading__eyebrow,
.inner-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin-block-end: 0.8rem;
	color: var(--color-gold-bright);
	font-family: var(--font-heading);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

.hero__eyebrow::before,
.section-heading__eyebrow::before,
.inner-hero__eyebrow::before {
	width: 1.5rem;
	height: 1px;
	background: currentColor;
	content: "";
}

.hero__title {
	max-width: 12ch;
	margin-block-end: 1rem;
	font-size: clamp(2.35rem, 10vw, 4rem);
	line-height: 1.08;
	text-wrap: balance;
}

.hero__title em,
.hero__title strong {
	color: var(--color-gold-bright);
	font-style: normal;
}

.hero__text {
	max-width: 40rem;
	margin-block-end: 1.5rem;
	color: var(--color-text-soft);
	font-size: clamp(1rem, 2.6vw, 1.125rem);
	line-height: 1.75;
	text-wrap: pretty;
}

.hero__actions,
.member-cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.hero__actions .button {
	flex: 1 1 9rem;
}

.trust-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.75rem;
	width: min(100%, 37rem);
	margin-block-start: auto;
	padding-block-start: 2rem;
}

.trust-item {
	display: grid;
	min-width: 0;
	grid-template-columns: 40px minmax(0, 1fr);
	align-items: center;
	gap: 0.65rem;
	padding: 0.65rem;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--radius-sm);
	background: rgba(1, 7, 20, 0.68);
	backdrop-filter: blur(8px);
}

.trust-item__icon,
.trust-item > svg,
.trust-item > img {
	display: grid;
	width: 40px;
	height: 40px;
	place-items: center;
	padding: 0.55rem;
	border: 1px solid rgba(217, 162, 62, 0.4);
	border-radius: 50%;
	background: rgba(217, 162, 62, 0.1);
	color: var(--color-gold-bright);
	object-fit: contain;
}

.trust-item__title,
.trust-item strong {
	display: block;
	margin: 0;
	color: var(--color-text);
	font-family: var(--font-heading);
	font-size: 0.82rem;
	line-height: 1.3;
}

.trust-item__text,
.trust-item small {
	display: block;
	color: var(--color-muted);
	font-size: 0.7rem;
	line-height: 1.35;
}

.trust-item__icon svg {
	width: 100%;
	height: 100%;
}

/* Sections */
.section {
	position: relative;
	padding-block: clamp(3.5rem, 9vw, 6rem);
}

.section + .section {
	padding-block-start: 0;
}

.section--surface {
	background: linear-gradient(180deg, transparent, rgba(10, 18, 31, 0.78), transparent);
}

.section-heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1rem;
	margin-block-end: clamp(1.25rem, 4vw, 2rem);
}

.section-heading__title,
.section-title {
	margin: 0;
	font-size: clamp(1.5rem, 5vw, 2rem);
	line-height: 1.25;
}

.section-heading__text {
	max-width: 42rem;
	margin: 0.5rem 0 0;
	color: var(--color-muted);
}

.section-heading__link {
	display: none;
	flex: 0 0 auto;
	align-items: center;
	gap: 0.45rem;
	font-family: var(--font-heading);
	font-size: 0.9rem;
	font-weight: 600;
	text-decoration: none;
}

.section-heading__link::after {
	content: "›";
	font-size: 1.35em;
	line-height: 1;
}

/* Game cards */
.game-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.75rem;
}

.game-card {
	position: relative;
	display: flex;
	min-width: 0;
	min-height: 250px;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	background: var(--color-surface);
	box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
	color: var(--color-text);
	text-decoration: none;
	transition:
		transform var(--transition),
		border-color var(--transition),
		box-shadow var(--transition);
}

.game-card:hover {
	border-color: var(--color-border-gold);
	color: var(--color-text);
	box-shadow: var(--shadow-card);
	transform: translateY(-4px);
}

.game-card__media,
.game-card > picture,
.game-card > img {
	position: relative;
	overflow: hidden;
	aspect-ratio: 4 / 5;
	background: var(--color-surface-soft);
}

.game-card__media::after {
	position: absolute;
	inset: 35% 0 0;
	background: linear-gradient(180deg, transparent, rgba(3, 7, 14, 0.95));
	content: "";
	pointer-events: none;
}

.game-card__media img,
.game-card > picture img,
.game-card > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 480ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

.game-card__content {
	display: flex;
	flex: 1;
	flex-direction: column;
	align-items: flex-start;
	padding: 0.9rem;
}

.game-card__title,
.game-card h3 {
	margin: 0 0 0.3rem;
	font-size: 1rem;
}

.game-card__text,
.game-card p {
	display: -webkit-box;
	margin: 0 0 0.85rem;
	overflow: hidden;
	color: var(--color-muted);
	font-size: 0.78rem;
	line-height: 1.5;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.game-card .button {
	min-height: 36px;
	margin-block-start: auto;
	padding: 0.5rem 0.8rem;
	font-size: 0.75rem;
}

/* Providers */
.provider-strip {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.75rem;
}

.provider-pill {
	display: flex;
	min-width: 0;
	min-height: 72px;
	align-items: center;
	justify-content: center;
	padding: 0.8rem;
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-radius: var(--radius-sm);
	background: rgba(255, 255, 255, 0.025);
	color: var(--color-text-soft);
	font-family: var(--font-heading);
	font-size: 0.8rem;
	font-weight: 700;
	text-align: center;
	text-decoration: none;
	transition:
		border-color var(--transition-fast),
		background-color var(--transition-fast),
		color var(--transition-fast);
}

.provider-pill:hover {
	border-color: var(--color-border-gold);
	background: rgba(217, 162, 62, 0.07);
	color: var(--color-gold-bright);
}

.provider-pill img {
	width: auto;
	max-width: 100%;
	height: 32px;
	filter: grayscale(1) brightness(1.7);
	object-fit: contain;
	opacity: 0.78;
	transition: filter var(--transition-fast), opacity var(--transition-fast);
}

.provider-pill:hover img {
	filter: none;
	opacity: 1;
}

/* Promotion cards */
.promo-grid {
	display: grid;
	gap: 1rem;
}

.promo-card {
	position: relative;
	isolation: isolate;
	display: flex;
	min-height: 290px;
	align-items: flex-end;
	overflow: hidden;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	background: var(--gradient-panel);
	box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
	transition:
		transform var(--transition),
		border-color var(--transition),
		box-shadow var(--transition);
}

.promo-card:hover {
	border-color: var(--color-border-gold);
	box-shadow: var(--shadow-card);
	transform: translateY(-4px);
}

.promo-card::after {
	position: absolute;
	z-index: -1;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(2, 6, 14, 0.94) 0%, rgba(2, 6, 14, 0.72) 48%, rgba(2, 6, 14, 0.08) 100%),
		linear-gradient(0deg, rgba(2, 6, 14, 0.84), transparent 62%);
	content: "";
}

.promo-card__media,
.promo-card > picture,
.promo-card > img {
	position: absolute;
	z-index: -2;
	inset: 0;
	width: 100%;
	height: 100%;
}

.promo-card__media img,
.promo-card > picture img,
.promo-card > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 30%;
	transition: transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.promo-card:hover img {
	transform: scale(1.035);
}

.promo-card__content {
	width: min(78%, 23rem);
	padding: clamp(1.25rem, 4vw, 2rem);
}

.promo-card__label {
	margin-block-end: 0.3rem;
	color: var(--color-gold-bright);
	font-family: var(--font-heading);
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.promo-card__title,
.promo-card h3 {
	margin-block-end: 0.5rem;
	font-size: clamp(1.4rem, 6vw, 2rem);
}

.promo-card__number {
	display: block;
	color: var(--color-gold-bright);
	font-family: var(--font-heading);
	font-size: clamp(2.75rem, 13vw, 4.5rem);
	font-weight: 800;
	letter-spacing: -0.06em;
	line-height: 0.95;
}

.promo-card p {
	margin-block-end: 1rem;
	color: var(--color-text-soft);
	font-size: 0.9rem;
}

/* Article cards */
.article-grid {
	display: grid;
	gap: 1rem;
}

.article-card {
	min-width: 0;
	overflow: hidden;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	background: var(--color-surface);
	box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16);
	transition:
		transform var(--transition),
		border-color var(--transition),
		box-shadow var(--transition);
}

.article-card:hover {
	border-color: var(--color-border-gold);
	box-shadow: var(--shadow-card);
	transform: translateY(-4px);
}

.article-card__media,
.article-card > picture,
.article-card > img,
.article-card .post-thumbnail {
	display: block;
	overflow: hidden;
	aspect-ratio: 16 / 9;
	background: var(--color-surface-soft);
}

.article-card__media img,
.article-card > picture img,
.article-card > img,
.article-card .post-thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 480ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.article-card:hover img {
	transform: scale(1.035);
}

.article-card__content,
.article-card .entry-header,
.article-card .entry-summary {
	padding-inline: 1.15rem;
}

.article-card__content {
	padding-block: 1.15rem 1.3rem;
}

.article-card .entry-header {
	padding-block-start: 1.15rem;
}

.article-card .entry-summary {
	padding-block-end: 1.3rem;
}

.article-card__meta,
.article-card .entry-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem 0.75rem;
	margin-block-end: 0.55rem;
	color: var(--color-muted);
	font-size: 0.75rem;
}

.article-card__title,
.article-card .entry-title,
.article-card h3 {
	display: -webkit-box;
	margin: 0 0 0.55rem;
	overflow: hidden;
	font-size: 1.1rem;
	line-height: 1.4;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.article-card__title a,
.article-card .entry-title a,
.article-card h3 a {
	color: var(--color-text);
	text-decoration: none;
}

.article-card__title a:hover,
.article-card .entry-title a:hover,
.article-card h3 a:hover {
	color: var(--color-gold-bright);
}

.article-card__excerpt,
.article-card .entry-summary,
.article-card p {
	display: -webkit-box;
	margin: 0;
	overflow: hidden;
	color: var(--color-muted);
	font-size: 0.9rem;
	line-height: 1.6;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

/* Membership CTA */
.member-cta {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	border-block: 1px solid rgba(217, 162, 62, 0.28);
	background:
		radial-gradient(circle at 4% 20%, rgba(242, 196, 92, 0.36) 0 2px, transparent 3px),
		radial-gradient(circle at 95% 75%, rgba(242, 196, 92, 0.26) 0 3px, transparent 4px),
		linear-gradient(115deg, #0b0c0d 0%, #3b250e 48%, #0b0d12 100%);
}

.member-cta::before,
.member-cta::after {
	position: absolute;
	z-index: -1;
	width: 14rem;
	height: 14rem;
	border: 2rem solid rgba(226, 171, 65, 0.14);
	border-radius: 50%;
	box-shadow:
		inset 0 0 0 2px rgba(242, 196, 92, 0.24),
		0 0 80px rgba(217, 162, 62, 0.22);
	content: "";
}

.member-cta::before {
	top: -7rem;
	inset-inline-start: -6rem;
}

.member-cta::after {
	right: -7rem;
	bottom: -8rem;
}

.member-cta__inner,
.member-cta > .site-shell {
	display: grid;
	align-items: center;
	gap: 1.5rem;
	min-height: 250px;
	padding-block: 3rem;
	text-align: center;
}

.member-cta__content {
	max-width: 44rem;
	margin-inline: auto;
}

.member-cta__title,
.member-cta h2 {
	margin-block-end: 0.5rem;
	font-size: clamp(1.75rem, 7vw, 2.5rem);
	text-wrap: balance;
}

.member-cta__title strong,
.member-cta h2 strong {
	color: var(--color-gold-bright);
}

.member-cta__text,
.member-cta p {
	margin: 0;
	color: var(--color-text-soft);
}

.member-cta__actions {
	justify-content: center;
}

.member-cta__actions .button {
	flex: 1 1 10rem;
	max-width: 18rem;
}

/* Footer */
.site-footer {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	background:
		linear-gradient(180deg, rgba(4, 12, 27, 0.98), rgba(0, 5, 15, 1)),
		var(--color-bg-deep);
	color: var(--color-muted);
}

.site-footer::before,
.site-footer::after {
	position: absolute;
	z-index: -1;
	border-radius: 999px;
	content: "";
	pointer-events: none;
}

.site-footer::before {
	width: 30rem;
	height: 30rem;
	top: -19rem;
	right: -11rem;
	background: radial-gradient(circle, rgba(217, 162, 62, 0.16), transparent 68%);
}

.site-footer::after {
	width: 24rem;
	height: 24rem;
	bottom: -17rem;
	left: -10rem;
	background: radial-gradient(circle, rgba(33, 75, 124, 0.24), transparent 68%);
}

.site-footer > .site-shell,
.footer-inner {
	position: relative;
	padding-block: clamp(2.5rem, 7vw, 4.5rem) 1.5rem;
}

.footer-highlights {
	display: grid;
	gap: 0.75rem;
	padding: 0.85rem;
	margin-block-end: clamp(2.5rem, 6vw, 4rem);
	border: 1px solid rgba(242, 196, 92, 0.2);
	border-radius: var(--radius-md);
	background: linear-gradient(135deg, rgba(242, 196, 92, 0.1), rgba(255, 255, 255, 0.025) 42%, rgba(24, 56, 91, 0.13));
	box-shadow: 0 22px 60px rgba(0, 0, 0, 0.16);
}

.footer-highlight {
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr);
	gap: 0.75rem;
	align-items: center;
	padding: 0.8rem;
	border-radius: var(--radius-sm);
}

.footer-highlight__icon {
	display: grid;
	width: 42px;
	height: 42px;
	place-items: center;
	border: 1px solid rgba(242, 196, 92, 0.34);
	border-radius: 50%;
	background: rgba(217, 162, 62, 0.12);
	color: var(--color-gold-bright);
}

.footer-highlight__icon svg {
	width: 20px;
	height: 20px;
}

.footer-highlight strong,
.footer-highlight span {
	display: block;
}

.footer-highlight strong {
	color: var(--color-text);
	font-size: 0.88rem;
	font-weight: 700;
}

.footer-highlight span {
	margin-block-start: 0.1rem;
	font-size: 0.75rem;
	line-height: 1.45;
}

.footer-grid {
	display: grid;
	gap: 2.25rem 1.5rem;
}

.footer-brand {
	max-width: 23rem;
}

.footer-brand .site-branding {
	display: inline-flex;
	padding: 0.7rem 0.9rem;
	margin: -0.7rem -0.9rem 1rem;
	border: 1px solid rgba(242, 196, 92, 0.18);
	border-radius: var(--radius-sm);
	background: rgba(255, 255, 255, 0.025);
}

.footer-brand .site-branding img,
.footer-brand .custom-logo {
	max-width: 210px;
	max-height: 62px;
}

.footer-brand p {
	max-width: 34ch;
	font-size: 0.9rem;
}

.footer-brand__status,
.footer-contact__note {
	display: flex;
	gap: 0.55rem;
	align-items: center;
	margin-block-start: 1.15rem;
	color: var(--color-text-soft);
	font-size: 0.78rem;
}

.footer-brand__status svg,
.footer-contact__note svg {
	width: 18px;
	height: 18px;
	flex: 0 0 18px;
	color: var(--color-gold-bright);
}

.footer-heading,
.site-footer h2,
.site-footer h3 {
	position: relative;
	padding-block-end: 0.7rem;
	margin-block-end: 1rem;
	color: var(--color-text);
	font-size: 1rem;
}

.footer-heading::after,
.site-footer h2::after,
.site-footer h3::after {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 2.15rem;
	height: 2px;
	border-radius: 99px;
	background: var(--gradient-gold);
	content: "";
}

.footer-menu,
.site-footer .menu,
.footer-menu__list,
.legal-menu,
.social-links {
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
	padding: 0;
	margin: 0;
	list-style: none;
}

.footer-menu a,
.site-footer .menu a,
.footer-menu__list a,
.legal-menu a {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	color: var(--color-muted);
	font-size: 0.88rem;
	text-decoration: none;
	transition: color var(--transition-fast), transform var(--transition-fast);
}

.footer-menu a:hover,
.site-footer .menu a:hover,
.footer-menu__list a:hover,
.legal-menu a:hover {
	color: var(--color-gold-bright);
	transform: translateX(3px);
}

.footer-contact {
	padding: 1.15rem;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--radius-md);
	background: linear-gradient(145deg, rgba(18, 29, 45, 0.76), rgba(6, 13, 24, 0.86));
	box-shadow: inset 0 1px rgba(255, 255, 255, 0.04), 0 18px 40px rgba(0, 0, 0, 0.16);
}

.footer-contact p {
	margin-block-end: 1rem;
	font-size: 0.82rem;
	line-height: 1.6;
}

.footer-contact__actions {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.6rem;
}

.footer-contact__actions .button {
	min-height: 44px;
	padding-inline: 0.65rem;
	font-size: 0.78rem;
	white-space: nowrap;
}

.social-links {
	flex-direction: row;
	flex-wrap: wrap;
	margin-block-start: 1.25rem;
}

.social-links a {
	display: grid;
	width: 44px;
	height: 44px;
	place-items: center;
	border: 1px solid var(--color-border);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.025);
	color: var(--color-text-soft);
	text-decoration: none;
}

.social-links > a {
	width: auto;
	min-width: 44px;
	padding-inline: 0.8rem;
	border-radius: 999px;
	font-size: 0.78rem;
	font-weight: 600;
}

.social-links a:hover {
	border-color: var(--color-border-gold);
	color: var(--color-gold-bright);
}

.footer-bottom {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin-block-start: clamp(2.5rem, 6vw, 4rem);
	padding-block-start: 1.5rem;
	border-top: 1px solid rgba(242, 196, 92, 0.16);
	font-size: 0.78rem;
}

.footer-bottom p {
	margin: 0;
}

.legal-menu {
	flex-direction: row;
	flex-wrap: wrap;
	gap: 0.5rem 1rem;
}

/* Inner templates */
.inner-hero {
	position: relative;
	isolation: isolate;
	display: grid;
	min-height: 230px;
	place-items: center;
	overflow: hidden;
	border-bottom: 1px solid rgba(217, 162, 62, 0.16);
	background:
		linear-gradient(90deg, rgba(1, 7, 21, 0.97), rgba(1, 7, 21, 0.56)),
		url("../images/hero-desktop.webp") center 46% / cover no-repeat;
	text-align: center;
}

.inner-hero::after {
	position: absolute;
	z-index: -1;
	inset: 0;
	background: radial-gradient(circle at 50% 100%, rgba(217, 162, 62, 0.13), transparent 48%);
	content: "";
}

.inner-hero__content,
.inner-hero > .site-shell {
	padding-block: 3.25rem;
}

.inner-hero__title,
.inner-hero h1 {
	margin: 0;
	font-size: clamp(2rem, 8vw, 3.5rem);
	text-wrap: balance;
}

.inner-hero__description {
	max-width: 46rem;
	margin: 0.85rem auto 0;
	color: var(--color-muted);
}

.breadcrumbs,
.breadcrumb {
	margin-block-end: 0.75rem;
	color: var(--color-muted);
	font-size: 0.82rem;
}

.breadcrumbs a,
.breadcrumb a {
	color: var(--color-text-soft);
	text-decoration: none;
}

.content-layout {
	display: grid;
	gap: 2rem;
	width: min(100% - (var(--gutter) * 2), var(--container));
	margin-inline: auto;
	padding-block: clamp(3rem, 8vw, 5rem);
}

.content-area,
.widget-area {
	min-width: 0;
}

.entry-header {
	margin-block-end: 1.5rem;
}

.entry-title {
	margin-block-end: 0.75rem;
	font-size: clamp(2rem, 7vw, 3.25rem);
}

.entry-title a {
	color: var(--color-text);
	text-decoration: none;
}

.entry-meta,
.entry-footer {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1rem;
	color: var(--color-muted);
	font-size: 0.82rem;
}

.entry-meta a,
.entry-footer a {
	color: var(--color-text-soft);
	text-decoration: none;
}

.post-thumbnail {
	overflow: hidden;
	margin-block-end: clamp(1.5rem, 5vw, 2.5rem);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	background: var(--color-surface);
}

.post-thumbnail img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.entry-content {
	max-width: 100%;
	color: var(--color-text-soft);
	font-size: 1rem;
	overflow-wrap: anywhere;
}

.entry-content > * {
	max-width: 100%;
}

.entry-content > :last-child {
	margin-block-end: 0;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
	margin-block-start: 2em;
}

.entry-content a {
	text-decoration: underline;
}

.entry-content blockquote,
blockquote.wp-block-quote {
	padding: 1.25rem 1.5rem;
	border-inline-start: 4px solid var(--color-gold);
	border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
	background: var(--color-surface);
	color: var(--color-text);
}

.entry-content blockquote cite {
	color: var(--color-muted);
	font-size: 0.85rem;
}

.entry-content pre,
.entry-content code {
	border-radius: 5px;
	background: #00040c;
}

.entry-content pre {
	max-width: 100%;
	padding: 1rem;
	overflow: auto;
	border: 1px solid var(--color-border);
}

.entry-content code {
	padding: 0.12em 0.35em;
	color: #f8d88d;
}

.entry-content pre code {
	padding: 0;
}

.entry-footer {
	margin-block-start: 2rem;
	padding-block-start: 1.25rem;
	border-top: 1px solid var(--color-border);
}

.widget {
	padding: 1.25rem;
	margin-block-end: 1rem;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	background: var(--color-surface);
}

.widget-title,
.widget h2 {
	padding-block-end: 0.75rem;
	margin-block-end: 1rem;
	border-bottom: 1px solid var(--color-border);
	font-size: 1.1rem;
}

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

.widget li + li {
	margin-block-start: 0.7rem;
}

.widget a {
	color: var(--color-text-soft);
	font-size: 0.9rem;
	text-decoration: none;
}

.widget a:hover {
	color: var(--color-gold-bright);
}

/* Archive and search cards */
.post-grid {
	display: grid;
	gap: 1rem;
}

.entry-card {
	min-width: 0;
	overflow: hidden;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	background: var(--color-surface);
	box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16);
	transition:
		transform var(--transition),
		border-color var(--transition),
		box-shadow var(--transition);
}

.entry-card:hover {
	border-color: var(--color-border-gold);
	box-shadow: var(--shadow-card);
	transform: translateY(-4px);
}

.entry-card .post-thumbnail {
	display: block;
	margin: 0;
	border: 0;
	border-radius: 0;
	aspect-ratio: 16 / 9;
}

.entry-card .post-thumbnail img {
	width: 100%;
	height: 100%;
	aspect-ratio: auto;
	object-fit: cover;
	transition: transform 480ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.entry-card:hover .post-thumbnail img {
	transform: scale(1.035);
}

.entry-card__body {
	display: flex;
	height: 100%;
	flex-direction: column;
	padding: 1.15rem;
}

.entry-card .entry-header {
	margin-block-end: 0.65rem;
}

.entry-card .entry-title {
	display: -webkit-box;
	margin-block-end: 0.55rem;
	overflow: hidden;
	font-size: 1.2rem;
	line-height: 1.4;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.entry-card .entry-content {
	display: -webkit-box;
	margin: 0;
	overflow: hidden;
	color: var(--color-muted);
	font-size: 0.9rem;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.entry-card .entry-content p {
	margin: 0;
}

.entry-card .entry-footer {
	margin-block-start: auto;
	padding-block-start: 1rem;
	border: 0;
}

.entry-card__link {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	font-family: var(--font-heading);
	font-size: 0.86rem;
	font-weight: 600;
	text-decoration: none;
}

.content-area--full {
	width: min(100% - (var(--gutter) * 2), var(--container));
	margin-inline: auto;
	padding-block: clamp(3rem, 8vw, 5rem);
}

/* Forms */
label {
	display: block;
	margin-block-end: 0.4rem;
	color: var(--color-text-soft);
	font-weight: 600;
}

input:not([type="checkbox"], [type="radio"], [type="submit"], [type="button"]),
select,
textarea {
	width: 100%;
	min-height: 46px;
	padding: 0.7rem 0.85rem;
	border: 1px solid var(--color-border);
	border-radius: 6px;
	background: #050b16;
	color: var(--color-text);
	transition:
		border-color var(--transition-fast),
		box-shadow var(--transition-fast);
}

textarea {
	min-height: 150px;
	resize: vertical;
}

input::placeholder,
textarea::placeholder {
	color: #7f8794;
	opacity: 1;
}

input:focus,
select:focus,
textarea:focus {
	border-color: var(--color-gold);
	outline: 0;
	box-shadow: 0 0 0 3px rgba(217, 162, 62, 0.2);
}

.search-form {
	display: flex;
	gap: 0.5rem;
}

.search-form label {
	flex: 1;
	margin: 0;
}

.search-form .search-submit {
	flex: 0 0 auto;
}

/* Pagination */
.pagination,
.posts-navigation,
.post-navigation {
	margin-block-start: 2.5rem;
}

.pagination .nav-links,
.page-links,
.posts-navigation .nav-links,
.post-navigation .nav-links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem;
}

.pagination .page-numbers,
.page-links > * {
	display: inline-grid;
	min-width: 44px;
	min-height: 44px;
	place-items: center;
	padding: 0.5rem;
	border: 1px solid var(--color-border);
	border-radius: 6px;
	background: var(--color-surface);
	color: var(--color-text-soft);
	text-decoration: none;
}

.pagination .page-numbers.current,
.pagination a.page-numbers:hover,
.page-links > .current {
	border-color: var(--color-gold);
	background: var(--gradient-gold);
	color: #111318;
}

.posts-navigation .nav-links,
.post-navigation .nav-links {
	justify-content: space-between;
}

.nav-previous,
.nav-next {
	max-width: 48%;
}

/* 404 and empty states */
.no-results,
.not-found {
	width: min(100% - (var(--gutter) * 2), 760px);
	margin-inline: auto;
	padding-block: clamp(4rem, 14vw, 8rem);
	text-align: center;
}

.error-404 {
	width: 100%;
	padding-block: clamp(4rem, 12vw, 8rem);
}

.error-404__inner {
	display: grid;
	align-items: center;
	gap: 2rem;
}

.error-404__content {
	max-width: 44rem;
	margin-inline: auto;
	text-align: center;
}

.error-404__image {
	width: min(100%, 34rem);
	max-height: 34rem;
	margin-inline: auto;
	object-fit: contain;
}

.error-404__code {
	margin: 0;
	background: var(--gradient-gold);
	background-clip: text;
	color: transparent;
	font-family: var(--font-heading);
	font-size: clamp(6rem, 32vw, 14rem);
	font-weight: 800;
	letter-spacing: -0.09em;
	line-height: 0.85;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.error-404 .page-title,
.no-results .page-title {
	margin-block: 1.5rem 0.75rem;
}

.error-404 .search-form,
.no-results .search-form {
	max-width: 34rem;
	margin: 2rem auto 0;
}

/* WordPress content helpers */
.alignleft {
	float: inline-start;
	margin: 0.5rem 1.5rem 1rem 0;
}

.alignright {
	float: inline-end;
	margin: 0.5rem 0 1rem 1.5rem;
}

.aligncenter {
	display: block;
	margin-inline: auto;
}

.alignwide {
	width: min(100%, var(--container));
}

.alignfull {
	width: 100%;
}

.wp-caption,
.gallery-caption,
figcaption {
	color: var(--color-muted);
	font-size: 0.8rem;
	text-align: center;
}

.wp-caption-text,
figcaption {
	margin-block-start: 0.5rem;
}

.gallery {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.75rem;
}

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.wp-block-separator,
hr {
	height: 1px;
	margin-block: 2rem;
	border: 0;
	background: var(--color-border);
}

table {
	width: 100%;
	border-collapse: collapse;
	border: 1px solid var(--color-border);
	background: var(--color-surface);
}

th,
td {
	padding: 0.75rem;
	border: 1px solid var(--color-border);
	text-align: start;
}

th {
	background: var(--color-surface-soft);
	color: var(--color-text);
}

.comments-area {
	margin-block-start: 3rem;
	padding-block-start: 2rem;
	border-top: 1px solid var(--color-border);
}

.comment-list {
	padding: 0;
	list-style: none;
}

.comment-body {
	padding: 1.25rem;
	margin-block-end: 1rem;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	background: var(--color-surface);
}

.bypostauthor > .comment-body {
	border-color: var(--color-border-gold);
}

/* JS-enhanced reveal. Content remains visible if JavaScript is unavailable. */
.reveal-ready [data-reveal],
.reveal-ready .reveal {
	opacity: 0;
	transform: translateY(18px);
	transition:
		opacity 420ms ease-out,
		transform 420ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal-ready [data-reveal].is-visible,
.reveal-ready .reveal.is-visible {
	opacity: 1;
	transform: none;
}

/* Tablet */
@media (min-width: 768px) {
	:root {
		--header-height: 76px;
	}

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

	.primary-navigation__actions {
		display: none;
	}

	.header-actions {
		display: flex;
	}

	.header-actions .button {
		min-height: 42px;
		padding-inline: 1rem;
	}

	.hero {
		min-height: 660px;
	}

	.hero__inner,
	.hero > .site-shell {
		justify-content: center;
	}

	.hero__content {
		width: min(62%, 38rem);
	}

	.hero__actions .button {
		flex: 0 0 auto;
		min-width: 148px;
	}

	.trust-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		margin-block-start: 2.5rem;
	}

	.trust-item {
		grid-template-columns: 36px minmax(0, 1fr);
		padding: 0.5rem;
	}

	.trust-item__icon,
	.trust-item > svg,
	.trust-item > img {
		width: 36px;
		height: 36px;
	}

	.section-heading__link {
		display: inline-flex;
	}

	.game-grid {
		gap: 1rem;
	}

	.game-card {
		min-height: 330px;
	}

	.game-card__content {
		padding: 1.15rem;
	}

	.game-card__title,
	.game-card h3 {
		font-size: 1.15rem;
	}

	.provider-strip {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 1rem;
	}

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

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

	.promo-card {
		min-height: 320px;
	}

	.member-cta__inner,
	.member-cta > .site-shell {
		grid-template-columns: minmax(0, 1fr) auto;
		text-align: start;
	}

	.member-cta__content {
		margin: 0;
	}

	.member-cta__actions {
		flex-direction: column;
	}

	.member-cta__actions .button {
		flex: 0 0 auto;
		width: 13rem;
	}

	.footer-highlights {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 0.25rem;
	}

	.footer-highlight {
		grid-template-columns: 38px minmax(0, 1fr);
		gap: 0.6rem;
	}

	.footer-highlight__icon {
		width: 38px;
		height: 38px;
	}

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

	.footer-brand {
		grid-column: 1 / -1;
	}

	.footer-bottom {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}

	.inner-hero {
		min-height: 280px;
	}

	.gallery-columns-3,
	.gallery-columns-4,
	.gallery-columns-5,
	.gallery-columns-6 {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

/* Desktop navigation and grids */
@media (min-width: 1024px) {
	:root {
		--header-height: 84px;
	}

	body.menu-open {
		overflow: auto;
	}

	.site-branding {
		margin-inline-end: 2rem;
	}

	.menu-toggle,
	.nav-enhanced .menu-toggle {
		display: none;
	}

	.primary-navigation,
	.nav-enhanced .primary-navigation {
		position: static;
		max-height: none;
		padding: 0;
		margin-inline-start: auto;
		overflow: visible;
		border: 0;
		border-radius: 0;
		background: transparent;
		box-shadow: none;
		opacity: 1;
		pointer-events: auto;
		transform: none;
		visibility: visible;
	}

	.primary-navigation ul,
	.primary-navigation .menu {
		flex-direction: row;
		align-items: center;
		gap: 0.15rem;
	}

	.primary-navigation a {
		min-height: 44px;
		padding-inline: 0.72rem;
		background: transparent;
		font-size: 0.88rem;
		white-space: nowrap;
	}

	.primary-navigation .current-menu-item > a,
	.primary-navigation .current_page_item > a,
	.primary-navigation a[aria-current="page"] {
		background: transparent;
	}

	.primary-navigation .current-menu-item > a::after,
	.primary-navigation .current_page_item > a::after,
	.primary-navigation a[aria-current="page"]::after {
		position: absolute;
		right: 0.75rem;
		bottom: 0.25rem;
		left: 0.75rem;
		height: 2px;
		border-radius: 2px;
		background: var(--color-gold);
		content: "";
	}

	.primary-navigation .sub-menu {
		position: absolute;
		top: calc(100% + 0.5rem);
		inset-inline-start: 0;
		display: block;
		min-width: 210px;
		padding: 0.5rem;
		border: 1px solid var(--color-border);
		border-radius: var(--radius-sm);
		background: rgba(7, 13, 25, 0.985);
		box-shadow: var(--shadow-card);
		opacity: 0;
		pointer-events: none;
		transform: translateY(-0.4rem);
		visibility: hidden;
		transition: opacity var(--transition-fast), transform var(--transition-fast), visibility var(--transition-fast);
	}

	.primary-navigation li:hover > .sub-menu,
	.primary-navigation li:focus-within > .sub-menu {
		opacity: 1;
		pointer-events: auto;
		transform: none;
		visibility: visible;
	}

	.header-actions {
		margin-inline-start: 1rem;
	}

	.hero {
		min-height: 620px;
		background-image:
			linear-gradient(
				90deg,
				rgba(1, 7, 21, calc(var(--hero-overlay, 0.32) * 3.05)) 0%,
				rgba(1, 7, 21, calc(var(--hero-overlay, 0.32) * 2.75)) 31%,
				rgba(1, 7, 21, calc(var(--hero-overlay, 0.32) * 0.5)) 67%,
				rgba(1, 7, 21, calc(var(--hero-overlay, 0.32) * 0.25)) 100%
			),
			linear-gradient(0deg, #020816 0%, transparent 24%),
			var(--hero-desktop-image, url("../images/hero-desktop.webp"));
		background-position: center;
	}

	.hero__content {
		width: min(52%, 40rem);
	}

	.hero__title {
		font-size: clamp(3.25rem, 4.2vw, 4rem);
	}

	.trust-grid {
		width: min(56%, 45rem);
	}

	.game-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 1.25rem;
	}

	.game-card {
		min-height: 360px;
	}

	.game-card__media,
	.game-card > picture,
	.game-card > img {
		aspect-ratio: 6 / 5;
	}

	.provider-strip {
		grid-template-columns: repeat(8, minmax(0, 1fr));
	}

	.promo-grid,
	.article-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 1.25rem;
	}

	.promo-card {
		min-height: 340px;
	}

	.ufa77-has-sidebar .content-layout {
		grid-template-columns: minmax(0, 1fr) 320px;
		gap: clamp(2rem, 5vw, 4rem);
	}

	.widget-area {
		align-self: start;
	}

	.post-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 1.25rem;
	}

	.error-404__inner:has(.error-404__image) {
		grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.8fr);
	}

	.error-404__inner:has(.error-404__image) .error-404__content {
		margin: 0;
		text-align: start;
	}

	.footer-grid {
		grid-template-columns: minmax(16rem, 1.6fr) repeat(3, minmax(0, 1fr));
		gap: 2.5rem;
	}

	.footer-brand {
		grid-column: auto;
	}

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

	.gallery-columns-5 {
		grid-template-columns: repeat(5, minmax(0, 1fr));
	}

	.gallery-columns-6 {
		grid-template-columns: repeat(6, minmax(0, 1fr));
	}
}

@media (min-width: 1200px) {
	.primary-navigation a {
		padding-inline: 0.9rem;
		font-size: 0.94rem;
	}

	.header-actions .button {
		padding-inline: 1.2rem;
	}

	.hero {
		min-height: 640px;
	}

	.game-card {
		min-height: 380px;
	}

	.provider-pill {
		min-height: 80px;
	}
}

@media (max-width: 374px) {
	.game-grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.game-card {
		min-height: 0;
	}

	.game-card__media,
	.game-card > picture,
	.game-card > img {
		aspect-ratio: 5 / 4;
	}

	.hero__actions,
	.member-cta__actions {
		flex-direction: column;
	}

	.hero__actions .button,
	.member-cta__actions .button {
		width: 100%;
		max-width: none;
	}

	/* A row flex-basis becomes vertical height once the CTAs stack. */
	.hero__actions .button,
	.member-cta__actions .button {
		flex: 0 0 auto;
		min-height: 50px;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}

	.reveal-ready [data-reveal],
	.reveal-ready .reveal {
		opacity: 1;
		transform: none;
	}
}

/* Reference-driven homepage refinement: compact, image-led, and content rich. */
.home .section,
.page-template .section {
	padding-block: clamp(2.5rem, 6vw, 4.5rem);
}

.home .section + .section,
.page-template .section + .section {
	padding-block-start: 0;
}

.section--surface {
	background: transparent;
}

.hero {
	min-height: 590px;
	background-position: 64% top;
}

.hero::before {
	position: absolute;
	z-index: -1;
	inset: 0;
	background: radial-gradient(circle at 52% 20%, rgba(242, 196, 92, 0.12), transparent 18rem);
	content: "";
	pointer-events: none;
}

.hero__inner,
.hero > .site-shell {
	justify-content: center;
	padding-block: clamp(2.75rem, 7vw, 4.5rem) 1.75rem;
}

.hero__content {
	position: relative;
	z-index: 1;
	width: min(100%, 35rem);
}

.hero__eyebrow {
	margin-block-end: 0.65rem;
	font-size: 0.74rem;
}

.hero__title {
	max-width: 13ch;
	margin-block-end: 0.8rem;
	font-size: clamp(2.45rem, 7vw, 4.8rem);
	font-weight: 800;
	letter-spacing: -0.045em;
	line-height: 1.08;
}

.hero__title-copy,
.hero__title-highlight {
	display: block;
}

.hero__title-copy,
.hero__text {
	white-space: pre-line;
}

.hero__title-highlight {
	margin-block-start: 0.08em;
	color: var(--color-gold-bright);
	text-shadow: 0 4px 18px rgba(217, 162, 62, 0.24);
}

.hero__text {
	max-width: 34rem;
	margin-block-end: 1.25rem;
	font-size: clamp(0.96rem, 2.1vw, 1.1rem);
	font-weight: 500;
	line-height: 1.7;
}

.hero__actions {
	gap: 0.7rem;
}

.hero__actions .button {
	min-height: 48px;
	padding-inline: 1.35rem;
}

.trust-grid {
	gap: 0.45rem;
	width: min(100%, 39rem);
	margin-block-start: 1.7rem;
	padding-block-start: 0.9rem;
	border-top: 1px solid rgba(242, 196, 92, 0.16);
}

.trust-item {
	grid-template-columns: 34px minmax(0, 1fr);
	gap: 0.5rem;
	padding: 0.35rem;
	border: 0;
	border-radius: 0;
	background: transparent;
	backdrop-filter: none;
}

.trust-item__icon,
.trust-item > svg,
.trust-item > img {
	width: 32px;
	height: 32px;
	padding: 0.42rem;
	border-color: rgba(242, 196, 92, 0.48);
	background: rgba(217, 162, 62, 0.13);
}

.trust-item__title,
.trust-item strong {
	font-size: 0.78rem;
}

.trust-item__text,
.trust-item small {
	font-size: 0.67rem;
}

.section-heading {
	margin-block-end: 1.25rem;
}

.section-heading__title,
.section-title {
	font-size: clamp(1.35rem, 3.5vw, 1.85rem);
	font-weight: 800;
}

.section-heading__link {
	color: var(--color-gold-bright);
	font-size: 0.82rem;
}

/* Full-bleed category cards match the image-led category row. */
.game-grid {
	gap: 0.8rem;
}

.game-card {
	min-height: 284px;
	border-color: rgba(242, 196, 92, 0.34);
	border-radius: 8px;
	background: #070d18;
}

.game-card__media,
.game-card > picture,
.game-card > img {
	position: absolute;
	inset: 0;
	aspect-ratio: auto;
}

.game-card__media::after {
	inset: 0;
	background: linear-gradient(180deg, rgba(2, 7, 17, 0.02) 15%, rgba(2, 7, 17, 0.34) 48%, rgba(1, 6, 14, 0.96) 100%);
}

.game-card__media img,
.game-card > picture img,
.game-card > img {
	object-position: center 32%;
}

.game-card__content {
	position: relative;
	z-index: 1;
	min-height: inherit;
	justify-content: flex-end;
	padding: 1rem;
}

.game-card__kicker {
	margin-block-end: 0.16rem;
	color: rgba(242, 196, 92, 0.86);
	font-size: 0.58rem;
	font-weight: 800;
	letter-spacing: 0.13em;
}

.game-card__title,
.game-card h3 {
	margin-block-end: 0.16rem;
	font-size: 1.2rem;
}

.game-card__text,
.game-card p {
	margin-block-end: 0.65rem;
	color: rgba(244, 244, 244, 0.78);
	font-size: 0.72rem;
	-webkit-line-clamp: 1;
}

.game-card .button {
	min-height: 44px;
	padding: 0.55rem 0.85rem;
	font-size: 0.74rem;
}

/* Provider logos retain an even tile rhythm and can be replaced from Theme Options. */
.provider-strip {
	gap: 0.55rem;
}

.provider-pill {
	position: relative;
	min-height: 58px;
	padding: 0.55rem;
	border-color: rgba(255, 255, 255, 0.1);
	border-radius: 6px;
	background: linear-gradient(145deg, rgba(19, 30, 47, 0.78), rgba(5, 11, 22, 0.82));
	box-shadow: inset 0 1px rgba(255, 255, 255, 0.035);
}

.provider-pill::before {
	position: absolute;
	top: 0.45rem;
	left: 0.45rem;
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background: rgba(242, 196, 92, 0.68);
	content: "";
}

.provider-pill__wordmark {
	max-width: 100%;
	color: #e8e7e3;
	font-family: var(--font-heading);
	font-size: clamp(0.63rem, 1.8vw, 0.86rem);
	font-weight: 800;
	letter-spacing: -0.04em;
	line-height: 1.05;
	text-align: center;
}

.provider-pill--has-logo {
	padding: 0.55rem 0.7rem;
}

.provider-pill--has-logo::before {
	display: none;
}

.provider-pill .provider-pill__logo {
	display: block;
	width: 100%;
	max-width: 116px;
	height: 38px;
	object-fit: contain;
	object-position: center;
	filter: none;
	opacity: 0.94;
	transition:
		filter var(--transition-fast),
		opacity var(--transition-fast),
		transform var(--transition-fast);
}

.provider-pill:hover .provider-pill__logo {
	filter: drop-shadow(0 0 8px rgba(242, 196, 92, 0.2));
	opacity: 1;
	transform: scale(1.035);
}

.provider-pill--jili .provider-pill__wordmark,
.provider-pill--sexy .provider-pill__wordmark {
	color: var(--color-gold-bright);
}

/* Promotion cards lead with the offer name then the numerical reward. */
.promo-grid {
	gap: 0.8rem;
}

.promo-card {
	min-height: 300px;
	border-color: rgba(242, 196, 92, 0.32);
	border-radius: 8px;
}

.promo-card::after {
	background:
		linear-gradient(180deg, rgba(2, 6, 14, 0.12) 0%, rgba(2, 6, 14, 0.16) 34%, rgba(2, 6, 14, 0.94) 100%),
		linear-gradient(90deg, rgba(2, 6, 14, 0.74), transparent 80%);
}

.promo-card__content {
	width: min(88%, 23rem);
	padding: 1.15rem;
}

.promo-card__title,
.promo-card h3 {
	margin-block-end: 0.2rem;
	font-size: 1.1rem;
	line-height: 1.35;
}

.promo-card__number {
	margin-block-end: 0.3rem;
	font-size: clamp(2.45rem, 7vw, 3.85rem);
}

.promo-card p {
	margin-block-end: 0.8rem;
	font-size: 0.76rem;
}

.promo-card .button {
	min-height: 42px;
	padding: 0.52rem 0.9rem;
	font-size: 0.74rem;
}

/* Article cards become compact editorial image cards with category chips. */
.article-grid {
	gap: 0.8rem;
}

.article-card {
	position: relative;
	isolation: isolate;
	display: flex;
	min-height: 235px;
	align-items: flex-end;
	border-color: rgba(255, 255, 255, 0.08);
	border-radius: 8px;
	background: #070d18;
}

.article-card::after {
	position: absolute;
	z-index: -1;
	inset: 0;
	background: linear-gradient(180deg, rgba(2, 7, 17, 0.04) 14%, rgba(2, 7, 17, 0.2) 42%, rgba(1, 6, 14, 0.95) 100%);
	content: "";
	pointer-events: none;
}

.article-card__media,
.article-card > picture,
.article-card > img,
.article-card .post-thumbnail {
	position: absolute;
	z-index: -2;
	inset: 0;
	aspect-ratio: auto;
}

.article-card--placeholder:nth-child(1) .article-card__media {
	background: url("../images/game-lottery.webp") center 36% / cover no-repeat;
}

.article-card--placeholder:nth-child(2) .article-card__media {
	background: url("../images/game-live.webp") center 34% / cover no-repeat;
}

.article-card--placeholder:nth-child(3) .article-card__media {
	background: url("../images/game-slots.webp") center 34% / cover no-repeat;
}

.article-card--placeholder .article-card__media img {
	opacity: 0;
}

.article-card__content--overlay {
	position: relative;
	z-index: 1;
	width: 100%;
	padding: 1rem;
}

.article-card__chip {
	display: inline-flex;
	min-height: 24px;
	align-items: center;
	padding: 0.2rem 0.52rem;
	margin-block-end: 0.55rem;
	border-radius: 3px;
	background: #275fc2;
	color: #fff;
	font-size: 0.64rem;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none;
}

.article-card:nth-child(2) .article-card__chip {
	background: #d28b1d;
}

.article-card:nth-child(3) .article-card__chip {
	background: #bf3d58;
}

.article-card__title,
.article-card .entry-title,
.article-card h3 {
	margin-block-end: 0.4rem;
	font-size: clamp(1rem, 2.4vw, 1.17rem);
	line-height: 1.42;
	-webkit-line-clamp: 2;
}

.article-card__meta,
.article-card .entry-meta {
	margin: 0;
	color: rgba(244, 244, 244, 0.65);
	font-size: 0.67rem;
}

.article-card__meta time::before {
	display: inline-block;
	width: 0.45rem;
	height: 0.45rem;
	margin-inline-end: 0.3rem;
	border: 1px solid currentColor;
	border-radius: 50%;
	content: "";
}

/* A lower, more detailed CTA band echoes the reference without hard-coded contact links. */
.member-cta {
	border-block-color: rgba(242, 196, 92, 0.42);
	background-color: #11100d;
	background-image:
		linear-gradient(90deg, rgba(2, 7, 16, 0.9) 0%, rgba(34, 25, 12, 0.76) 48%, rgba(2, 7, 16, 0.9) 100%),
		var(--cta-custom-image, none),
		var(--cta-pattern-image);
	background-position: center, center, center;
	background-repeat: no-repeat;
	background-size: cover, cover, cover;
}

.member-cta::before,
.member-cta::after {
	width: 13rem;
	height: 13rem;
	border-color: rgba(242, 196, 92, 0.22);
}

.member-cta__inner,
.member-cta > .site-shell {
	min-height: 192px;
	padding-block: 2rem;
}

.member-cta__title,
.member-cta h2 {
	max-width: 21ch;
	margin-block-end: 0.25rem;
	font-size: clamp(1.75rem, 4.2vw, 2.9rem);
	font-weight: 800;
	line-height: 1.18;
}

.member-cta__text,
.member-cta p {
	max-width: 45rem;
	font-size: 0.82rem;
}

.member-cta__actions {
	gap: 0.55rem;
}

.member-cta__actions .button {
	min-height: 44px;
	width: min(100%, 12.5rem);
	max-width: none;
	font-size: 0.78rem;
}

.member-cta__secondary {
	border-color: rgba(242, 196, 92, 0.62);
	background: rgba(2, 7, 16, 0.62);
}

.member-cta__line-icon {
	display: inline-grid;
	width: 1rem;
	height: 1rem;
	place-items: center;
}

.member-cta__line-icon svg {
	width: 100%;
	height: 100%;
}

/* Dense multi-column footer keeps all important destinations in the same visual language. */
.site-footer {
	background: linear-gradient(180deg, #07101d 0%, #020815 100%);
}

.site-footer::before {
	top: -23rem;
	right: -17rem;
	background: radial-gradient(circle, rgba(217, 162, 62, 0.12), transparent 68%);
}

.site-footer > .site-shell,
.footer-inner {
	padding-block: clamp(2rem, 5vw, 3.7rem) 1.2rem;
}

.footer-grid--reference {
	gap: 2rem;
}

.footer-brand .site-branding {
	padding: 0;
	margin: 0 0 0.85rem;
	border: 0;
	border-radius: 0;
	background: transparent;
}

.footer-brand .site-branding img,
.footer-brand .custom-logo {
	max-width: 154px;
	max-height: 48px;
}

.footer-brand p {
	max-width: 31ch;
	margin-block-end: 0.65rem;
	font-size: 0.78rem;
	line-height: 1.7;
}

.footer-brand__status {
	margin-block-start: 0.7rem;
	font-size: 0.7rem;
}

.footer-link-groups {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.35rem 1rem;
}

.footer-menu,
.site-footer .menu,
.footer-menu__list {
	gap: 0.38rem;
}

.footer-heading,
.site-footer h2,
.site-footer h3 {
	padding-block-end: 0.45rem;
	margin-block-end: 0.65rem;
	font-size: 0.88rem;
}

.footer-heading::after,
.site-footer h2::after,
.site-footer h3::after {
	width: 1.65rem;
}

.footer-menu a,
.site-footer .menu a,
.footer-menu__list a,
.legal-menu a {
	font-size: 0.72rem;
	line-height: 1.45;
}

.footer-contact--reference {
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.footer-contact__list {
	display: grid;
	gap: 0.52rem;
	padding: 0;
	margin: 0 0 0.9rem;
	list-style: none;
}

.footer-contact__item {
	display: grid;
	grid-template-columns: 22px minmax(0, 1fr);
	gap: 0.5rem;
	align-items: center;
	color: var(--color-muted);
	font-size: 0.72rem;
	line-height: 1.4;
}

.footer-contact__icon {
	display: grid;
	width: 20px;
	height: 20px;
	place-items: center;
	color: var(--color-gold-bright);
}

.footer-contact__icon svg {
	width: 100%;
	height: 100%;
}

.footer-contact__button {
	min-height: 44px;
	padding-inline: 1rem;
	font-size: 0.76rem;
}

.footer-bottom {
	gap: 0.7rem;
	margin-block-start: 2rem;
	padding-block-start: 1.1rem;
	font-size: 0.68rem;
}

.footer-age {
	display: inline-grid;
	width: 26px;
	height: 26px;
	place-items: center;
	border: 1px solid rgba(239, 91, 97, 0.68);
	border-radius: 50%;
	color: #ff8c8f;
	font-size: 0.6rem;
	font-weight: 800;
}

.footer-disclaimer {
	max-width: 68rem;
	margin: 0.8rem 0 0;
	color: rgba(168, 175, 188, 0.72);
	font-size: 0.64rem;
	line-height: 1.55;
}

@media (min-width: 640px) {
	.hero {
		min-height: 548px;
		background-image:
			linear-gradient(90deg, rgba(1, 7, 21, calc(var(--hero-overlay, 0.32) * 2.7)) 0%, rgba(1, 7, 21, calc(var(--hero-overlay, 0.32) * 2.45)) 34%, rgba(1, 7, 21, calc(var(--hero-overlay, 0.32) * 0.34)) 70%, rgba(1, 7, 21, calc(var(--hero-overlay, 0.32) * 0.18)) 100%),
			linear-gradient(0deg, #020816 0%, transparent 23%),
			var(--hero-desktop-image, url("../images/hero-premium-v2.webp"));
		background-position: center;
	}

	.hero__content {
		width: min(55%, 36rem);
	}

	.trust-grid {
		width: min(64%, 43rem);
		margin-block-start: 1.9rem;
	}

	.member-cta__inner,
	.member-cta > .site-shell {
		grid-template-columns: minmax(0, 1fr) auto;
		gap: 2rem;
		text-align: start;
	}

	.member-cta__content {
		margin: 0;
	}

	.member-cta__actions {
		flex-direction: column;
		justify-content: center;
	}

	.footer-brand {
		grid-column: 1 / -1;
	}

	.footer-contact--reference {
		grid-column: 1 / -1;
	}
}

@media (min-width: 1024px) {
	:root {
		--header-height: 74px;
	}

	.site-branding img,
	.custom-logo {
		max-width: 132px;
		max-height: 38px;
	}

	.primary-navigation a {
		padding-inline: 0.55rem;
		font-size: 0.8rem;
	}

	.header-actions {
		gap: 0.45rem;
		margin-inline-start: 0.7rem;
	}

	.header-actions .button {
		min-height: 38px;
		padding-inline: 0.82rem;
		font-size: 0.76rem;
	}

	.hero {
		min-height: 560px;
	}

	.hero__content {
		width: min(48%, 38rem);
	}

	.hero__title {
		font-size: clamp(3rem, 4.2vw, 4.55rem);
	}

	.trust-grid {
		width: min(54%, 44rem);
		margin-block-start: auto;
	}

	.trust-item {
		grid-template-columns: 36px minmax(0, 1fr);
	}

	.trust-item__icon,
	.trust-item > svg,
	.trust-item > img {
		width: 34px;
		height: 34px;
	}

	.game-grid,
	.provider-strip,
	.promo-grid,
	.article-grid {
		gap: 0.9rem;
	}

	.game-card {
		min-height: 342px;
	}

	.provider-pill {
		min-height: 70px;
	}

	.provider-pill .provider-pill__logo {
		max-width: 128px;
		height: 42px;
	}

	.promo-card {
		min-height: 330px;
	}

	.article-card {
		min-height: 242px;
	}

	.footer-grid--reference {
		grid-template-columns: minmax(14rem, 1.08fr) minmax(29rem, 2.25fr) minmax(11rem, 0.84fr);
		gap: 2rem;
	}

	.footer-brand,
	.footer-contact--reference {
		grid-column: auto;
	}

	.footer-link-groups {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 1rem;
	}

	.footer-bottom {
		align-items: center;
	}
}

@media (min-width: 1200px) {
	.primary-navigation a {
		padding-inline: 0.7rem;
		font-size: 0.86rem;
	}

	.header-actions .button {
		padding-inline: 1rem;
		font-size: 0.8rem;
	}

	.game-card {
		min-height: 372px;
	}
}

.mobile-bottom-nav {
	display: none;
}

@media (max-width: 639px) {
	#page {
		padding-bottom: calc(76px + env(safe-area-inset-bottom));
	}

	.mobile-bottom-nav {
		position: fixed;
		z-index: 1100;
		right: 0;
		bottom: 0;
		left: 0;
		display: grid;
		grid-template-columns: repeat(5, minmax(0, 1fr));
		gap: 8px;
		min-height: calc(68px + env(safe-area-inset-bottom));
		padding: 6px max(8px, env(safe-area-inset-right)) calc(6px + env(safe-area-inset-bottom)) max(8px, env(safe-area-inset-left));
		border-top: 1px solid rgba(242, 196, 92, 0.28);
		background: linear-gradient(180deg, rgba(12, 23, 38, 0.98), rgba(2, 8, 21, 0.99));
		box-shadow: 0 -14px 32px rgba(0, 0, 0, 0.36);
		backdrop-filter: blur(16px);
	}

	.mobile-bottom-nav__item {
		display: grid;
		min-width: 0;
		min-height: 56px;
		place-items: center;
		align-content: center;
		gap: 3px;
		padding: 3px 2px;
		border-radius: 12px;
		color: rgba(237, 240, 246, 0.72);
		font-family: var(--font-heading);
		font-size: 0.68rem;
		font-weight: 600;
		line-height: 1.15;
		text-align: center;
		text-decoration: none;
		touch-action: manipulation;
		transition: color var(--transition-fast), background-color var(--transition-fast), transform var(--transition-fast);
	}

	.mobile-bottom-nav__item:hover,
	.mobile-bottom-nav__item:focus-visible,
	.mobile-bottom-nav__item.is-active {
		background: rgba(217, 162, 62, 0.12);
		color: var(--color-gold-bright);
	}

	.mobile-bottom-nav__item:focus-visible {
		outline: 2px solid var(--color-gold-bright);
		outline-offset: -2px;
	}

	.mobile-bottom-nav__item:active {
		transform: scale(0.96);
	}

	.mobile-bottom-nav__icon {
		display: grid;
		width: 23px;
		height: 23px;
		place-items: center;
	}

	.mobile-bottom-nav__icon svg,
	.mobile-bottom-nav__primary-icon svg {
		width: 100%;
		height: 100%;
	}

	.mobile-bottom-nav__label {
		overflow: hidden;
		max-width: 100%;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.mobile-bottom-nav__item--primary {
		position: relative;
		color: #111318;
	}

	.mobile-bottom-nav__item--primary:hover,
	.mobile-bottom-nav__item--primary:focus-visible {
		background: transparent;
		color: #111318;
	}

	.mobile-bottom-nav__primary-icon {
		display: grid;
		width: 44px;
		height: 44px;
		place-items: center;
		margin-top: -23px;
		border: 2px solid #06101d;
		border-radius: 14px;
		background: var(--gradient-gold);
		box-shadow: 0 7px 16px rgba(217, 162, 62, 0.28);
	}

	.mobile-bottom-nav__item--primary .mobile-bottom-nav__label {
		max-width: none;
		margin-top: 1px;
		color: var(--color-gold-bright);
		font-size: 0.74rem;
		font-weight: 800;
		letter-spacing: 0;
		line-height: 1.1;
		white-space: nowrap;
	}

	/* Keep the mobile artwork visible while the text remains readable. */
	.hero {
		background-image:
			linear-gradient(
				180deg,
				rgba(1, 7, 21, calc(var(--hero-overlay, 0.32) * 0.35)) 0%,
				rgba(1, 7, 21, calc(var(--hero-overlay, 0.32) * 0.9)) 46%,
				rgba(1, 7, 21, calc(var(--hero-overlay, 0.32) * 1.65)) 100%
			),
			var(--hero-mobile-image, url("../images/hero-mobile.webp"));
	}

	.hero__content {
		width: min(100%, 24rem);
	}

	.hero__title {
		font-size: clamp(2.15rem, 10vw, 2.75rem);
	}

	.trust-grid {
		margin-block-start: auto;
	}

	.member-cta__actions .button {
		width: 100%;
	}

	.footer-link-groups {
		gap: 1.25rem 0.85rem;
	}
}

@media print {
	.site-header,
	.site-footer,
	.member-cta,
	.mobile-bottom-nav,
	.widget-area,
	.menu-toggle,
	.hero__actions {
		display: none !important;
	}

	body {
		background: #fff;
		color: #111;
	}

	a,
	h1,
	h2,
	h3,
	h4,
	h5,
	h6,
	.entry-content {
		color: #111;
	}

	.content-layout {
		display: block;
		width: 100%;
		padding: 0;
	}
}


/* Optional homepage rich-text block and rich footer copy. */
.section--custom-content {
	background: var(--color-surface);
}
.section--custom-content .site-shell {
	padding-block: clamp(2rem, 5vw, 4rem);
}
.custom-content__body {
	max-width: var(--content);
	margin-inline: auto;
	color: var(--color-text-soft);
	line-height: 1.8;
}
.custom-content__body > :first-child {
	margin-top: 0;
}
.custom-content__body > :last-child {
	margin-bottom: 0;
}
.custom-content__body h2,
.custom-content__body h3,
.custom-content__body h4,
.custom-content__body h5 {
	margin-block: 1.5rem 0.65rem;
	color: var(--color-text);
	font-family: var(--font-heading);
	line-height: 1.35;
}
.custom-content__body a {
	color: var(--color-gold-bright);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.16em;
}
.custom-content__body a:hover,
.custom-content__body a:focus-visible {
	color: var(--color-gold);
}
.custom-content__body img,
.custom-content__body video,
.custom-content__body iframe {
	max-width: 100%;
	height: auto;
	border-radius: var(--radius-md);
}
.custom-content__body ul,
.custom-content__body ol {
	padding-inline-start: 1.5rem;
}
.custom-content__body blockquote {
	margin-inline: 0;
	padding: 0.85rem 1rem;
	border-inline-start: 3px solid var(--color-gold);
	background: var(--color-surface-raised);
	border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.member-cta__text p,
.footer-brand__about p {
	margin: 0 0 0.65rem;
}
.member-cta__text p:last-child,
.footer-brand__about p:last-child {
	margin-bottom: 0;
}
@media (max-width: 640px) {
	.section--custom-content .site-shell {
		padding-block: 1.75rem;
	}
	.custom-content__body {
		font-size: 0.95rem;
	}
}


/* Elementor-first homepage blocks */
.ufa-native-section {
  width: 100%;
  position: relative;
  overflow: hidden;
  color: var(--color-text, #f5f7fb);
}
.ufa-native-shell {
  width: min(var(--container, 1200px), calc(100% - 2rem));
  margin-inline: auto;
  padding-block: clamp(2.8rem, 5vw, 5rem);
}
/*
 * Elementor's Boxed setting controls every homepage section except the hero.
 * The outer section keeps its full-bleed background; only its actual content
 * is held in the global Elementor container.
 */
.ufa-native-section.e-con-boxed > .e-con-inner {
  width: min(calc(100% - 2rem), var(--container-max-width, 1200px));
  max-width: none;
  margin-inline: auto;
  padding-block: clamp(2.8rem, 5vw, 5rem);
}
.ufa-native-section.e-con-boxed > .e-con-inner > .ufa-native-shell {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding-block: 0;
}
.ufa-native-hero {
  min-height: 38rem;
  background-color: #07111f;
  background-image: linear-gradient(90deg, rgba(3, 10, 20, .96) 0%, rgba(3, 10, 20, .78) 42%, rgba(3, 10, 20, .18) 100%), url('../images/hero-premium-v2.webp');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.ufa-native-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 78% 34%, rgba(248, 184, 54, .12), transparent 36%);
  pointer-events: none;
}
.ufa-native-hero-shell {
  position: relative;
  z-index: 1;
  min-height: 38rem;
  justify-content: center;
  gap: clamp(2.2rem, 4vw, 4.5rem);
}
.ufa-native-hero-content {
  max-width: 44rem;
  align-items: flex-start !important;
  gap: 0 !important;
}
.ufa-native-hero-title,
.ufa-native-hero-title .elementor-heading-title {
  margin: 0 !important;
  color: #fff;
}
.ufa-native-hero-title .elementor-heading-title {
  font-size: clamp(2.25rem, 4.3vw, 4.4rem);
  line-height: 1.08;
  letter-spacing: -.035em;
  font-weight: 800;
}
.ufa-native-hero-copy,
.ufa-native-hero-highlight {
  display: inline;
}
.ufa-native-hero-highlight {
  color: var(--color-gold, #f5b82e);
  white-space: nowrap;
}
.ufa-native-hero-text,
.ufa-native-hero-text .elementor-widget-container {
  margin: 1.25rem 0 0 !important;
  color: rgba(255,255,255,.78);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.75;
}
.ufa-native-actions {
  width: 100%;
  margin-top: 1.5rem;
  gap: .75rem !important;
  align-items: center !important;
}
.ufa-native-actions > .elementor-element {
  width: auto !important;
  flex: 0 1 auto !important;
}
.ufa-native-button .elementor-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: .68rem 1.35rem;
  border: 1px solid transparent;
  border-radius: .55rem;
  background: linear-gradient(135deg, #ffd566, #d89212);
  color: #10141b;
  font-weight: 800;
  line-height: 1.2;
  box-shadow: 0 .45rem 1.25rem rgba(214, 146, 18, .22);
  transition: transform .2s ease, filter .2s ease, box-shadow .2s ease;
}
.ufa-native-button .elementor-button:hover,
.ufa-native-button .elementor-button:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 0 .7rem 1.5rem rgba(214, 146, 18, .3);
}
.ufa-native-button-outline .elementor-button {
  background: rgba(6, 14, 26, .4);
  border-color: rgba(255, 210, 96, .7);
  color: #fff;
  box-shadow: none;
}
.ufa-native-trust-grid {
  width: 100%;
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .8rem !important;
}
.ufa-native-trust-item {
  position: relative;
  min-height: 4.5rem;
  padding: .9rem 1rem .9rem 3.25rem !important;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: .7rem;
  background: rgba(5, 15, 28, .52);
  backdrop-filter: blur(8px);
}
.ufa-native-trust-item::before {
  position: absolute;
  inset-inline-start: 1rem;
  top: 50%;
  display: grid;
  width: 1.55rem;
  height: 1.55rem;
  place-items: center;
  transform: translateY(-50%);
  border: 1px solid rgba(255,205,86,.72);
  border-radius: 50%;
  color: var(--color-gold, #f5b82e);
  font-size: .78rem;
  font-weight: 800;
}
.ufa-native-trust-auto::before { content: "↯"; }
.ufa-native-trust-safe::before { content: "✓"; }
.ufa-native-trust-clock::before { content: "◷"; }
.ufa-native-trust-member::before { content: "★"; }
.ufa-native-trust-title,
.ufa-native-trust-title .elementor-heading-title {
  margin: 0 !important;
  color: #fff;
  font-size: .96rem;
  font-weight: 700;
}
.ufa-native-trust-text,
.ufa-native-trust-text .elementor-widget-container {
  margin: .2rem 0 0 !important;
  color: var(--color-muted, #a9b4c6);
  font-size: .75rem;
  line-height: 1.45;
}
.ufa-native-games,
.ufa-native-promotions {
  background: var(--color-bg, #071321);
}
.ufa-native-providers,
.ufa-native-articles {
  background: var(--color-surface, #0b1a2b);
}
.ufa-native-section-head {
  width: 100%;
  align-items: end !important;
  justify-content: space-between !important;
  gap: 1rem !important;
  margin-bottom: 1.5rem;
}
.ufa-native-section-title,
.ufa-native-section-title .elementor-heading-title {
  margin: 0 !important;
  color: #fff;
  font-size: clamp(1.4rem, 2.1vw, 2rem);
  font-weight: 800;
  letter-spacing: -.02em;
}
.ufa-native-section-link .elementor-button {
  padding: .3rem 0;
  background: transparent;
  color: var(--color-gold, #f5b82e);
  font-size: .85rem;
  font-weight: 700;
  box-shadow: none;
}
.ufa-native-section-link .elementor-button::after {
  content: "›";
  padding-inline-start: .3rem;
  font-size: 1.2em;
}
.ufa-native-grid {
  width: 100%;
  display: grid !important;
  gap: 1rem !important;
}
.ufa-native-grid > .elementor-element {
  width: 100% !important;
  min-width: 0;
}
.ufa-native-game-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.ufa-native-card {
  overflow: hidden;
  border: 1px solid rgba(255, 206, 89, .34);
  border-radius: .8rem;
  background: linear-gradient(160deg, rgba(20, 32, 49, .98), rgba(7, 15, 27, .98));
  box-shadow: 0 1rem 2.4rem rgba(0,0,0,.15);
}
.ufa-native-game-card {
  min-height: 28rem;
}
.ufa-native-card-media,
.ufa-native-card-media .elementor-widget-container {
  width: 100%;
  height: 15rem;
  margin: 0 !important;
  overflow: hidden;
}
.ufa-native-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.ufa-native-game-card:hover .ufa-native-card-media img {
  transform: scale(1.04);
}
.ufa-native-card-content {
  flex: 1 1 auto;
  align-items: flex-start !important;
  padding: 1rem !important;
  gap: 0 !important;
}
.ufa-native-card-kicker,
.ufa-native-card-kicker .elementor-heading-title {
  margin: 0 !important;
  color: var(--color-gold, #f5b82e);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .14em;
}
.ufa-native-card-title,
.ufa-native-card-title .elementor-heading-title {
  margin: .35rem 0 0 !important;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 800;
}
.ufa-native-card-text,
.ufa-native-card-text .elementor-widget-container {
  margin: .45rem 0 0 !important;
  color: var(--color-muted, #a9b4c6);
  font-size: .86rem;
  line-height: 1.5;
}
.ufa-native-card-button {
  margin-top: auto !important;
  padding-top: 1rem;
}
.ufa-native-card-button .elementor-button {
  min-height: 2.45rem;
  padding: .5rem .95rem;
  font-size: .82rem;
}
.ufa-native-provider-grid {
  width: 100%;
  display: grid !important;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: .75rem !important;
}
.ufa-native-provider-grid > .elementor-element {
  width: 100% !important;
  min-width: 0;
}
.ufa-native-provider-pill {
  min-height: 4.8rem;
  align-items: center !important;
  justify-content: center;
  padding: .75rem !important;
  border: 1px solid rgba(165, 181, 206, .16);
  border-radius: .65rem;
  background: rgba(3, 10, 20, .46);
}
.ufa-native-provider-logo,
.ufa-native-provider-logo .elementor-widget-container {
  width: 100%;
  margin: 0 !important;
  text-align: center;
}
.ufa-native-provider-logo img {
  display: block;
  width: 100%;
  max-width: 8rem;
  height: 2.8rem;
  margin-inline: auto;
  object-fit: contain;
}
.ufa-native-promo-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.ufa-native-promo-card {
  min-height: 24rem;
}
.ufa-native-promo-media,
.ufa-native-promo-media .elementor-widget-container {
  width: 100%;
  height: 11rem;
  margin: 0 !important;
  overflow: hidden;
}
.ufa-native-promo-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ufa-native-promo-content {
  flex: 1 1 auto;
  align-items: flex-start !important;
  padding: 1.1rem 1.15rem 1.2rem !important;
  gap: 0 !important;
}
.ufa-native-promo-title,
.ufa-native-promo-title .elementor-heading-title {
  margin: 0 !important;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
}
.ufa-native-promo-number,
.ufa-native-promo-number .elementor-heading-title {
  margin: .1rem 0 .25rem !important;
  color: var(--color-gold, #f5b82e);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 900;
  line-height: 1;
}
.ufa-native-promo-text,
.ufa-native-promo-text .elementor-widget-container {
  margin: 0 !important;
  color: var(--color-muted, #a9b4c6);
  font-size: .84rem;
  line-height: 1.5;
}
.ufa-native-promo-button {
  margin-top: auto !important;
  padding-top: 1rem;
}
.ufa-native-promo-button .elementor-button {
  min-height: 2.45rem;
  padding: .5rem 1rem;
  font-size: .82rem;
}
.ufa-native-article-shortcode {
  width: 100%;
}
.ufa-native-article-shortcode .elementor-widget-container {
  margin: 0 !important;
}
.ufa-native-article-shortcode .article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
@media (max-width: 960px) {
  .ufa-native-game-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ufa-native-provider-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .ufa-native-trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ufa-native-hero { min-height: 34rem; }
  .ufa-native-hero-shell { min-height: 34rem; }
}
@media (max-width: 640px) {
  .ufa-native-shell {
    width: min(100% - 1.25rem, var(--container, 1200px));
    padding-block: 2.25rem;
  }
  .ufa-native-hero {
    min-height: 40rem;
    background-image: linear-gradient(180deg, rgba(3, 10, 20, .94) 0%, rgba(3, 10, 20, .72) 54%, rgba(3, 10, 20, .35) 100%), url('../images/hero-mobile.webp');
    background-position: center top;
  }
  .ufa-native-hero-shell {
    min-height: 40rem;
    justify-content: flex-start;
    padding-top: 2.4rem;
    gap: 2rem;
  }
  .ufa-native-hero-content { max-width: none; }
  .ufa-native-hero-title .elementor-heading-title {
    font-size: clamp(2rem, 10vw, 3.3rem);
    line-height: 1.08;
  }
  .ufa-native-hero-text { font-size: .98rem; }
  .ufa-native-actions {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .65rem !important;
  }
  .ufa-native-actions > .elementor-element {
    width: 100% !important;
  }
  .ufa-native-actions .elementor-button {
    width: 100%;
    min-height: 3rem;
    padding-inline: .6rem;
    font-size: .92rem;
  }
  .ufa-native-trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .65rem !important;
  }
  .ufa-native-trust-item {
    min-height: 4.2rem;
    padding: .7rem .55rem .7rem 2.55rem !important;
  }
  .ufa-native-trust-item::before {
    inset-inline-start: .7rem;
    width: 1.35rem;
    height: 1.35rem;
  }
  .ufa-native-trust-title .elementor-heading-title { font-size: .84rem; }
  .ufa-native-trust-text { font-size: .68rem; }
  .ufa-native-section-head {
    align-items: flex-start !important;
    margin-bottom: 1rem;
  }
  .ufa-native-section-title .elementor-heading-title { font-size: 1.35rem; }
  .ufa-native-section-link .elementor-button { font-size: .76rem; }
  .ufa-native-game-grid { gap: .65rem !important; }
  .ufa-native-game-card { min-height: 23rem; }
  .ufa-native-card-media,
  .ufa-native-card-media .elementor-widget-container { height: 9.5rem; }
  .ufa-native-card-content { padding: .75rem !important; }
  .ufa-native-card-title .elementor-heading-title { font-size: 1rem; }
  .ufa-native-card-text { font-size: .72rem; }
  .ufa-native-card-button .elementor-button {
    min-height: 2.25rem;
    padding: .42rem .7rem;
    font-size: .74rem;
  }
  .ufa-native-provider-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .55rem !important;
  }
  .ufa-native-provider-pill { min-height: 4rem; }
  .ufa-native-provider-logo img { height: 2.2rem; }
  .ufa-native-promo-grid,
  .ufa-native-article-shortcode .article-grid {
    grid-template-columns: 1fr;
    gap: .75rem;
  }
  .ufa-native-promo-card { min-height: 22rem; }
  .ufa-native-promo-media,
  .ufa-native-promo-media .elementor-widget-container { height: 10rem; }
}



/* Elementor global styles are loaded after the theme stylesheet; keep native block controls visually consistent. */
.ufa-native-hero-title .elementor-heading-title,
.ufa-native-section-title .elementor-heading-title,
.ufa-native-trust-title .elementor-heading-title,
.ufa-native-card-title .elementor-heading-title,
.ufa-native-promo-title .elementor-heading-title {
  color: #fff !important;
}
.ufa-native-card-kicker .elementor-heading-title,
.ufa-native-promo-number .elementor-heading-title {
  color: var(--color-gold, #f5b82e) !important;
}
.ufa-native-button-primary .elementor-button {
  background: linear-gradient(135deg, #ffd566, #d89212) !important;
  color: #10141b !important;
}
.ufa-native-button-outline .elementor-button,
.ufa-native-section-link .elementor-button {
  background: rgba(6, 14, 26, .4) !important;
  background-image: none !important;
  border-color: rgba(255, 210, 96, .7) !important;
  color: #fff !important;
  box-shadow: none !important;
}
.ufa-native-section-link .elementor-button {
  padding: .3rem 0 !important;
  border-color: transparent !important;
  background: transparent !important;
  color: var(--color-gold, #f5b82e) !important;
}



.ufa-native-mobile-copy,
.ufa-native-mobile-break {
  display: none;
}
@media (max-width: 640px) {
  .ufa-native-section.e-con-boxed > .e-con-inner {
    width: calc(100% - 1.25rem);
    padding-block: 2.25rem;
  }
  .ufa-native-desktop-copy {
    display: none !important;
  }
  .ufa-native-mobile-copy {
    display: inline !important;
  }
  .ufa-native-mobile-break {
    display: block;
  }
}

/*
 * Elementor can export a homepage card as either a child or a parent
 * container. Parent containers receive Elementor's default 16px side inset,
 * which makes the artwork visibly smaller on one site. Card media always
 * fills the same frame regardless of that export detail.
 */
.ufa-native-grid > .ufa-native-card.e-con {
  padding: 0 !important;
}
.ufa-native-card-media img,
.ufa-native-promo-media img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

/* Mobile rhythm: keep the page boxed, while avoiding three nested side
 * paddings around cards and images. The result leaves a deliberate gutter
 * instead of making every block full width. */
@media (max-width: 640px) {
  .ufa-native-section.e-con-boxed > .e-con-inner > .ufa-native-shell {
    padding-inline: .75rem !important;
  }
  .ufa-native-section.e-con-boxed .ufa-native-grid {
    padding-inline: .5rem !important;
  }
  .ufa-native-section.e-con-boxed .ufa-native-section-head {
    margin-bottom: 1.15rem;
  }
  .ufa-native-game-grid {
    gap: .75rem !important;
  }
  .ufa-native-promo-grid {
    gap: .85rem !important;
  }
}

/* Mobile content remains boxed by the section's own 16px gutter. Remove the
 * extra Elementor nesting insets so cards no longer sit 40px+ from an edge. */
@media (max-width: 640px) {
  .ufa-native-section.e-con-boxed > .e-con-inner {
    width: 100% !important;
    padding-block: 2rem;
  }
  .ufa-native-section.e-con-boxed > .e-con-inner > .ufa-native-shell,
  .ufa-native-section.e-con-boxed .ufa-native-grid,
  .ufa-native-section.e-con-boxed .ufa-native-provider-grid,
  .ufa-native-section.e-con-boxed .ufa-native-section-head {
    padding-inline: 0 !important;
  }
  .ufa-native-hero-shell {
    padding-inline: 0 !important;
  }
  .ufa-native-hero-content {
    padding-inline: .75rem !important;
  }
  .ufa-native-hero-title .elementor-heading-title,
  .ufa-native-section-title .elementor-heading-title,
  .ufa-native-card-title .elementor-heading-title,
  .ufa-native-promo-title .elementor-heading-title {
    font-weight: 700 !important;
    letter-spacing: 0 !important;
  }
}
