/*
Theme Name: Winza Lite
Theme URI: https://staging-test.space/
Author: OpenAI Codex
Description: Lightweight WordPress recreation of the staging casino template without Elementor, Bootstrap, Swiper, or other heavy frontend dependencies.
Version: 1.1.0
Requires at least: 6.5
Tested up to: 6.8
Requires PHP: 7.4
Text Domain: winza-lite
*/

:root {
	--bg: #09070d;
	--bg-soft: #131217;
	--bg-card: #16161c;
	--bg-card-alt: #1b1c23;
	--bg-muted: #20222c;
	--surface: #ffffff;
	--text: #ffffff;
	--text-soft: rgba(255, 255, 255, 0.72);
	--text-mute: rgba(255, 255, 255, 0.55);
	--accent: #1e73be;
	--accent-dark: #14548c;
	--accent-alt: #d32222;
	--accent-alt-dark: #a01212;
	--success: #00ff03;
	--border: rgba(255, 255, 255, 0.08);
	--shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
	--radius-sm: 8px;
	--radius-md: 14px;
	--radius-lg: 18px;
	--container: 1320px;
	--container-narrow: 1320px;
	--transition: 0.25s ease;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: "Roboto", Arial, sans-serif;
	background: var(--bg);
	color: var(--text);
	line-height: 1.55;
}

body.is-menu-open {
	overflow: hidden;
}

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

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

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

button {
	border: 0;
	background: transparent;
}

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

.narrow-container {
	width: min(calc(100% - 24px), var(--container-narrow));
}

.site-main {
	overflow: clip;
}

.site-header {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 100;
	background: rgba(6, 2, 12, 0.94);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	backdrop-filter: blur(12px);
	transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

body.home .site-header {
	background: transparent;
	border-bottom-color: transparent;
	backdrop-filter: none;
}

body.home .site-header.is-scrolled,
body.home.is-menu-open .site-header {
	background: rgba(6, 2, 12, 0.94);
	border-bottom-color: rgba(255, 255, 255, 0.06);
	backdrop-filter: blur(12px);
}

body.contact-page-body .site-header {
	background: transparent;
	border-bottom-color: transparent;
	backdrop-filter: none;
}

body.contact-page-body .site-header.is-scrolled,
body.contact-page-body.is-menu-open .site-header {
	background: rgba(6, 2, 12, 0.94);
	border-bottom-color: rgba(255, 255, 255, 0.06);
	backdrop-filter: blur(12px);
}

.header-shell {
	display: grid;
	grid-template-columns: auto 1fr auto auto;
	align-items: center;
	gap: 10px;
	min-height: 74px;
}

.brand img {
	width: auto;
	height: 38px;
}

.desktop-nav-list,
.desktop-submenu,
.footer-nav-list,
.footer-submenu,
.mobile-nav-list,
.mobile-submenu {
	margin: 0;
	padding: 0;
	list-style: none;
}

.desktop-nav {
	display: none;
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 10px;
}

.header-button,
.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	position: relative;
	border-radius: var(--radius-sm);
	font-weight: 800;
	letter-spacing: 0.01em;
	text-align: center;
	transition: background var(--transition), transform var(--transition), border-color var(--transition), color var(--transition), box-shadow var(--transition);
	animation: buttonPulse 2.8s ease-in-out infinite;
}

.header-button:hover,
.button:hover {
	transform: scale(1.03);
}

.header-button {
	min-height: 36px;
	padding: 9px 14px;
	font-size: 12px;
	line-height: 1;
}

.header-button-primary {
	background: var(--accent);
	color: #fff;
}

.header-button-primary:hover,
.button-primary:hover {
	background: var(--accent-dark);
}

.header-button-secondary {
	background: var(--accent-alt);
	color: #fff;
}

.header-button-secondary:hover {
	background: var(--accent-alt-dark);
}

.menu-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 10px;
	color: #fff;
	background: rgba(255, 255, 255, 0.06);
	cursor: pointer;
}

.menu-toggle svg {
	width: 18px;
	height: 16px;
	fill: currentColor;
}

.mobile-backdrop {
	position: fixed;
	inset: 0;
	z-index: 139;
	background: rgba(0, 0, 0, 0.6);
}

.mobile-panel {
	position: fixed;
	inset: 0;
	z-index: 140;
	width: 100vw;
	max-width: 100vw;
	padding: 18px 18px 24px;
	background: #0b0b10;
	box-shadow: var(--shadow);
	overflow-y: auto;
}

.mobile-panel[hidden],
.mobile-backdrop[hidden] {
	display: none;
}

.mobile-panel.is-open,
.mobile-backdrop.is-open {
	display: block !important;
}

.mobile-panel-inner {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	gap: 24px;
	position: relative;
	z-index: 2;
	max-width: 380px;
	margin: 0 auto;
}

.mobile-panel-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.mobile-brand img {
	height: 42px;
}

.mobile-close {
	position: relative;
	width: 36px;
	height: 36px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.06);
	cursor: pointer;
}

.mobile-close span {
	position: absolute;
	top: 17px;
	left: 8px;
	width: 20px;
	height: 2px;
	background: #fff;
}

.mobile-close span:first-child {
	transform: rotate(45deg);
}

.mobile-close span:last-child {
	transform: rotate(-45deg);
}

.mobile-nav .mobile-nav-list > .winza-menu-item {
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	background: transparent;
}

.mobile-nav {
	display: block !important;
	width: 100%;
	padding: 14px 18px;
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 18px;
	background: #14151a;
	visibility: visible;
	opacity: 1;
}

.mobile-nav-stack {
	display: grid !important;
	width: 100%;
}

.mobile-nav-entry {
	display: block !important;
}

.mobile-nav-entry + .mobile-nav-entry {
	border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-nav-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.mobile-nav-link {
	display: block !important;
	flex: 1 1 auto;
	padding: 16px 0;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.2;
	color: #fff !important;
}

.submenu-toggle {
	position: relative;
	width: 30px;
	height: 30px;
	flex: 0 0 30px;
	border-radius: 50%;
	color: #fff;
	background: rgba(255, 255, 255, 0.08);
	cursor: pointer;
}

.submenu-toggle span {
	position: absolute;
	top: 14px;
	left: 8px;
	width: 14px;
	height: 2px;
	background: currentColor;
	transition: transform var(--transition), opacity var(--transition);
}

.submenu-toggle span:last-child {
	transform: rotate(90deg);
}

.mobile-nav-entry.is-open .submenu-toggle span:last-child {
	transform: rotate(0deg);
}

.mobile-submenu-panel {
	display: none;
	padding: 0 0 14px 14px;
}

.mobile-nav-entry.is-open .mobile-submenu-panel {
	display: grid !important;
	gap: 10px;
}

.mobile-submenu-link {
	display: block !important;
	font-size: 14px;
	font-weight: 500;
	color: var(--text-soft) !important;
	line-height: 1.4;
}

.mobile-contact-card {
	margin-top: auto;
	padding: 18px;
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	background: #14151a;
}

.contact-item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
}

.contact-item + .contact-item {
	margin-top: 16px;
}

.contact-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	flex: 0 0 42px;
}

.contact-icon svg {
	width: 19px;
	height: 19px;
}

.contact-text {
	color: #fff;
	font-size: 14px;
	line-height: 1.5;
}

.contact-text a {
	color: inherit;
}

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

.hero-section {
	position: relative;
	padding: 116px 0 0;
	background: linear-gradient(193deg, #6f25b9 0%, #9d125f 52%, #f2295b 100%);
	overflow: hidden;
}

.hero-section::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.42));
}

.hero-shell {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.hero-copy {
	position: relative;
	z-index: 3;
	max-width: 520px;
	margin: 0 auto;
	text-align: center;
}

.hero-copy h1 {
	margin: 0;
	font-family: "Kumbh Sans", Arial, sans-serif;
	font-size: 28px;
	font-weight: 800;
	line-height: 1.15;
	text-transform: uppercase;
	letter-spacing: 0.01em;
}

.hero-copy p {
	margin: 14px auto 0;
	max-width: 540px;
	color: rgba(255, 255, 255, 0.86);
	font-size: 14px;
}

.button {
	min-height: 48px;
	padding: 13px 22px;
	font-size: 15px;
}

.button-primary {
	background: var(--accent);
	color: #fff;
}

@keyframes buttonPulse {
	0%,
	100% {
		transform: scale(1);
		box-shadow: 0 0 0 rgba(30, 115, 190, 0);
	}

	50% {
		transform: scale(1.03);
		box-shadow: 0 10px 26px rgba(30, 115, 190, 0.18);
	}
}

.button-small {
	min-height: 40px;
	padding: 9px 16px;
	font-size: 13px;
}

.hero-button {
	margin-top: 14px;
}

.button-icon svg {
	width: 14px;
	height: 14px;
	fill: currentColor;
}

.hero-visual {
	position: relative;
	z-index: 2;
	width: 100%;
	margin-top: 18px;
	height: 148px;
	overflow: hidden;
}

.hero-wheel-wrap {
	position: absolute;
	left: 50%;
	top: 0;
	width: min(100%, 286px);
	transform: translateX(-50%);
}

.hero-wheel {
	width: 100%;
	animation: wheelSpin 32.99s linear infinite;
}

.hero-pin {
	position: absolute;
	top: -6px;
	left: 50%;
	width: 42px;
	transform: translateX(-50%);
}

@keyframes wheelSpin {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

.page-dark-shell {
	background: #111214;
}

.section {
	padding: 28px 0;
}

.section-compact {
	padding-top: 22px;
	padding-bottom: 22px;
}

.section-card,
.intro-card,
.winners-board,
.content-card,
.author-card {
	padding: 22px 16px;
	border-radius: var(--radius-lg);
	background: var(--bg-card);
	border: 1px solid rgba(255, 255, 255, 0.04);
}

.section-heading {
	margin-bottom: 18px;
}

.section-heading-centered {
	text-align: center;
}

.section-kicker {
	margin: 0 0 8px;
	color: var(--success);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.section-heading h2,
.intro-card h2,
.content-card h2,
.author-card h2,
.toc-card h3 {
	margin: 0;
	font-family: "Kumbh Sans", Arial, sans-serif;
	font-size: 20px;
	line-height: 1.3;
}

.intro-card p,
.content-card p {
	margin: 14px 0 0;
	color: var(--text-soft);
}

.bonus-table {
	display: grid;
	gap: 8px;
}

.bonus-row {
	display: grid;
	grid-template-columns: 40px 1fr auto;
	align-items: center;
	gap: 10px;
	padding: 10px 12px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.03);
}

.bonus-row-head {
	color: var(--text-mute);
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	background: transparent;
	padding: 0 12px 4px;
}

.bonus-index,
.bonus-copy {
	font-size: 12px;
}

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

.game-stack {
	display: grid;
	gap: 18px;
}

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

.game-card {
	display: block;
}

.game-card img {
	aspect-ratio: 25 / 18;
	width: 100%;
	border-radius: 10px;
	object-fit: cover;
}

.game-card span {
	display: block;
	margin-top: 6px;
	color: rgba(255, 255, 255, 0.82);
	font-size: 10px;
	line-height: 1.35;
}

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

.provider-card {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.03);
}

.provider-card img {
	width: 38px;
	height: 38px;
	object-fit: contain;
}

.provider-card strong,
.provider-card span {
	display: block;
}

.provider-card strong {
	font-size: 12px;
}

.provider-card span {
	color: var(--text-mute);
	font-size: 11px;
}

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

.winner-card {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.04);
}

.winner-avatar {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.12);
	font-weight: 700;
}

.winner-body {
	min-width: 0;
	flex: 1 1 auto;
}

.winner-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	font-size: 11px;
}

.winner-top span {
	color: var(--text-mute);
}

.winner-amount {
	margin-top: 4px;
	color: var(--success);
	font-size: 14px;
	font-weight: 700;
}

.app-banner,
.promo-banner,
.closing-cta {
	position: relative;
	border-radius: var(--radius-lg);
	overflow: hidden;
	background-position: center;
	background-size: cover;
}

.app-banner {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	min-height: 180px;
	padding: 18px 16px;
}

.app-banner h2,
.promo-banner h2,
.closing-cta h2 {
	margin: 0;
	font-family: "Kumbh Sans", Arial, sans-serif;
	font-size: 22px;
	line-height: 1.2;
}

.article-layout {
	display: block;
}

.meta-line {
	color: var(--text-mute);
	font-size: 12px;
}

.meta-line + .meta-line {
	margin-top: 4px;
}

.article-content {
	display: grid;
	gap: 18px;
}

.coupon-card {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
	padding: 18px 16px;
	border-radius: var(--radius-lg);
	background: #18181e;
	border: 1px solid rgba(255, 255, 255, 0.05);
}

.coupon-brand img {
	height: 42px;
	width: auto;
}

.coupon-copy strong,
.coupon-copy span {
	display: block;
}

.coupon-copy strong {
	font-size: 16px;
}

.coupon-copy span {
	margin-top: 4px;
	color: var(--text-mute);
}

.coupon-code {
	display: inline-flex;
	width: fit-content;
	padding: 8px 12px;
	border-radius: 999px;
	background: rgba(30, 115, 190, 0.16);
	color: #7ec6ff;
	font-size: 12px;
	font-weight: 700;
}

.promo-banner {
	padding: 24px 16px;
}

.promo-banner p {
	margin: 10px 0 14px;
	color: rgba(255, 255, 255, 0.82);
}

.countdown {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 18px;
}

.countdown-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	min-width: 62px;
	padding: 10px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.08);
}

.countdown-item span {
	font-family: "Kumbh Sans", Arial, sans-serif;
	font-size: 24px;
	font-weight: 700;
}

.countdown-item small,
.countdown-separator {
	color: var(--text-soft);
}

.betting-card {
	padding-top: 18px;
}

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

.betting-tab {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 44px;
	padding: 10px 12px;
	border-radius: 12px;
	color: var(--text-soft);
	background: rgba(255, 255, 255, 0.04);
	cursor: pointer;
}

.betting-tab img {
	width: 18px;
	height: 18px;
	object-fit: contain;
}

.betting-tab span {
	font-size: 12px;
	font-weight: 600;
}

.betting-tab.is-active {
	background: rgba(30, 115, 190, 0.2);
	color: #fff;
}

.betting-grid {
	display: grid;
	gap: 10px;
	margin-top: 16px;
}

.betting-event {
	padding: 14px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.04);
}

.betting-meta,
.betting-teams,
.betting-odds {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.betting-meta {
	color: var(--text-mute);
	font-size: 11px;
}

.betting-teams {
	margin: 10px 0;
	font-size: 14px;
	font-weight: 700;
}

.betting-odds {
	justify-content: flex-start;
	flex-wrap: wrap;
}

.betting-badge,
.odd-pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 50px;
	padding: 7px 10px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 700;
}

.betting-badge {
	background: rgba(0, 255, 3, 0.16);
	color: var(--success);
}

.odd-pill {
	background: rgba(255, 255, 255, 0.08);
}

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

.benefit-card {
	padding: 16px 12px;
	border-radius: 14px;
	text-align: center;
	background: #18181f;
}

.benefit-card h3 {
	margin: 12px 0 0;
	font-size: 14px;
}

.benefit-icon {
	position: relative;
	width: 44px;
	height: 44px;
	margin: 0 auto;
	border-radius: 50%;
	background: linear-gradient(135deg, rgba(30, 115, 190, 0.24), rgba(211, 34, 34, 0.24));
}

.benefit-icon::before,
.benefit-icon::after {
	content: "";
	position: absolute;
	background: #fff;
}

.benefit-icon-support::before {
	top: 13px;
	left: 14px;
	width: 16px;
	height: 12px;
	border: 2px solid #fff;
	background: transparent;
	border-radius: 8px 8px 6px 6px;
}

.benefit-icon-support::after {
	left: 19px;
	bottom: 12px;
	width: 6px;
	height: 2px;
	border-radius: 999px;
}

.benefit-icon-bolt::before {
	top: 10px;
	left: 19px;
	width: 8px;
	height: 22px;
	clip-path: polygon(40% 0, 100% 0, 63% 46%, 100% 46%, 20% 100%, 42% 55%, 0 55%);
}

.benefit-icon-games::before {
	top: 14px;
	left: 10px;
	width: 24px;
	height: 16px;
	border-radius: 10px;
	background: transparent;
	border: 2px solid #fff;
}

.benefit-icon-games::after {
	top: 21px;
	left: 16px;
	width: 12px;
	height: 2px;
	border-radius: 999px;
	box-shadow: 5px 0 0 #fff, 10px -4px 0 #fff, 10px 4px 0 #fff;
}

.benefit-icon-shield::before {
	top: 9px;
	left: 13px;
	width: 18px;
	height: 24px;
	border-radius: 12px 12px 10px 10px;
	background: transparent;
	border: 2px solid #fff;
	clip-path: polygon(50% 0, 100% 14%, 100% 50%, 50% 100%, 0 50%, 0 14%);
}

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

.faq-copy h2 {
	margin: 0;
	font-family: "Kumbh Sans", Arial, sans-serif;
	font-size: 22px;
	line-height: 1.2;
}

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

.faq-item {
	border-radius: 14px;
	background: #18191f;
	overflow: hidden;
}

.faq-question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 16px;
	color: #fff;
	cursor: pointer;
}

.faq-symbol {
	position: relative;
	width: 14px;
	height: 14px;
	flex: 0 0 14px;
}

.faq-symbol::before,
.faq-symbol::after {
	content: "";
	position: absolute;
	top: 6px;
	left: 0;
	width: 14px;
	height: 2px;
	background: #fff;
}

.faq-symbol::after {
	transform: rotate(90deg);
}

.faq-item.is-open .faq-symbol::after {
	transform: rotate(0deg);
	opacity: 0;
}

.faq-answer {
	display: none;
	padding: 0 16px 16px;
	color: var(--text-soft);
}

.faq-item.is-open .faq-answer {
	display: block;
}

.faq-answer p {
	margin: 0;
}

.faq-button {
	margin-top: 6px;
	width: fit-content;
}

.reviews-shell {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 10px;
}

.reviews-nav {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	color: #fff;
	background: rgba(255, 255, 255, 0.08);
	cursor: pointer;
}

.reviews-track {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: minmax(220px, 82%);
	gap: 12px;
	overflow-x: auto;
	scrollbar-width: none;
}

.reviews-track::-webkit-scrollbar {
	display: none;
}

.review-card {
	padding: 16px;
	border-radius: 14px;
	background: #191a20;
}

.review-head {
	display: flex;
	align-items: center;
	gap: 12px;
}

.review-head img {
	width: 42px;
	height: 42px;
	border-radius: 50%;
}

.review-head strong {
	display: block;
}

.review-stars {
	margin-top: 2px;
	color: #f6c55c;
	font-size: 12px;
	letter-spacing: 0.08em;
}

.review-card p {
	margin: 12px 0 0;
	color: var(--text-soft);
}

.author-card {
	display: grid;
	gap: 18px;
}

.author-photo {
	width: 110px;
	height: 110px;
	border-radius: 50%;
	object-fit: cover;
}

.author-name {
	display: inline-block;
	margin-top: 6px;
	font-family: "Kumbh Sans", Arial, sans-serif;
	font-size: 22px;
	font-weight: 700;
}

.author-role {
	margin: 8px 0 0;
	color: var(--text-mute);
}

.author-content > p:last-of-type {
	color: var(--text-soft);
}

.author-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.author-links a {
	display: inline-flex;
	padding: 8px 12px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.06);
	font-size: 13px;
}

.closing-cta {
	padding: 84px 0 56px;
}

.closing-cta-inner {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 18px;
}

.site-footer {
	background: #06020c;
}

.footer-top {
	display: grid;
	gap: 30px;
	padding-top: 46px;
	padding-bottom: 28px;
}

.brand-footer img {
	height: 44px;
}

.footer-socials {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 18px;
}

.footer-socials a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
}

.footer-socials a:hover {
	transform: translateY(-2px) scale(1.06);
	background: rgba(30, 115, 190, 0.9);
	box-shadow: 0 10px 24px rgba(30, 115, 190, 0.28);
}

.footer-socials svg {
	width: 18px;
	height: 18px;
	fill: currentColor;
}

.footer-column h2 {
	margin: 0 0 12px;
	font-family: "Kumbh Sans", Arial, sans-serif;
	font-size: 22px;
}

.footer-nav-list .winza-menu-item + .winza-menu-item {
	margin-top: 6px;
}

.footer-nav-list a {
	color: var(--text-soft);
	display: inline-flex;
	transition: color var(--transition);
}

.footer-nav-list a:hover {
	color: #fff;
}

.footer-contact-list {
	display: grid;
	gap: 14px;
}

.app-store-links {
	display: grid;
	gap: 10px;
	margin-top: 18px;
}

.app-store-link {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 14px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.05);
}

.app-store-link svg {
	width: 22px;
	height: 22px;
	fill: #fff;
	flex: 0 0 22px;
}

.app-store-link span {
	display: grid;
}

.app-store-link small {
	color: var(--text-mute);
	font-size: 11px;
}

.payment-strip {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
	padding: 0 0 24px;
}

.payment-item {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 56px;
	padding: 8px;
	border-radius: 12px;
	background: transparent;
	transition: transform var(--transition);
}

.payment-item:hover {
	transform: scale(1.08);
}

.payment-item img {
	max-width: 84px;
	max-height: 32px;
	object-fit: contain;
}

.footer-bottom {
	display: grid;
	gap: 16px;
	padding: 22px 0 28px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal p {
	margin: 0;
	color: var(--text-soft);
	font-size: 13px;
}

.footer-legal p + p {
	margin-top: 6px;
}

.trust-badges {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
}

.trust-badges img {
	max-height: 30px;
	width: auto;
}

.generic-page {
	padding-top: 140px;
	padding-bottom: 60px;
	background: #111214;
}

.contact-hero {
	position: relative;
	padding: 124px 0 56px;
	background: linear-gradient(110deg, #5d1566 0%, #2d0b45 42%, #12051e 100%);
	overflow: hidden;
}

.contact-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(8, 4, 15, 0.2), rgba(8, 4, 15, 0.48)),
		linear-gradient(90deg, rgba(58, 9, 50, 0.2), rgba(18, 5, 30, 0.14) 42%, rgba(18, 5, 30, 0.4));
	z-index: 1;
}

.contact-hero-media {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.contact-hero-media::before,
.contact-hero-media::after {
	content: "";
	position: absolute;
	border-radius: 999px;
}

.contact-hero-media::before {
	top: -90px;
	left: -30px;
	width: 420px;
	height: 240px;
	background:
		radial-gradient(circle at 28% 42%, rgba(255, 108, 187, 0.72), rgba(255, 108, 187, 0) 30%),
		radial-gradient(circle at 42% 48%, rgba(255, 42, 127, 0.72), rgba(255, 42, 127, 0) 42%),
		radial-gradient(circle at 64% 34%, rgba(255, 160, 230, 0.45), rgba(255, 160, 230, 0) 26%);
	transform: rotate(-19deg);
	opacity: 0.92;
}

.contact-hero-media::after {
	top: -84px;
	left: 18px;
	width: 300px;
	height: 160px;
	border: 18px solid rgba(255, 142, 218, 0.22);
	box-shadow:
		0 0 32px rgba(255, 77, 171, 0.22),
		inset 0 0 22px rgba(255, 160, 230, 0.08);
	transform: rotate(-18deg);
	opacity: 0.7;
}

.contact-hero-inner {
	position: relative;
	z-index: 2;
	text-align: center;
}

.contact-hero-inner h1 {
	margin: 0;
	font-family: "Kumbh Sans", Arial, sans-serif;
	font-size: 34px;
	font-weight: 800;
	line-height: 1.08;
}

.contact-breadcrumbs {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 14px;
	color: rgba(255, 255, 255, 0.7);
	font-size: 12px;
}

.contact-breadcrumbs strong {
	color: #ff3a4a;
	font-weight: 700;
}

.contact-page-section {
	padding: 64px 0 44px;
	background: #08050f;
}

.contact-layout {
	display: grid;
	gap: 32px;
}

.contact-details-card {
	display: flex;
	align-items: center;
}

.contact-details-shell {
	width: 100%;
	max-width: 820px;
}

.contact-kicker {
	margin: 0;
	color: #ff3354;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.contact-social-row {
	display: inline-flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}

.contact-social-row a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: #fff;
	color: #e11a43;
	transition: transform var(--transition), box-shadow var(--transition), color var(--transition), background var(--transition);
}

.contact-social-row a:hover {
	transform: translateY(-2px) scale(1.05);
	background: #ff3354;
	color: #fff;
	box-shadow: 0 10px 18px rgba(227, 32, 75, 0.24);
}

.contact-social-row svg {
	width: 17px;
	height: 17px;
	fill: currentColor;
}

.contact-info-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 34px;
	margin-top: 48px;
}

.contact-info-box h2 {
	margin: 0;
	font-family: "Kumbh Sans", Arial, sans-serif;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.2;
}

.contact-info-head {
	display: flex;
	align-items: center;
	gap: 10px;
}

.contact-info-dot {
	width: 11px;
	height: 11px;
	border-radius: 50%;
	background: #ff3354;
	box-shadow: 0 0 0 5px rgba(255, 51, 84, 0.12);
	flex: 0 0 11px;
}

.contact-info-box p {
	margin: 12px 0 0;
	color: rgba(255, 255, 255, 0.68);
	font-size: 17px;
	line-height: 1.72;
}

.contact-info-box a {
	color: #ff3354;
	transition: color var(--transition);
}

.contact-info-box a:hover {
	color: #fff;
}

.contact-form-card {
	padding: 28px 22px;
	border-radius: 14px;
	background: #1b1c21;
	border: 1px solid rgba(255, 255, 255, 0.06);
	box-shadow: 0 24px 40px rgba(0, 0, 0, 0.24);
}

.contact-form-status {
	margin-bottom: 14px;
	padding: 10px 12px;
	border-radius: 10px;
	font-size: 13px;
	font-weight: 600;
}

.contact-form-status.is-success {
	background: rgba(43, 176, 92, 0.16);
	color: #9ef0b9;
}

.contact-form-status.is-error {
	background: rgba(255, 51, 84, 0.16);
	color: #ff9cab;
}

.contact-form {
	display: grid;
	gap: 16px;
}

.contact-field {
	display: grid;
	gap: 10px;
}

.contact-field span {
	font-size: 13px;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.82);
}

.contact-field input,
.contact-field textarea {
	width: 100%;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 4px;
	background: #fff;
	color: #111;
	padding: 12px 14px;
	outline: none;
	transition: border-color var(--transition), box-shadow var(--transition);
}

.contact-field textarea {
	min-height: 114px;
	resize: vertical;
}

.contact-field input:focus,
.contact-field textarea:focus {
	border-color: rgba(30, 115, 190, 0.72);
	box-shadow: 0 0 0 4px rgba(30, 115, 190, 0.12);
}

.contact-check {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 11px;
	line-height: 1.45;
	color: rgba(255, 255, 255, 0.68);
}

.contact-check input {
	margin-top: 2px;
}

.contact-check a {
	color: #ff3354;
}

.contact-submit {
	justify-self: start;
	min-width: 158px;
}

.contact-map-section {
	background: #08050f;
}

.contact-map-frame {
	height: 280px;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-map-frame iframe {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
	filter: grayscale(0.08) contrast(1.02);
}

.page-surface {
	padding: 24px 18px;
	border-radius: var(--radius-lg);
	background: var(--bg-card);
}

.page-surface h1,
.page-surface h2 {
	margin-top: 0;
	font-family: "Kumbh Sans", Arial, sans-serif;
}

.page-content,
.page-content p {
	color: var(--text-soft);
}

@media (min-width: 768px) {
	.container,
	.narrow-container {
		width: min(calc(100% - 40px), var(--container));
	}

	.narrow-container {
		width: min(calc(100% - 40px), var(--container-narrow));
	}

	.header-shell {
		gap: 18px;
		min-height: 90px;
	}

	.brand img {
		height: 56px;
	}

	.header-button {
		min-height: 42px;
		padding: 11px 18px;
		font-size: 14px;
	}

	.menu-toggle {
		width: 44px;
		height: 44px;
	}

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

	.contact-hero {
		padding-top: 148px;
		padding-bottom: 74px;
	}

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

	.contact-breadcrumbs {
		font-size: 13px;
	}

	.contact-layout {
		grid-template-columns: minmax(0, 1fr) 382px;
		align-items: center;
		gap: 72px;
	}

	.contact-details-card {
		min-height: 100%;
		padding-right: 10px;
	}

	.contact-info-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 54px 64px;
		margin-top: 48px;
	}

	.contact-form-card {
		padding: 30px 28px 28px;
	}

	.contact-map-frame {
		height: 360px;
	}

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

	.hero-copy p {
		font-size: 16px;
	}

	.hero-visual {
		margin-top: 26px;
		height: 300px;
	}

	.hero-wheel-wrap {
		top: 0;
		width: 520px;
	}

	.hero-pin {
		top: -12px;
		width: 84px;
	}

	.section {
		padding: 36px 0;
	}

	.section-card,
	.intro-card,
	.winners-board,
	.content-card,
	.author-card {
		padding: 30px;
	}

	.section-heading h2,
	.intro-card h2,
	.content-card h2,
	.author-card h2,
	.app-banner h2,
	.promo-banner h2,
	.closing-cta h2,
	.faq-copy h2 {
		font-size: 32px;
	}

	.bonus-row,
	.bonus-row-head {
		grid-template-columns: 72px 1fr 176px;
	}

	.bonus-index,
	.bonus-copy {
		font-size: 14px;
	}

	.game-grid {
		grid-template-columns: repeat(6, minmax(0, 1fr));
		gap: 12px;
	}

	.game-card span {
		font-size: 12px;
	}

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

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

	.coupon-card {
		grid-template-columns: auto 1fr auto auto;
		align-items: center;
	}

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

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

	.faq-layout {
		grid-template-columns: 0.72fr 1fr;
		align-items: start;
	}

	.reviews-track {
		grid-auto-columns: minmax(260px, 33%);
	}

	.author-card {
		grid-template-columns: 180px minmax(0, 1fr);
		align-items: center;
	}

	.author-photo {
		width: 180px;
		height: 180px;
	}

	.closing-cta {
		padding-top: 110px;
		padding-bottom: 78px;
	}

	.closing-cta-inner {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}

	.footer-top {
		grid-template-columns: 1.15fr 0.8fr 0.8fr 1fr;
		gap: 24px;
		padding-top: 68px;
	}

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

	.footer-bottom {
		grid-template-columns: 1fr auto;
		align-items: center;
	}
}

@media (min-width: 1025px) {
	.desktop-nav {
		display: block;
	}

	.desktop-nav .desktop-nav-list {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 4px;
	}

	.header-actions {
		gap: 12px;
	}

	.desktop-nav .desktop-nav-list > .winza-menu-item {
		position: relative;
	}

	.desktop-nav .desktop-nav-list > .winza-menu-item > a {
		display: inline-flex;
		padding: 14px 16px;
		color: #fff;
		font-size: 15px;
	}

	.desktop-nav .desktop-submenu {
		position: absolute;
		top: calc(100% + 6px);
		left: 0;
		min-width: 220px;
		padding: 10px;
		border-radius: 12px;
		background: #fff;
		opacity: 0;
		visibility: hidden;
		transform: translateY(8px);
		transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
	}

	.desktop-nav .desktop-submenu a {
		display: block;
		padding: 8px 10px;
		color: #090908;
		font-size: 14px;
	}

	.desktop-nav .desktop-nav-list > .winza-menu-item:hover > .desktop-submenu {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}

	.menu-toggle,
	.mobile-backdrop,
	.mobile-panel {
		display: none !important;
	}

	.hero-shell {
		display: grid;
		grid-template-columns: minmax(360px, 430px) minmax(520px, 760px);
		align-items: center;
		justify-content: space-between;
		gap: 24px;
	}

	.hero-copy {
		max-width: 430px;
		margin: 0;
		padding-bottom: 88px;
		text-align: left;
	}

	.hero-copy h1 {
		font-size: 86px;
		line-height: 1.08;
	}

	.hero-copy p {
		margin-right: 0;
		margin-left: 0;
	}

	.hero-button {
		margin-top: 20px;
	}

	.hero-visual {
		margin-top: 0;
		height: 520px;
		overflow: visible;
	}

	.hero-wheel-wrap {
		top: 20px;
		left: auto;
		right: 0;
		width: 700px;
		transform: none;
	}

	.hero-pin {
		width: 108px;
	}

	.app-banner {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		min-height: 230px;
		padding: 42px 36px;
	}

	.contact-hero {
		padding-bottom: 76px;
	}

	.contact-hero-media {
		inset: 0;
	}

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

	.contact-hero-media::before {
		top: -108px;
		left: 18px;
		width: 520px;
		height: 290px;
	}

	.contact-hero-media::after {
		top: -98px;
		left: 78px;
		width: 368px;
		height: 188px;
		border-width: 20px;
	}

	.contact-map-frame {
		height: 410px;
	}
}

@media (max-width: 479px) {
	.brand img {
		height: 32px;
	}

	.header-actions {
		gap: 8px;
	}

	.header-button {
		min-height: 34px;
		padding-right: 11px;
		padding-left: 11px;
		font-size: 11px;
	}

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