:root {
	--theme-primary: #2f1b6e;
	--theme-accent-color: #64a7eb;
	--theme-accent-active: #3a95ea;
	--theme-page-bg: #23252b;
	--theme-surface-raised: #2c2f37;
	--theme-grad-light: #f1f5fb;
	--theme-gradient-mid: #32343a;
	--theme-ink: #FFFFFF;
	--theme-text-muted: #bdbdbd;
	--theme-warning-bg: #dc2626;

	--theme-font-heading: "Roboto", system-ui, -apple-system, Segoe UI, sans-serif;
	--theme-font-base: "Roboto", system-ui, -apple-system, Segoe UI, sans-serif;

	--theme-size-h1: 80px;
	--theme-text-h2: 48px;
	--theme-fs-h3: 30px;
	--theme-type-h4: 22px;
	--theme-size-h5: 16px;
	--theme-text-h6: 13px;
	--theme-type-body: 15px;
	--theme-fs-small: 13px;
	--theme-text-xs: 11px;

	--theme-line-tight: 0.95;
	--theme-leading-normal: 1.45;
	--theme-leading-loose: 1.65;

	--theme-ls-tight: -0.04em;
	--theme-ls-normal: 0;
	--theme-tracking-wide: 0.08em;

	--theme-fw-normal: 400;
	--theme-weight-medium: 700;
	--theme-weight-bold: 900;

	--theme-gap-2xs: 3px;
	--theme-spacing-xs: 10px;
	--theme-gutter-sm: 18px;
	--theme-spacing-md: 28px;
	--theme-spacing-lg: 44px;
	--theme-gutter-xl: 60px;
	--theme-gutter-2xl: 88px;
	--theme-gutter-3xl: 128px;

	--theme-wrapper: 1140px;
	--theme-readable-width: 700px;
	--theme-edge-mobile: 16px;
	--theme-container-padding-tablet: 32px;
	--theme-edge-desktop: 48px;

	--theme-corner-xs: 2px;
	--theme-radius-sm: 8px;
	--theme-rounded-md: 14px;
	--theme-corner-lg: 22px;
	--theme-pill: 9999px;
	--theme-round-circle: 50%;

	--theme-shadow-xs: 0 0 0 1px rgba(255,255,255,0.06) inset;
	--theme-depth-sm: 0 4px 12px rgba(0,0,0,0.15), 0 0 0 1px rgba(255,255,255,0.08) inset;
	--theme-shade-md: 0 8px 24px rgba(0,0,0,0.20), 0 0 0 1px rgba(255,255,255,0.10) inset;
	--theme-shade-lg: 0 16px 48px rgba(0,0,0,0.30), 0 0 0 1px rgba(255,255,255,0.12) inset;

	--theme-border-width: 1px;
	--theme-border-medium: 2px;
	--theme-border-thick: 3px;

	--theme-duration-fast: 150ms;
	--theme-duration-base: 300ms;
	--theme-transition-slow: 600ms;
	--theme-easing: cubic-bezier(0.215, 0.61, 0.355, 1);
	--theme-ease-in: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	--theme-ease-in-out: cubic-bezier(0.645, 0.045, 0.355, 1);
	--theme-ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

	--theme-header-h: 92px;
	--theme-inner-max: calc(var(--theme-wrapper) + 2 * var(--theme-edge-desktop));
}

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

a {
	color: var(--theme-accent-color);
	transition: color var(--theme-duration-fast) var(--theme-easing);
}

a:hover {
	color: var(--theme-accent-active);
}

body {
	background: var(--theme-page-bg);
	color: var(--theme-ink);
	font-family: var(--theme-font-base);
	font-size: var(--theme-type-body);
	font-weight: var(--theme-fw-normal);
	line-height: var(--theme-leading-normal);
	margin: 0;
	padding-top: var(--theme-header-h);
}

button {
	font-family: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
}

h1 {
	color: var(--theme-ink);
	font-family: var(--theme-font-heading);
	font-size: var(--theme-size-h1);
	font-weight: var(--theme-weight-bold);
	letter-spacing: var(--theme-ls-tight);
	line-height: var(--theme-line-tight);
	text-transform: uppercase;
}

h2 {
	color: var(--theme-ink);
	font-family: var(--theme-font-heading);
	font-size: var(--theme-text-h2);
	font-weight: var(--theme-weight-medium);
	letter-spacing: var(--theme-ls-tight);
	line-height: var(--theme-line-tight);
	text-transform: uppercase;
}

h3 {
	color: var(--theme-ink);
	font-family: var(--theme-font-heading);
	font-size: var(--theme-fs-h3);
	font-weight: var(--theme-weight-medium);
	letter-spacing: var(--theme-ls-normal);
	line-height: var(--theme-line-tight);
}

h4 {
	color: var(--theme-ink);
	font-family: var(--theme-font-heading);
	font-size: var(--theme-type-h4);
	font-weight: var(--theme-weight-medium);
	line-height: var(--theme-line-tight);
}

h5,
h6 {
	color: var(--theme-ink);
	font-family: var(--theme-font-base);
	font-weight: var(--theme-weight-medium);
	letter-spacing: var(--theme-tracking-wide);
	text-transform: uppercase;
}

h5 {
	font-size: var(--theme-size-h5);
}

h6 {
	font-size: var(--theme-text-h6);
}

html {
	scroll-behavior: smooth;
}

html,
body {
	overflow-x: clip;
}

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

p {
	margin: 0;
}

ul {
	margin: 0;
	padding: 0;
}

.skip-link {
	background: var(--theme-accent-color);
	color: var(--theme-page-bg);
	font-family: var(--theme-font-heading);
	font-weight: var(--theme-weight-bold);
	left: var(--theme-spacing-md);
	padding: var(--theme-gutter-sm) var(--theme-spacing-md);
	position: fixed;
	top: var(--theme-spacing-md);
	text-transform: uppercase;
	z-index: 300;
}

.skip-link:not(:focus) {
	top: -200px !important;
}

.section-inner {
	margin-inline: auto;
	max-width: calc(var(--theme-wrapper) + 2 * var(--theme-edge-desktop));
	padding-inline: var(--theme-edge-desktop);
	width: 100%;
}

.visually-hidden {
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	height: 1px;
	overflow: hidden;
	position: absolute;
	white-space: nowrap;
	width: 1px;
}

/* Header — HEAD-07 .romafut */

.romafut {
	background: var(--theme-page-bg);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	transition: background var(--theme-duration-base) var(--theme-easing), padding var(--theme-duration-base) var(--theme-easing);
	z-index: 100;
}

.romafut.is-blurred {
	background: rgba(35, 37, 43, 0.9);
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
}

.romafut-inner {
	align-items: center;
	display: flex;
	gap: var(--theme-spacing-md);
	margin-inline: auto;
	max-width: calc(var(--theme-wrapper) + 2 * var(--theme-edge-desktop));
	min-height: var(--theme-header-h);
	padding-block: var(--theme-spacing-xs);
	padding-inline: var(--theme-spacing-md);
	width: 100%;
}

.romafut-logo,
.romafut-logo img {
	flex-shrink: 0;
}

.romafut-logo {
	display: inline-flex;
	align-items: center;
}

.romafut-logo img {
	height: 88px;
	width: auto;
}

.romafut-nav {
	flex: 1;
}

.romafut-list {
	align-items: center;
	display: flex;
	flex-wrap: nowrap;
	gap: var(--theme-gutter-sm);
	justify-content: flex-end;
	list-style: none;
}

.romafut-link {
	color: var(--theme-text-muted);
	display: inline-block;
	font-family: var(--theme-font-heading);
	font-size: var(--theme-fs-small);
	font-weight: var(--theme-weight-medium);
	letter-spacing: var(--theme-tracking-wide);
	padding-block: var(--theme-gap-2xs);
	text-decoration: none;
	text-transform: uppercase;
	white-space: nowrap;
}

.romafut-link:hover {
	color: var(--theme-ink);
}

body[data-current="/"] .romafut-link[data-nav="/"],
body[data-current="/login/"] .romafut-link[data-nav="/login/"],
body[data-current="/bonus-code/"] .romafut-link[data-nav="/bonus-code/"],
body[data-current="/live-betting/"] .romafut-link[data-nav="/live-betting/"],
body[data-current="/bet/"] .romafut-link[data-nav="/bet/"],
body[data-current="/e-sports/"] .romafut-link[data-nav="/e-sports/"],
body[data-current="/reviewer/"] .romafut-link[data-nav="/reviewer/"],
body[data-current="/support/"] .romafut-link[data-nav="/support/"] {
	color: var(--theme-accent-color);
}

.romafut-auth {
	display: flex;
	flex-shrink: 0;
	gap: var(--theme-spacing-xs);
}

.romafut-auth-btn {
	align-items: center;
	background: var(--theme-accent-color);
	border: 1px solid var(--theme-accent-color);
	border-radius: var(--theme-rounded-md);
	color: var(--theme-page-bg);
	display: inline-flex;
	flex-shrink: 0;
	font-family: var(--theme-font-heading);
	font-size: var(--theme-text-xs);
	font-weight: var(--theme-weight-bold);
	letter-spacing: var(--theme-tracking-wide);
	padding: var(--theme-spacing-xs) var(--theme-spacing-md);
	text-decoration: none;
	text-transform: uppercase;
	white-space: nowrap;
}

.romafut-auth-btn--theme-register:hover {
	background: var(--theme-accent-active);
	border-color: var(--theme-accent-active);
	color: var(--theme-page-bg);
}

.romafut-toggle {
	align-items: center;
	background: transparent;
	border: 0;
	color: var(--theme-ink);
	cursor: pointer;
	display: none;
	height: 44px;
	justify-content: center;
	margin-left: auto !important;
	width: 44px;
}

.romafut-toggle svg {
	height: 24px;
	width: 24px;
}

.romafut-mobile {
	background: var(--theme-page-bg);
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	display: none;
}

.romafut-mobile.is-open {
	display: block;
}

.romafut-mobile-list {
	list-style: none;
}

.romafut-mobile-link {
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	color: var(--theme-ink);
	display: block;
	font-family: var(--theme-font-heading);
	font-size: var(--theme-size-h5);
	font-weight: var(--theme-weight-medium);
	padding: var(--theme-gutter-sm) var(--theme-spacing-md);
	text-decoration: none;
	text-transform: uppercase;
}

.romafut-mobile-link:hover {
	color: var(--theme-accent-color);
}

/* Hero — HERO-06 .bygev */

.bygev {
	overflow: hidden;
	position: relative;
}

.bygev-content {
	margin-inline: auto;
	max-width: calc(var(--theme-wrapper) + 2 * var(--theme-edge-desktop));
	padding-block: var(--theme-gutter-2xl);
	padding-inline: var(--theme-edge-desktop);
	position: relative;
	width: 100%;
	z-index: 2;
}

.bygev-copy {
	max-width: 52%;
}

.bygev-title {
	color: var(--theme-ink);
}

.bygev-subtitle {
	color: var(--theme-text-muted);
	font-family: var(--theme-font-base);
	font-size: var(--theme-size-h5);
	line-height: var(--theme-leading-normal);
	margin-top: var(--theme-spacing-md);
	max-width: 560px;
}

.bygev-cta {
	align-items: center;
	background: var(--theme-accent-color);
	border-radius: var(--theme-rounded-md);
	color: var(--theme-page-bg);
	display: inline-flex;
	font-family: var(--theme-font-heading);
	font-size: var(--theme-text-h6);
	font-weight: var(--theme-weight-bold);
	letter-spacing: var(--theme-tracking-wide);
	margin-top: var(--theme-spacing-lg);
	min-height: 56px;
	padding-inline: var(--theme-gutter-xl);
	text-decoration: none;
	text-transform: uppercase;
	transition: background var(--theme-duration-base) var(--theme-easing), transform var(--theme-duration-base) var(--theme-easing);
}

.bygev-cta:hover {
	background: var(--theme-accent-active);
	color: var(--theme-page-bg);
	transform: translateY(-2px);
}

.bygev-figure {
	height: calc(100% + 80px);
	margin: 0;
	position: absolute;
	right: 0;
	top: -40px;
	transform: rotate(2deg);
	width: 56%;
	z-index: 1;
}

.bygev-figure img {
	border-radius: var(--theme-corner-lg);
	box-shadow: var(--theme-shade-lg);
	height: 100%;
	object-fit: cover;
	transition: transform var(--theme-transition-slow) var(--theme-easing);
	width: 100%;
}

.bygev-figure:hover img {
	transform: rotate(-2deg) scale(1.02);
}

/* Page header — PHEAD-04 .zubum */

.zubum {
	background: var(--theme-page-bg);
	padding-block: var(--theme-gutter-2xl);
}

.zubum-inner {
	align-items: start;
	display: grid;
	gap: var(--theme-gutter-2xl);
	grid-template-columns: 1.2fr 1fr;
	margin-inline: auto;
	max-width: calc(var(--theme-wrapper) + 2 * var(--theme-edge-desktop));
	padding-inline: var(--theme-edge-desktop);
	width: 100%;
}

.zubum-eyebrow {
	color: var(--theme-accent-color);
	display: block;
	font-family: var(--theme-font-base);
	font-size: var(--theme-fs-small);
	font-weight: var(--theme-weight-medium);
	letter-spacing: var(--theme-tracking-wide);
	margin-bottom: var(--theme-gutter-sm);
	text-transform: uppercase;
}

.zubum-title {
	color: var(--theme-ink);
}

.zubum-description {
	color: var(--theme-text-muted);
	font-family: var(--theme-font-base);
	font-size: var(--theme-size-h5);
	line-height: var(--theme-leading-normal);
}

/* Prose — PROSE-04 .zegi */

.zegi {
	padding-block: var(--theme-gutter-xl);
}

.zegi-inner {
	margin-inline: auto;
	max-width: calc(var(--theme-wrapper) + 2 * var(--theme-edge-desktop));
	padding-inline: var(--theme-edge-desktop);
	width: 100%;
}

.zegi h2 {
	color: var(--theme-ink);
	margin-bottom: var(--theme-spacing-md);
	margin-top: var(--theme-gutter-2xl);
}

.zegi h3 {
	color: var(--theme-ink);
	margin-bottom: var(--theme-gutter-sm);
	margin-top: var(--theme-spacing-lg);
}

.zegi p {
	color: var(--theme-ink);
	font-size: var(--theme-type-body);
	line-height: var(--theme-leading-loose);
	margin-bottom: var(--theme-spacing-md);
}

.zegi h2 + p::first-letter {
	color: var(--theme-accent-color);
	float: left;
	font-family: var(--theme-font-heading);
	font-size: 4em;
	font-weight: var(--theme-weight-bold);
	line-height: 0.8;
	margin-right: 0.1em;
	margin-top: 0.1em;
}

.zegi a {
	color: var(--theme-accent-color);
	text-decoration: underline;
	text-underline-offset: 3px;
	transition: text-decoration-thickness var(--theme-duration-fast) var(--theme-easing);
}

.zegi a:hover {
	text-decoration-thickness: 2px;
}

.zegi strong {
	color: var(--theme-ink);
	font-weight: var(--theme-weight-bold);
}

.zegi em {
	color: var(--theme-ink);
	font-style: italic;
}

.zegi ol,
.zegi ul {
	color: var(--theme-ink);
	font-size: var(--theme-type-body);
	line-height: var(--theme-leading-loose);
	margin-bottom: var(--theme-spacing-md);
	padding-left: var(--theme-spacing-md);
}

.zegi li {
	margin-bottom: var(--theme-spacing-xs);
}

.zegi-figure {
	margin: 0 0 var(--theme-spacing-lg);
}

.zegi-figure img {
	border-radius: var(--theme-rounded-md);
	width: 100%;
}

.zegi-figure--detail {
	float: right;
	margin: 0 0 var(--theme-spacing-md) var(--theme-spacing-lg);
	max-width: 42%;
}

/* Items grid — GRID-01 .nuxuve */

.nuxuve {
	padding-block: var(--theme-spacing-lg);
}

.nuxuve-inner {
	margin-inline: auto;
	max-width: calc(var(--theme-wrapper) + 2 * var(--theme-edge-desktop));
	padding-inline: var(--theme-edge-desktop);
	width: 100%;
}

.nuxuve-heading {
	margin-bottom: var(--theme-spacing-lg);
}

.nuxuve-list {
	display: grid;
	gap: var(--theme-spacing-lg);
	grid-template-columns: repeat(3, 1fr);
	list-style: none;
}

.nuxuve-item {
	background: var(--theme-surface-raised);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: var(--theme-rounded-md);
	padding: var(--theme-spacing-lg);
	transition: border-color var(--theme-duration-base) var(--theme-easing);
}

.nuxuve-item:hover {
	border-color: var(--theme-accent-color);
}

.nuxuve-item-title {
	color: var(--theme-ink);
	margin-bottom: var(--theme-gutter-sm);
}

.nuxuve-item-text {
	color: var(--theme-text-muted);
	font-size: var(--theme-type-body);
	line-height: var(--theme-leading-normal);
}

/* Data table — TABLE-05 .samun */

.samun {
	padding-block: var(--theme-gutter-xl);
}

.samun-inner {
	margin-inline: auto;
	max-width: calc(var(--theme-wrapper) + 2 * var(--theme-edge-desktop));
	padding-inline: var(--theme-edge-desktop);
	width: 100%;
}

.samun-heading {
	margin-bottom: var(--theme-spacing-md);
}

.samun-scroll {
	overflow-x: auto;
}

.samun-table {
	border-collapse: collapse;
	min-width: 560px;
	width: 100%;
}

.samun-table th {
	background: var(--theme-surface-raised);
	color: var(--theme-ink);
	font-family: var(--theme-font-base);
	font-size: var(--theme-text-xs);
	font-weight: var(--theme-weight-bold);
	letter-spacing: var(--theme-tracking-wide);
	padding: var(--theme-gutter-sm);
	text-align: left;
	text-transform: uppercase;
}

.samun-table td {
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	color: var(--theme-text-muted);
	font-size: var(--theme-fs-small);
	padding: var(--theme-spacing-xs) var(--theme-gutter-sm);
}

.samun-table td:first-child {
	color: var(--theme-ink);
	font-weight: var(--theme-weight-medium);
}

/* FAQ — FAQ-08 .lysabi */

.lysabi {
	padding-block: var(--theme-spacing-lg);
}

.lysabi-inner {
	margin-inline: auto;
	max-width: calc(var(--theme-wrapper) + 2 * var(--theme-edge-desktop));
	padding-inline: var(--theme-edge-desktop);
	width: 100%;
}

.lysabi-heading {
	margin-bottom: var(--theme-spacing-lg);
}

.lysabi-list {
	background: rgba(47, 27, 110, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--theme-corner-lg);
	padding: var(--theme-gutter-2xl);
}

.lysabi-item {
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: inset 4px 0 0 var(--theme-accent-color);
	padding-left: var(--theme-spacing-md);
}

.lysabi-item:last-child {
	border-bottom: 0;
}

.lysabi-q {
	margin: 0;
}

.lysabi-question-text {
	flex: 1;
	padding-right: var(--theme-spacing-md);
}

.lysabi-question {
	align-items: center;
	background: transparent;
	border: 0;
	color: var(--theme-ink);
	cursor: pointer;
	display: flex;
	font-family: var(--theme-font-base);
	font-size: var(--theme-size-h5);
	font-weight: var(--theme-weight-bold);
	justify-content: space-between;
	padding-block: var(--theme-spacing-md);
	text-align: left;
	width: 100%;
}

.lysabi-question:hover {
	color: var(--theme-accent-color);
}

.lysabi-icon {
	color: var(--theme-accent-color);
	flex-shrink: 0;
	font-size: 24px;
	line-height: 1;
	margin-left: var(--theme-spacing-md);
	transition: transform var(--theme-duration-base) var(--theme-easing);
}

.lysabi-question[aria-expanded="true"] .lysabi-icon {
	transform: rotate(45deg);
}

.lysabi-answer {
	padding-bottom: var(--theme-spacing-md);
	padding-top: var(--theme-gap-2xs);
}

.lysabi-answer[hidden] {
	display: none;
}

.lysabi-answer p {
	color: var(--theme-text-muted);
	font-size: var(--theme-type-body);
	line-height: var(--theme-leading-loose);
}

/* Reviews — REV-10 .xotada */

.xotada {
	padding-block: var(--theme-spacing-lg);
}

.xotada-inner {
	margin-inline: auto;
	max-width: calc(var(--theme-wrapper) + 2 * var(--theme-edge-desktop));
	padding-inline: var(--theme-edge-desktop);
	width: 100%;
}

.xotada-heading {
	margin-bottom: var(--theme-spacing-lg);
}

.xotada-list {
	list-style: none;
}

.xotada-item {
	border-bottom: 1px dotted rgba(255, 255, 255, 0.2);
	padding-block: var(--theme-spacing-md);
}

.xotada-item:last-child {
	border-bottom: 0;
}

.xotada-author {
	color: var(--theme-ink);
	font-size: var(--theme-type-body);
	font-weight: var(--theme-weight-medium);
}

.xotada-meta {
	color: var(--theme-text-muted);
	font-size: var(--theme-type-body);
}

.xotada-text {
	color: var(--theme-ink);
	font-size: var(--theme-type-body);
	line-height: var(--theme-leading-loose);
	margin-top: var(--theme-spacing-xs);
}

/* CTA block — CTA-04 .fumi */

.fumi {
	padding-block: var(--theme-gutter-xl);
	text-align: center;
}

.fumi-inner {
	margin-inline: auto;
	max-width: calc(var(--theme-wrapper) + 2 * var(--theme-edge-desktop));
	padding-inline: var(--theme-edge-desktop);
	width: 100%;
}

.fumi-title {
	color: var(--theme-ink);
}

.fumi-text {
	color: var(--theme-text-muted);
	font-size: var(--theme-type-body);
	line-height: var(--theme-leading-loose);
	margin-block: var(--theme-spacing-md);
	margin-inline: auto;
	max-width: 640px;
}

.fumi-link {
	color: var(--theme-accent-color);
	display: inline-block;
	font-family: var(--theme-font-heading);
	font-size: var(--theme-text-h6);
	font-weight: var(--theme-weight-bold);
	letter-spacing: var(--theme-tracking-wide);
	text-decoration: underline;
	text-transform: uppercase;
	text-underline-offset: 3px;
	transition: padding-left var(--theme-duration-fast) var(--theme-easing), text-decoration-thickness var(--theme-duration-fast) var(--theme-easing);
}

.fumi-link:hover {
	color: var(--theme-accent-active);
	padding-left: 8px;
	text-decoration-thickness: 2px;
}

/* Legal section — LEGAL-06 .mupebo */

.mupebo {
	padding-block: var(--theme-gutter-xl);
}

.mupebo-inner {
	margin-inline: auto;
	max-width: calc(var(--theme-wrapper) + 2 * var(--theme-edge-desktop));
	padding-inline: var(--theme-edge-desktop);
	width: 100%;
}

.mupebo-intro,
.mupebo-updated,
.mupebo-body {
	max-width: var(--theme-readable-width);
}

.mupebo-intro {
	color: var(--theme-ink);
	font-size: var(--theme-type-body);
	line-height: var(--theme-leading-loose);
	margin-bottom: var(--theme-spacing-lg);
}

.mupebo-updated {
	color: var(--theme-text-muted);
	font-size: var(--theme-text-xs);
	letter-spacing: var(--theme-tracking-wide);
	margin-bottom: var(--theme-spacing-lg);
	text-transform: uppercase;
}

.mupebo-body {
	counter-reset: legal-section;
}

.mupebo-section {
	counter-increment: legal-section;
	margin-bottom: var(--theme-spacing-md);
}

.mupebo-section h3 {
	color: var(--theme-ink);
	font-size: var(--theme-type-h4);
	margin-bottom: var(--theme-gutter-sm);
}

.mupebo-section h3::before {
	color: var(--theme-accent-color);
	content: "§ " counter(legal-section) ". ";
	font-family: var(--theme-font-heading);
	font-weight: var(--theme-weight-bold);
}

.mupebo-section p {
	color: var(--theme-text-muted);
	font-size: var(--theme-fs-small);
	line-height: var(--theme-leading-loose);
	margin-bottom: var(--theme-gutter-sm);
}

.mupebo-contacts {
	background: var(--theme-surface-raised);
	border-radius: var(--theme-rounded-md);
	margin-top: var(--theme-spacing-lg);
	padding: var(--theme-spacing-lg);
}

.mupebo-contacts h3 {
	font-size: var(--theme-type-h4);
	margin-bottom: var(--theme-gutter-sm);
}

.mupebo-contacts ul {
	list-style: none;
}

.mupebo-contacts li {
	color: var(--theme-text-muted);
	font-size: var(--theme-fs-small);
	line-height: var(--theme-leading-loose);
	margin-bottom: var(--theme-spacing-xs);
}

.mupebo-disclaimer {
	background: rgba(220, 38, 38, 0.08);
	border-left: 3px solid var(--theme-warning-bg);
	border-radius: var(--theme-corner-xs);
	color: var(--theme-text-muted);
	font-size: var(--theme-fs-small);
	line-height: var(--theme-leading-loose);
	margin-top: var(--theme-spacing-lg);
	padding: var(--theme-spacing-md);
}

/* Contact form — FORM-01 .rutus */

.rutus {
	padding-block: var(--theme-gutter-2xl);
}

.rutus-inner {
	margin-inline: auto;
	max-width: calc(var(--theme-wrapper) + 2 * var(--theme-edge-desktop));
	padding-inline: var(--theme-edge-desktop);
	width: 100%;
}

.rutus-intro {
	color: var(--theme-text-muted);
	font-size: var(--theme-type-body);
	line-height: var(--theme-leading-loose);
	margin-bottom: var(--theme-spacing-lg);
	max-width: 640px;
}

.rutus-success {
	background: rgba(34, 197, 94, 0.1);
	border: 1px solid rgba(34, 197, 94, 0.3);
	border-radius: var(--theme-rounded-md);
	color: var(--theme-ink);
	display: none;
	margin-bottom: var(--theme-spacing-md);
	padding: var(--theme-spacing-md);
}

.rutus-success.is-visible {
	display: block;
}

.rutus-form {
	background: var(--theme-surface-raised);
	border-radius: var(--theme-rounded-md);
	box-shadow: var(--theme-depth-sm);
	display: flex;
	flex-direction: column;
	gap: var(--theme-spacing-md);
	max-width: 640px;
	padding: var(--theme-spacing-lg);
}

.rutus-field {
	display: flex;
	flex-direction: column;
	gap: var(--theme-spacing-xs);
}

.rutus-label {
	color: var(--theme-ink);
	font-family: var(--theme-font-base);
	font-size: var(--theme-fs-small);
	font-weight: var(--theme-weight-medium);
	letter-spacing: var(--theme-tracking-wide);
	text-transform: uppercase;
}

.rutus-input,
.rutus-textarea {
	background: var(--theme-page-bg);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--theme-rounded-md);
	color: var(--theme-ink);
	font-family: var(--theme-font-base);
	font-size: var(--theme-type-body);
	padding: var(--theme-spacing-xs) var(--theme-spacing-md);
	width: 100%;
}

.rutus-input {
	height: 48px;
}

.rutus-textarea {
	min-height: 120px;
	resize: vertical;
}

.rutus-input:focus,
.rutus-textarea:focus {
	border-color: var(--theme-accent-color);
	outline: none;
}

.rutus-submit {
	align-self: flex-start;
	background: var(--theme-accent-color);
	border: 0;
	border-radius: var(--theme-rounded-md);
	color: var(--theme-page-bg);
	cursor: pointer;
	font-family: var(--theme-font-heading);
	font-weight: var(--theme-weight-bold);
	height: 48px;
	letter-spacing: var(--theme-tracking-wide);
	padding-inline: var(--theme-gutter-xl);
	text-transform: uppercase;
}

.rutus-submit:hover {
	background: var(--theme-accent-active);
}

/* Author byline — BYLINE-07 .depup */

.depup {
	margin-inline: auto;
	max-width: calc(var(--theme-wrapper) + 2 * var(--theme-edge-desktop));
	padding-block: var(--theme-spacing-lg);
	padding-inline: var(--theme-edge-desktop);
	width: 100%;
}

.depup-card {
	background: var(--theme-surface-raised);
	border-radius: var(--theme-rounded-md);
	box-shadow: var(--theme-depth-sm);
	padding: var(--theme-spacing-lg);
}

.depup-header {
	align-items: center;
	display: flex;
	gap: var(--theme-gutter-sm);
}

.depup-portrait {
	background: var(--theme-surface-raised);
	border: 2px solid var(--theme-surface-raised);
	border-radius: var(--theme-round-circle);
	box-sizing: content-box;
	height: 72px;
	object-fit: cover;
	object-position: center 20%;
	width: 72px;
}

.depup-name {
	color: var(--theme-ink);
	font-size: var(--theme-type-h4);
}

.depup-name a {
	color: var(--theme-ink);
	text-decoration: none;
}

.depup-name a:hover {
	color: var(--theme-accent-color);
}

.depup-role {
	color: var(--theme-text-muted);
	font-size: var(--theme-fs-small);
}

.depup-bio {
	color: var(--theme-text-muted);
	font-size: var(--theme-type-body);
	line-height: var(--theme-leading-loose);
	margin-top: var(--theme-spacing-md);
}

.depup-expertise {
	display: flex;
	flex-wrap: wrap;
	gap: var(--theme-spacing-xs);
	margin-top: var(--theme-spacing-md);
}

.depup-tag {
	background: var(--theme-primary);
	border-radius: var(--theme-pill);
	color: var(--theme-ink);
	font-size: var(--theme-text-xs);
	letter-spacing: var(--theme-tracking-wide);
	padding: var(--theme-gap-2xs) var(--theme-gutter-sm);
	text-transform: uppercase;
}

.depup-link {
	color: var(--theme-accent-color);
	display: inline-block;
	font-weight: var(--theme-weight-medium);
	margin-top: var(--theme-spacing-md);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.depup-link:hover {
	color: var(--theme-accent-active);
}

/* Author card — AUTH-08 .sogula */

.sogula {
	padding-block: var(--theme-gutter-xl);
}

.sogula-inner {
	margin-inline: auto;
	max-width: calc(var(--theme-wrapper) + 2 * var(--theme-edge-desktop));
	padding-inline: var(--theme-edge-desktop);
	width: 100%;
}

.sogula-card {
	align-items: center;
	background: var(--theme-surface-raised);
	border-radius: var(--theme-corner-lg);
	box-shadow: var(--theme-depth-sm);
	display: flex;
	gap: var(--theme-spacing-lg);
	padding: var(--theme-gutter-xl) var(--theme-spacing-lg);
}

.sogula-portrait {
	background: var(--theme-surface-raised);
	border: 3px solid var(--theme-surface-raised);
	border-radius: var(--theme-round-circle);
	box-sizing: content-box;
	flex-shrink: 0;
	height: 160px;
	object-fit: cover;
	object-position: center 20%;
	width: 160px;
}

.sogula-body {
	display: flex;
	flex-direction: column;
	gap: var(--theme-gutter-sm);
}

.sogula-job {
	color: var(--theme-accent-color);
	font-family: var(--theme-font-base);
	font-size: var(--theme-fs-small);
	font-weight: var(--theme-weight-medium);
	letter-spacing: var(--theme-tracking-wide);
	text-transform: uppercase;
}

.sogula-name {
	color: var(--theme-ink);
}

.sogula-bio {
	color: var(--theme-text-muted);
	font-size: var(--theme-type-body);
	line-height: var(--theme-leading-loose);
}

.sogula-expertise {
	display: flex;
	flex-wrap: wrap;
	gap: var(--theme-spacing-xs);
	list-style: none;
}

.sogula-expertise li {
	background: var(--theme-primary);
	border-radius: var(--theme-pill);
	color: var(--theme-ink);
	font-size: var(--theme-text-xs);
	letter-spacing: var(--theme-tracking-wide);
	padding: var(--theme-gap-2xs) var(--theme-gutter-sm);
	text-transform: uppercase;
}

.sogula-articles {
	margin-inline: auto;
	max-width: calc(var(--theme-wrapper) + 2 * var(--theme-edge-desktop));
	padding-block: var(--theme-spacing-lg);
	padding-inline: var(--theme-edge-desktop);
	width: 100%;
}

.sogula-articles-heading {
	color: var(--theme-ink);
	font-size: var(--theme-type-h4);
	margin-bottom: var(--theme-spacing-md);
}

.sogula-articles-list {
	display: flex;
	flex-direction: column;
	gap: var(--theme-spacing-xs);
	list-style: none;
}

.sogula-articles-item {
	font-size: var(--theme-type-body);
	line-height: var(--theme-leading-normal);
}

.sogula-articles-item a {
	color: var(--theme-accent-color);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.sogula-articles-item a:hover {
	color: var(--theme-accent-active);
}

/* Error block — ERR-03 .bogagi */

.bogagi {
	padding-block: var(--theme-gutter-2xl);
}

.bogagi-inner {
	margin-inline: auto;
	max-width: calc(var(--theme-wrapper) + 2 * var(--theme-edge-desktop));
	padding-inline: var(--theme-edge-desktop);
	text-align: center;
	width: 100%;
}

.bogagi-content {
	margin-inline: auto;
	max-width: 600px;
}

.bogagi-title {
	color: var(--theme-ink);
	font-size: var(--theme-text-h2);
}

.bogagi-text {
	color: var(--theme-text-muted);
	font-size: var(--theme-type-body);
	line-height: var(--theme-leading-loose);
	margin-block: var(--theme-spacing-md);
}

.bogagi-button {
	align-items: center;
	background: var(--theme-accent-color);
	border-radius: var(--theme-rounded-md);
	color: var(--theme-page-bg);
	display: inline-flex;
	font-family: var(--theme-font-heading);
	font-weight: var(--theme-weight-bold);
	height: 44px;
	letter-spacing: var(--theme-tracking-wide);
	padding-inline: var(--theme-gutter-xl);
	text-decoration: none;
	text-transform: uppercase;
}

.bogagi-button:hover {
	background: var(--theme-accent-active);
	color: var(--theme-page-bg);
}

/* Footer — FOOT-06 .xyget */

.xyget {
	background: var(--theme-page-bg);
	padding-block: var(--theme-gutter-3xl);
}

.xyget-manifesto {
	margin-inline: auto;
	max-width: calc(var(--theme-wrapper) + 2 * var(--theme-edge-desktop));
	padding-inline: var(--theme-edge-desktop);
	text-align: center;
	width: 100%;
}

.xyget-statement {
	color: var(--theme-ink);
	margin-inline: auto;
	max-width: 700px;
}

.xyget-cta {
	color: var(--theme-accent-color);
	display: inline-block;
	font-family: var(--theme-font-heading);
	font-size: var(--theme-size-h5);
	font-weight: var(--theme-weight-bold);
	letter-spacing: var(--theme-tracking-wide);
	margin-top: var(--theme-spacing-md);
	text-decoration: underline;
	text-transform: uppercase;
	text-underline-offset: 4px;
}

.xyget-cta:hover {
	color: var(--theme-accent-active);
}

.xyget-divider {
	background: rgba(255, 255, 255, 0.1);
	border: 0;
	height: 1px;
	margin-block: var(--theme-gutter-xl);
	margin-inline: auto;
	max-width: calc(var(--theme-wrapper) + 2 * var(--theme-edge-desktop));
	width: calc(100% - 2 * var(--theme-edge-desktop));
}

.xyget-meta {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: var(--theme-spacing-md);
	justify-content: space-between;
	margin-inline: auto;
	max-width: calc(var(--theme-wrapper) + 2 * var(--theme-edge-desktop));
	padding-inline: var(--theme-edge-desktop);
	width: 100%;
}

.xyget-logo img {
	height: 64px;
	width: auto;
}

.xyget-nav ul,
.xyget-legal ul {
	display: flex;
	flex-wrap: wrap;
	gap: var(--theme-gutter-sm);
	list-style: none;
}

.xyget-nav a,
.xyget-legal a {
	color: var(--theme-text-muted);
	font-size: var(--theme-fs-small);
	text-decoration: none;
}

.xyget-nav a:hover,
.xyget-legal a:hover {
	color: var(--theme-accent-color);
}

.xyget-legal a {
	font-size: var(--theme-text-xs);
	letter-spacing: var(--theme-tracking-wide);
	text-transform: uppercase;
}

.xyget-copyright {
	color: var(--theme-text-muted);
	font-size: var(--theme-text-xs);
}

/* Responsible gaming strip */

.rg-strip {
	background: var(--theme-primary);
	color: var(--theme-ink);
	font-size: var(--theme-text-xs);
	letter-spacing: var(--theme-tracking-wide);
	padding-block: var(--theme-spacing-xs);
	text-align: center;
	text-transform: uppercase;
}

/* Cookie banner — COOK-04 .vykaraz */

.vykaraz {
	bottom: 0;
	display: none;
	left: 0;
	position: fixed;
	right: 0;
	z-index: 90;
}

.vykaraz.is-visible {
	display: block;
}

.vykaraz-backdrop {
	background: rgba(0, 0, 0, 0.4);
	inset: 0;
	position: fixed;
	z-index: 89;
}

.vykaraz-panel {
	background: var(--theme-page-bg);
	border-top: 4px solid var(--theme-accent-color);
	position: relative;
	z-index: 90;
}

.vykaraz-inner {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: var(--theme-spacing-md);
	margin-inline: auto;
	max-width: calc(var(--theme-wrapper) + 2 * var(--theme-edge-desktop));
	padding: var(--theme-gutter-xl) var(--theme-edge-desktop);
	text-align: center;
	width: 100%;
}

.vykaraz-title {
	color: var(--theme-ink);
	font-size: var(--theme-type-h4);
}

.vykaraz-message {
	color: var(--theme-text-muted);
	font-size: var(--theme-type-body);
	line-height: var(--theme-leading-loose);
	max-width: 720px;
}

.vykaraz-actions {
	display: flex;
	gap: var(--theme-spacing-md);
}

.vykaraz-button {
	border-radius: var(--theme-rounded-md);
	cursor: pointer;
	font-family: var(--theme-font-heading);
	font-size: var(--theme-fs-small);
	font-weight: var(--theme-weight-bold);
	height: 48px;
	letter-spacing: var(--theme-tracking-wide);
	padding-inline: var(--theme-spacing-lg);
	text-transform: uppercase;
}

.vykaraz-button--theme-accept {
	background: var(--theme-accent-color);
	border: 1px solid var(--theme-accent-color);
	color: var(--theme-page-bg);
}

.vykaraz-button--theme-accept:hover {
	background: var(--theme-accent-active);
}

.vykaraz-button--theme-decline {
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.15);
	color: var(--theme-ink);
}

.vykaraz-button--theme-decline:hover {
	background: rgba(255, 255, 255, 0.04);
}

/* Reduced motion */

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		transition-duration: 0.01ms !important;
	}

	html {
		scroll-behavior: auto;
	}
}

/* Tablet + mobile — desktop-first (BP-02) */

@media (max-width: 1179px) {
	.romafut-logo img {
		height: 76px;
	}

	.bygev-copy {
		max-width: 60%;
	}
}

@media (max-width: 1199px) {
	:root {
		--theme-size-h1: 44px;
		--theme-text-h2: 32px;
		--theme-fs-h3: 24px;
		--theme-type-h4: 18px;
		--theme-size-h5: 14px;
		--theme-text-h6: 12px;
		--theme-type-body: 14px;
		--theme-fs-small: 12px;
		--theme-text-xs: 10px;
		--theme-header-h: 76px;
	}

	.section-inner,
	.bygev-content,
	.zubum-inner,
	.zegi-inner,
	.nuxuve-inner,
	.samun-inner,
	.lysabi-inner,
	.xotada-inner,
	.fumi-inner,
	.rutus-inner,
	.depup,
	.sogula-inner,
	.sogula-articles,
	.bogagi-inner,
	.xyget-manifesto,
	.xyget-meta,
	.vykaraz-inner {
		padding-inline: var(--theme-edge-mobile);
	}

	.mupebo-inner {
		padding-inline: var(--theme-edge-mobile);
	}

	.romafut-logo img {
		height: 62px;
	}

	.romafut-nav,
	.romafut-auth {
		display: none;
	}

	.romafut-toggle {
		display: inline-flex;
	}

	.bygev-content {
		padding-block: var(--theme-gutter-xl);
	}

	.bygev-copy {
		max-width: 100%;
	}

	.bygev-figure {
		height: 240px;
		margin-top: var(--theme-spacing-lg);
		position: relative;
		right: auto;
		top: auto;
		transform: none;
		width: 100%;
	}

	.bygev-figure img {
		border-radius: var(--theme-rounded-md);
	}

	.zubum-inner {
		grid-template-columns: 1fr;
		gap: var(--theme-spacing-md);
	}

	.nuxuve-list {
		grid-template-columns: 1fr;
	}

	.lysabi-list {
		padding: var(--theme-spacing-md);
	}

	.zegi-figure--detail {
		float: none;
		margin: 0 0 var(--theme-spacing-md);
		max-width: 100%;
	}

	.sogula-card {
		flex-direction: column;
		text-align: center;
	}

	.sogula-expertise {
		justify-content: center;
	}

	.depup-portrait {
		height: 60px;
		width: 60px;
	}

	.xyget-meta {
		flex-direction: column;
		text-align: center;
	}

	.xyget-nav ul,
	.xyget-legal ul {
		justify-content: center;
	}
}

@media (max-width: 720px) {
	.vykaraz-inner {
		padding: var(--theme-spacing-md) var(--theme-edge-mobile);
	}

	.vykaraz-title {
		display: none;
	}

	.vykaraz-message {
		font-size: var(--theme-fs-small);
	}

	.vykaraz-actions {
		flex-direction: column;
		width: 100%;
	}

	.vykaraz-button {
		flex: 1 1 auto;
		width: 100%;
	}
}

