:root {
	--bcz-page-bg: rgb(41 41 42);
	--bcz-surface-a: rgb(54 54 55);
	--bcz-surface-b: rgb(62 62 63);
	--bcz-head-start: rgb(4 87 67);
	--bcz-head-end: rgb(21 64 55);
	--bcz-accent-start: rgb(5 87 68);
	--bcz-accent-end: rgb(4 60 45);
	--bcz-text-main: rgb(247 247 245);
	--bcz-text-soft: rgb(229 229 227);
	--bcz-text-dim: rgb(178 178 178);
	--bcz-line-soft: rgb(70 70 70);
	--bcz-line-strong: rgb(58 58 58);
	--bcz-brand-main: rgb(47 241 185);
	--bcz-brand-deep: rgb(5 92 72);
	--bcz-brand-warn: rgb(249 227 53);
	--bcz-brand-warn-deep: rgb(244 209 23);
	--bcz-dark-btn: rgb(53 53 53);
	--bcz-shadow-a: 0 5px 14px rgb(0 0 0 / 0.19);
	--bcz-shadow-b: 0 18px 34px rgb(0 0 0 / 0.33);
	--bcz-radius-xs: 6px;
	--bcz-radius-sm: 9px;
	--bcz-radius-md: 13px;
	--bcz-radius-lg: 18px;
	--bcz-radius-xl: 22px;
	--bcz-wrap-size: 1262px;
	--bcz-ease: .36s ease-in-out;
}

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

html {
	font-size: 101%;
	letter-spacing: .01em;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
figure,
blockquote {
	margin: 0;
}

body {
	background: var(--bcz-page-bg);
	color: var(--bcz-text-main);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
	font-size: 16.2px;
	font-weight: 400;
	line-height: 1.62;
}

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

a {
	color: inherit;
	text-decoration: none;
	transition: color var(--bcz-ease), opacity var(--bcz-ease);
}

button {
	background: transparent;
	border: 0;
	cursor: pointer;
	font: inherit;
}

ul,
ol {
	padding-left: 20px;
}

h1 {
	font-size: 34px;
	font-weight: 700;
	line-height: 1.26;
	margin-bottom: 24px;
}

h2 {
	font-size: 27px;
	font-weight: 700;
	line-height: 1.28;
}

h3 {
	font-size: 20px;
	font-weight: 700;
	line-height: 1.38;
}

p {
	color: var(--bcz-text-soft);
	font-size: 16px;
	line-height: 1.66;
	margin-bottom: 15px;
}

p strong {
	color: rgb(255 255 255);
	font-weight: 700;
}

p a {
	border-bottom: 1px solid transparent;
	color: rgb(128 207 197);
	transition: color var(--bcz-ease), border-color var(--bcz-ease);
}

p a:hover {
	border-bottom-color: var(--bcz-brand-deep);
	color: rgb(255 255 255);
}

.bcz-wrap,
.bcz-page-frame {
	margin-inline: auto;
	width: min(100% - 30px, var(--bcz-wrap-size));
}

.bcz-page-frame {
	padding-top: 82px;
}

.bcz-section-shell {
	padding: 30px 0;
}

.bcz-topbar {
	background: linear-gradient(180deg, var(--bcz-head-start), var(--bcz-head-end));
	inset: 0 0 auto 0;
	position: fixed;
	width: 100%;
	z-index: 100;
}

.bcz-topbar__row {
	align-items: center;
	display: flex;
	gap: 22px;
	justify-content: space-between;
	min-height: 74px;
}

.bcz-logo-block__img {
	filter: saturate(1.04) contrast(1.03) brightness(1.02);
	width: 94px;
}

.bcz-main-menu__list,
.bcz-topbar-actions,
.bcz-offer-ribbon__list,
.bcz-sport-lobby__list,
.bcz-sport-tabs__row,
.bcz-trust-row {
	align-items: center;
	display: flex;
}

.bcz-main-menu__list {
	flex-wrap: wrap;
	gap: 0 42px;
	justify-content: center;
	list-style: none;
	padding: 0;
}

.bcz-main-menu__link {
	color: rgb(244 244 244);
	display: block;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: .03em;
	padding: 21px 0 22px;
	position: relative;
	text-transform: uppercase;
	transition: color var(--bcz-ease);
}

.bcz-main-menu__link:hover {
	color: var(--bcz-brand-main);
}

.bcz-main-menu__item:first-child .bcz-main-menu__link::after {
	background: var(--bcz-brand-main);
	content: "";
	height: 3px;
	inset: auto 0 -1px 0;
	position: absolute;
}

.bcz-topbar-actions {
	gap: 12px;
}

.bcz-btn {
	align-items: center;
	background-color: #285748;
	border: 1px solid transparent;
	border-radius: 50px;
	display: inline-flex;
	font-size: 13px;
	font-weight: 700;
	gap: 11px;
	justify-content: center;
	line-height: 1;
	padding: 11px 16px;
	transition: transform var(--bcz-ease), border-color var(--bcz-ease), background var(--bcz-ease), color var(--bcz-ease), box-shadow var(--bcz-ease);
}

.bcz-btn--fill {
	border: 1px solid #4f7c6e;
	color: #FFEA0D;
}

.bcz-btn--stroke {
	border: 1px solid #4f7c6e;
	color: #fff;
}

.bcz-btn--fill:hover,
.bcz-btn--stroke:hover {
	border-color: rgb(246 246 246);
	color: rgb(246 246 246);
}

.bcz-btn--download,
.bcz-btn--bonus {
	box-shadow: var(--bcz-shadow-a);
}

.bcz-btn--download {
	background: linear-gradient(135deg, rgb(5 89 68), rgb(7 134 102));
	border-radius: var(--bcz-radius-lg);
	color: rgb(255 255 255);
	justify-content: space-between;
	padding: 22px 26px;
	width: 100%;
}

.bcz-btn--download:hover {
	box-shadow: 0 11px 26px rgb(0 0 0 / 0.29);
	transform: translateY(-2px);
}

.bcz-btn--bonus {
	background: linear-gradient(135deg, var(--bcz-brand-main) 0%, var(--bcz-brand-deep) 100%);
	border: none;
	border-radius: 10px;
	color: var(--bcz-head-start);
	cursor: pointer;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.8px;
	padding: 14px 32px;
	text-transform: uppercase;
	transition: all 0.25s ease;
}

.bcz-btn--bonus span {
	position: relative;
	z-index: 1;
}

.bcz-btn--bonus:hover {
	box-shadow: 0 8px 20px rgba(47, 241, 185, 0.25);
	filter: brightness(1.05);
	transform: translateY(-2px);
}

.bcz-btn--bonus:active {
	transform: translateY(1px);
}

.bcz-offer-casino {
	padding: 15px 0 0;
}

.bcz-offer-ribbon__list,
.bcz-sport-lobby__list {
	-ms-overflow-style: none;
	overflow-x: auto;
	overflow-y: hidden;
	scrollbar-width: none;
}

.bcz-offer-ribbon__list::-webkit-scrollbar,
.bcz-sport-lobby__list::-webkit-scrollbar,
.bcz-sport-tabs__row::-webkit-scrollbar {
	display: none;
}

.bcz-offer-ribbon__list {
	gap: 12px;
	list-style: none;
	padding: 23px 0 12px;
}

.bcz-offer-ribbon__item {
	flex: 0 0 auto;
	padding: 0;
}

.bcz-offer-card {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: auto 100%;
	border: 2px solid #3E6055;
	border-radius: var(--bcz-radius-sm);
	box-shadow: 0 7px 18px rgb(0 0 0 / 0.16);
	display: flex;
	flex-direction: column;
	min-height: 214px;
	padding: 14px 14px 12px;
	position: relative;
	text-align: left;
	transition: transform var(--bcz-ease), filter var(--bcz-ease), box-shadow var(--bcz-ease);
	width: 338px;
}

.bcz-offer-card:hover {
	box-shadow: 0 12px 26px rgb(0 0 0 / 0.24);
	filter: brightness(1.04);
	transform: translateY(-3px);
}

.bcz-offer-card__badge {
	color: var(--bcz-brand-main);
	font-size: 13px;
	font-style: italic;
	font-weight: 700;
	line-height: 1.15;
	margin-bottom: 10px;
	text-shadow: 0 0 7px rgb(24 69 60 / 0.66);
	text-transform: uppercase;
}

.bcz-offer-card__headline {
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	color: var(--bcz-text-main);
	display: -webkit-box;
	font-size: 26px;
	font-style: oblique;
	font-weight: 700;
	line-height: 1.05;
	max-width: 226px;
	overflow: hidden;
	text-shadow: 0 0 7px rgb(24 69 60 / 0.66);
}

.bcz-offer-card__desc {
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	bottom: 12px;
	color: rgb(246 246 246 / 0.8);
	display: -webkit-box;
	font-size: 11px;
	font-style: oblique;
	left: 14px;
	line-height: 1.35;
	overflow: hidden;
	position: absolute;
	right: 14px;
}

.bcz-offer-card span,
.bcz-sport-lobby span,
.bcz-sport-lobby img {
	pointer-events: none;
}

.bcz-sport-lobby__list {
	gap: 6px;
	list-style: none;
	padding: 18px 0 10px;
}

.bcz-sport-lobby__item {
	align-items: center;
	background: rgb(63 63 63);
	border: 1px solid rgb(72 72 72);
	border-radius: 9px;
	display: flex;
	justify-content: center;
	min-width: 96px;
	padding: 12px 2px;
	width: 96px;
}

.bcz-sport-tile {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 7px;
	padding: 0;
	transition: transform var(--bcz-ease), opacity var(--bcz-ease);
}

.bcz-sport-tile:hover {
	opacity: .96;
	transform: scale(1.05);
}

.bcz-sport-tile__icon {
	filter: contrast(1.04) saturate(1.08) brightness(1.03);
	height: 27px;
	width: 27px;
}

.bcz-sport-tile__text {
	color: rgb(246 246 246);
	font-size: 12px;
	font-weight: 700;
	line-height: 1.35;
	text-align: center;
}

.bcz-sport-tabs {
	border-bottom: 1px solid rgb(69 69 69);
	margin: 12px 0;
	width: 100%;
}

.bcz-sport-tabs__row {
	gap: 20px;
	overflow-x: auto;
	padding: 0 12px;
}

.bcz-sport-tabs__btn {
	background: transparent;
	color: rgb(208 208 208);
	font-size: 14px;
	font-weight: 700;
	padding: 15px 8px;
	position: relative;
	transition: color var(--bcz-ease);
	white-space: nowrap;
}

.bcz-sport-tabs__btn::after {
	background: transparent;
	bottom: -1px;
	content: "";
	height: 3px;
	left: 0;
	position: absolute;
	width: 100%;
}

.bcz-sport-tabs__btn:hover,
.bcz-sport-tabs__btn.is-active {
	color: rgb(255 255 255);
}

.bcz-sport-tabs__btn.is-active::after {
	background: rgb(1 228 149);
}

.bcz-match-feed {
	color: rgb(255 255 255);
	margin-top: 28px;
}

.bcz-match-feed__top,
.bcz-casino-panel__head {
	align-items: center;
	display: flex;
	justify-content: space-between;
}

.bcz-match-feed__top {
	margin-bottom: .95rem;
}

.bcz-match-feed__heading {
	font-size: 1.08rem;
	font-weight: 800;
	letter-spacing: .03em;
	text-transform: uppercase;
}

.bcz-match-feed__all {
	background-color: rgb(41 41 42);
	border: 1px solid rgb(146 146 148);
	border-radius: 999px;
	color: rgb(255 255 255);
	font-size: .875rem;
	font-weight: 700;
	min-height: 2.125rem;
	padding: .32rem .95rem;
	transition: background var(--bcz-ease), border-color var(--bcz-ease), transform var(--bcz-ease);
}

.bcz-match-feed__all:hover {
	background: rgb(255 255 255 / .05);
	border-color: rgb(255 255 255);
	transform: translateY(-1px);
}

.bcz-match-feed__grid {
	display: grid;
	gap: .5rem;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.bcz-slip-card {
	background: rgb(57 57 58);
	border-radius: .5rem;
	box-shadow: 0 6px 14px rgb(0 0 0 / .12);
	display: flex;
	flex-direction: column;
	min-height: 14.2rem;
	overflow: hidden;
	transition: box-shadow var(--bcz-ease), transform var(--bcz-ease);
}

.bcz-slip-card:hover {
	box-shadow: 0 11px 24px rgb(0 0 0 / .2);
	transform: translateY(-2px);
}

.bcz-slip-card__head {
	align-items: center;
	background: rgb(65 65 66);
	border-bottom: 1px solid rgb(83 83 85);
	display: flex;
	gap: .75rem;
	justify-content: space-between;
	min-height: 2.15rem;
	padding: .55rem .7rem;
}

.bcz-slip-card__promo,
.bcz-slip-card__tag,
.bcz-slip-card__teams,
.bcz-slip-card__market {
	font-weight: 800;
	text-transform: uppercase;
}

.bcz-slip-card__promo {
	color: rgb(255 255 255);
	font-size: .74rem;
}

.bcz-slip-card__promo--boost {
	color: rgb(39 240 158);
}

.bcz-slip-card__count {
	color: rgb(255 195 59);
	font-size: .75rem;
	font-weight: 700;
	white-space: nowrap;
}

.bcz-slip-card__body {
	flex: 1 1 auto;
	padding: .8rem .72rem .92rem;
}

.bcz-slip-card__market {
	font-size: .88rem;
	line-height: 1.22;
	margin: 0 0 .8rem;
}

.bcz-slip-card__tag {
	display: block;
	font-size: .81rem;
	font-style: italic;
	margin-bottom: .25rem;
}

.bcz-slip-card__teams {
	display: block;
	font-size: .65rem;
	letter-spacing: .04em;
}

.bcz-slip-card__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.bcz-slip-card__list li {
	color: rgb(255 255 255);
	font-size: .82rem;
	line-height: 1.45;
	padding-left: 1.12rem;
	position: relative;
}

.bcz-slip-card__list li + li {
	margin-top: .34rem;
}

.bcz-slip-card__list li::before {
	border: 1px solid rgb(199 199 200);
	border-radius: 50%;
	content: "";
	height: .39rem;
	left: .13rem;
	position: absolute;
	top: .41rem;
	width: .39rem;
}

.bcz-slip-card__more {
	color: rgb(2 247 170);
	font-size: 13px;
	font-weight: 700;
	margin-top: 11px;
	padding: 0;
}

.bcz-slip-card__foot {
	background: rgb(59 59 60);
	border-top: 1px solid rgb(84 84 86);
	padding: 8px 10px 7px;
	text-align: center;
	transition: background var(--bcz-ease), opacity var(--bcz-ease);
	width: 100%;
}

.bcz-slip-card__foot:hover {
	background: rgb(67 67 68);
}

.bcz-slip-card__odds,
.bcz-slip-card__note,
.bcz-slip-card__price-line {
	display: block;
}

.bcz-slip-card__odds {
	color: #FFC33B;
	font-size: 1.07rem;
	font-weight: 800;
	line-height: 1.1;
}

.bcz-slip-card__odds--big {
	font-size: 1.58rem;
}

.bcz-slip-card__note {
	color: rgb(224 224 225);
	font-size: .7rem;
	line-height: 1.34;
	margin-top: .2rem;
}

.bcz-slip-card__price-line {
	align-items: baseline;
	display: flex;
	gap: .36rem;
	justify-content: center;
}

.bcz-slip-card__old {
	color: rgb(180 180 181);
	font-size: .95rem;
	text-decoration: line-through;
}

.bcz-slip-card__arrow {
	color: rgb(2 247 170);
	font-size: 1rem;
	font-weight: 800;
}

.bcz-casino-panel__head {
	gap: 16px;
	margin-bottom: 12px;
	padding: 10px;
}

.bcz-hero-visual img {
	margin-bottom: 18px;
	object-fit: cover;
	width: 100%;
}

.bcz-game-wall {
	background-color: rgb(63 63 63);
	border: 1px solid rgb(72 72 72);
	border-radius: 11px;
	display: grid;
	gap: 11px;
	grid-template-columns: repeat(6, 1fr);
	padding: 16px;
}

.bcz-game-wall img {
	aspect-ratio: 1 / 1;
	border-radius: 11px;
	box-shadow: 0 4px 8px rgb(0 0 0 / .14);
	filter: saturate(1.08) contrast(1.03) brightness(1.02);
	object-fit: cover;
	transition: transform var(--bcz-ease), box-shadow var(--bcz-ease), filter var(--bcz-ease);
}

.bcz-game-wall img:hover {
	box-shadow: 0 10px 18px rgb(0 0 0 / .23);
	filter: saturate(1.12) contrast(1.04) brightness(1.04);
	transform: translateY(-3px) scale(1.018);
}

.bcz-editor-content {
	background: var(--bcz-surface-a);
	border: 1px solid var(--bcz-line-soft);
	border-radius: 10px;
	margin: 22px 0;
	padding: 1.6rem;
}

.bcz-crumbs-box {
	padding-top: 30px;
}

#breadcrumbs {
	align-items: center;
	background: rgb(57 57 58);
	border-radius: 8px;
	color: rgb(255 255 254);
	display: flex;
	font-size: 14px;
	margin-bottom: 20px;
	padding: 14px 20px;
	width: 100%;
}

#breadcrumbs a {
	color: rgb(2 248 182);
	font-weight: 700;
	margin-right: 5px;
}

#breadcrumbs a:hover {
	text-decoration: underline;
}

#breadcrumbs .breadcrumb_last {
	color: rgb(255 255 254);
	font-weight: 700;
	margin-left: 10px;
}

.bcz-download-stack {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.bcz-trust-row {
	flex-wrap: wrap;
	gap: 12px;
}

.bcz-trust-badge {
	align-items: center;
	background: rgb(46 46 47);
	border: 1px solid rgb(65 65 66);
	border-radius: 999px;
	box-shadow: var(--bcz-shadow-a);
	display: inline-flex;
	gap: 10px;
	min-height: 46px;
	padding: 10px 14px;
}

.bcz-trust-badge__text {
	color: rgb(229 229 230);
	font-size: 13px;
	font-weight: 600;
	line-height: 1;
	white-space: nowrap;
}

.bcz-footer {
	background: linear-gradient(180deg, rgb(34 34 35 / 0.96) 0%, rgb(28 28 29 / 1) 100%);
	border-top: 1px solid var(--bcz-line-soft);
	box-shadow: var(--bcz-shadow-b);
	margin-top: 72px;
	overflow: hidden;
	position: relative;
}

.bcz-footer::before {
	background: linear-gradient(90deg, var(--bcz-accent-start) 0%, var(--bcz-brand-main) 50%, var(--bcz-accent-end) 100%);
	content: "";
	height: 4px;
	inset: 0 0 auto;
	opacity: 0.95;
	position: absolute;
}

.bcz-footer::after {
	background: radial-gradient(circle, rgb(47 241 185 / 0.12) 0%, rgb(47 241 185 / 0) 72%);
	border-radius: 50%;
	content: "";
	height: 320px;
	pointer-events: none;
	position: absolute;
	right: -120px;
	top: -120px;
	width: 320px;
}

.bcz-footer__inner {
	padding: 38px 0 22px;
	position: relative;
	z-index: 1;
}

.bcz-footer__main {
	align-items: start;
	border-bottom: 1px solid var(--bcz-line-strong);
	display: grid;
	gap: 28px;
	grid-template-columns: minmax(220px, 1.1fr) minmax(320px, 2fr) minmax(180px, 0.8fr);
	padding: 0 0 30px;
}

.bcz-footer__brand {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.bcz-footer__brand-link {
	align-items: center;
	display: inline-flex;
	text-decoration: none;
	width: fit-content;
}

.bcz-footer__brand-logo {
	display: block;
	filter: drop-shadow(0 4px 14px rgb(0 0 0 / 0.22));
	height: auto;
	max-width: 140px;
}

.bcz-footer__brand-text {
	color: var(--bcz-text-dim);
	font-size: 14px;
	line-height: 1.65;
	margin: 0;
	max-width: 300px;
}

.bcz-footer__label {
	color: var(--bcz-brand-main);
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	line-height: 1.2;
	margin: 0 0 14px;
	text-transform: uppercase;
}

.bcz-footer__nav-wrap {
	min-width: 0;
}

.bcz-footer__nav .menu,
.bcz-footer__nav ul {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 12px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.bcz-footer__nav li {
	margin: 0;
	padding: 0;
}

.bcz-footer__nav a {
	align-items: center;
	background: linear-gradient(180deg, var(--bcz-surface-b) 0%, var(--bcz-surface-a) 100%);
	border: 1px solid var(--bcz-line-soft);
	border-radius: 999px;
	box-shadow: 0 8px 16px rgb(0 0 0 / 0.14);
	color: var(--bcz-text-soft);
	display: inline-flex;
	font-size: 14px;
	font-weight: 600;
	justify-content: center;
	line-height: 1.2;
	min-height: 42px;
	padding: 10px 16px;
	text-decoration: none;
	transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease, color 0.24s ease, box-shadow 0.24s ease;
}

.bcz-footer__nav a:hover,
.bcz-footer__nav a:focus-visible {
	background: linear-gradient(180deg, rgb(68 68 69) 0%, rgb(49 49 50) 100%);
	border-color: rgb(47 241 185 / 0.4);
	box-shadow: 0 14px 24px rgb(0 0 0 / 0.22);
	color: var(--bcz-text-main);
	outline: none;
	transform: translateY(-2px);
}

.bcz-footer__side {
	align-items: flex-start;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.bcz-footer__cta {
	align-items: center;
	background: linear-gradient(135deg, var(--bcz-accent-start) 0%, var(--bcz-accent-end) 100%);
	border: 1px solid rgb(47 241 185 / 0.14);
	border-radius: 14px;
	box-shadow: var(--bcz-shadow-a);
	color: var(--bcz-text-main);
	display: inline-flex;
	font-size: 14px;
	font-weight: 700;
	justify-content: center;
	line-height: 1.2;
	min-height: 46px;
	padding: 0 18px;
	text-decoration: none;
	transition: transform 0.24s ease, box-shadow 0.24s ease, filter 0.24s ease;
}

.bcz-footer__cta:hover,
.bcz-footer__cta:focus-visible {
	box-shadow: var(--bcz-shadow-b);
	filter: brightness(1.08);
	outline: none;
	transform: translateY(-2px);
}

.bcz-footer__trust {
	background: linear-gradient(180deg, rgb(54 54 55 / 0.84) 0%, rgb(42 42 43 / 0.96) 100%);
	border: 1px solid var(--bcz-line-soft);
	border-radius: 22px;
	box-shadow: var(--bcz-shadow-a);
	margin-top: 28px;
	padding: 22px;
}

.bcz-footer__trust-head {
	align-items: flex-end;
	display: flex;
	gap: 18px;
	justify-content: space-between;
	margin-bottom: 18px;
}

.bcz-footer__trust-note {
	color: var(--bcz-text-dim);
	font-size: 13px;
	line-height: 1.5;
	margin: 0;
	text-align: right;
}

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

.bcz-footer .bcz-trust-badge {
	align-items: center;
	background: linear-gradient(180deg, rgb(62 62 63 / 0.92) 0%, rgb(49 49 50 / 0.96) 100%);
	border: 1px solid var(--bcz-line-strong);
	border-radius: 18px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	justify-content: center;
	min-height: 104px;
	padding: 14px 12px;
	text-align: center;
	transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.bcz-footer .bcz-trust-badge:hover {
	border-color: rgb(47 241 185 / 0.25);
	box-shadow: 0 14px 24px rgb(0 0 0 / 0.18);
	transform: translateY(-3px);
}

.bcz-trust-badge__icon {
	display: block;
	height: 28px;
	max-width: 52px;
	object-fit: contain;
	width: auto;
}

.bcz-trust-badge:first-child .bcz-trust-badge__icon {
	height: 30px;
}

.bcz-footer .bcz-trust-badge__text {
	color: var(--bcz-text-soft);
	font-size: 13px;
	font-weight: 600;
	line-height: 1.35;
	white-space: normal;
}

.bcz-footer__bottom {
	align-items: center;
	display: flex;
	gap: 20px;
	justify-content: space-between;
	padding-top: 20px;
}

.bcz-footer__copy {
	color: var(--bcz-text-dim);
	font-size: 13px;
	line-height: 1.6;
	margin: 0;
}

.bcz-footer__nav .sub-menu {
	display: none;
}

.wp-block-table td, .wp-block-table th {
    border: none;
}

.wp-block-group {
	background: linear-gradient(180deg, rgb(54 54 55 / 0.9) 0%, rgb(41 41 42 / 0.98) 100%);
	border: 1px solid var(--bcz-line-soft);
	border-radius: .5rem;
	box-shadow: var(--bcz-shadow-b);
	margin: 30px 0;
	overflow: hidden;
	padding: 28px 24px;
	position: relative;
}

.wp-block-group::before {
	background: linear-gradient(90deg, var(--bcz-accent-start) 0%, var(--bcz-brand-main) 50%, var(--bcz-accent-end) 100%);
	content: "";
	height: 3px;
	inset: 0 0 auto;
	opacity: 0.95;
	position: absolute;
}

.wp-block-group::after {
	background: radial-gradient(circle, rgb(47 241 185 / 0.1) 0%, rgb(47 241 185 / 0) 72%);
	border-radius: 50%;
	content: "";
	height: 220px;
	pointer-events: none;
	position: absolute;
	right: -90px;
	top: -90px;
	width: 220px;
}

.wp-block-group > .wp-block-group__inner-container {
	position: relative;
	z-index: 1;
}

.wp-block-group .wp-block-heading,
.wp-block-group h1,
.wp-block-group h2,
.wp-block-group h3 {
	color: var(--bcz-text-main);
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.2;
	margin: 0 0 16px;
}

.wp-block-group h1 {
	font-size: 28px;
}

.wp-block-group h2 {
	font-size: 23px;
}

.wp-block-group h3 {
	font-size: 19px;
}

.wp-block-group b,
.wp-block-group strong {
	color: var(--bcz-text-main);
	font-weight: 700;
}

.wp-block-group .wp-block-image {
	margin: 0 0 20px;
}

.wp-block-group .wp-block-image.aligncenter {
	margin: 0 auto;
	text-align: center;
}

.wp-block-group .wp-block-image img {
	border: 1px solid var(--bcz-line-strong);
	border-radius: 18px;
	box-shadow: var(--bcz-shadow-a);
	display: block;
	height: auto;
	margin-bottom: 25px;
	max-width: 800px;
	width: 100%;
}

.wp-block-group p {
	color: var(--bcz-text-soft);
	font-size: 15px;
	line-height: 1.7;
	margin: 0 0 14px;
}

.wp-block-group p:last-child {
	margin-bottom: 0;
}

.wp-block-group a {
	border-bottom: 1px solid rgb(47 241 185 / 0.3);
	color: var(--bcz-brand-main);
	text-decoration: none;
	transition: color 0.22s ease, border-color 0.22s ease;
}

.wp-block-group a:hover,
.wp-block-group a:focus-visible {
	border-color: rgb(47 241 185 / 0.55);
	color: var(--bcz-text-main);
	outline: none;
}

.wp-block-group .wp-block-heading + .wp-block-image {
	margin-top: 4px;
}

.schema-how-to {
	margin: 18px 0;
	position: relative;
}

.schema-how-to-description {
	color: var(--bcz-text-dim);
	font-size: 14px;
	line-height: 1.6;
	margin: 0 0 14px;
}

.schema-how-to-steps {
	counter-reset: step;
	list-style: none;
	margin: 0;
	padding: 0;
}

.schema-how-to-step {
	background: #3D3D3E;
	border: 1px solid var(--bcz-line-soft);
	border-radius: 6px;
	margin-bottom: 10px;
	padding: 14px 14px 14px 46px;
	position: relative;
	transition: border-color 0.2s ease, transform 0.2s ease;
}

.schema-how-to-step:last-child {
	margin-bottom: 0;
}

.schema-how-to-step::before {
	align-items: center;
	background: #2c2c2c;
	border-radius: 4px;
	color: #2FF1B9;
	content: counter(step);
	counter-increment: step;
	display: flex;
	font-size: 12px;
	font-weight: 700;
	height: 22px;
	justify-content: center;
	left: 12px;
	position: absolute;
	top: 14px;
	width: 22px;
}

.schema-how-to-step:hover {
	border-color: rgb(47 241 185 / 0.25);
	transform: translateY(-1px);
}

.schema-how-to-step-name {
	color: var(--bcz-text-main);
	display: block;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
	margin-bottom: 6px;
}

.schema-how-to-step-text {
	color: var(--bcz-text-soft);
	font-size: 13px;
	line-height: 1.6;
	margin: 0;
}

.schema-how-to a {
	border-bottom: 1px solid rgb(47 241 185 / 0.3);
	color: var(--bcz-brand-main);
	text-decoration: none;
}

.schema-how-to a:hover {
	border-color: rgb(47 241 185 / 0.6);
	color: var(--bcz-text-main);
}

.wp-block-table {
	margin: 18px 0;
	overflow-x: auto;
	padding: 0;
}

.wp-block-table table {
	background: linear-gradient(180deg, rgb(34 34 35) 0%, rgb(28 28 29) 100%);
	border: 1px solid var(--bcz-line-strong);
	border-collapse: separate;
	border-radius: 6px;
	border-spacing: 0;
	box-shadow: var(--bcz-shadow-a);
	min-width: 720px;
	overflow: hidden;
	table-layout: fixed;
	width: 100%;
}

.wp-block-table thead {
	border: 0 !important;
}

.wp-block-table thead th {
	background: linear-gradient(180deg, rgb(46 46 47) 0%, rgb(38 38 39) 100%);
	border-bottom: 1px solid var(--bcz-line-soft);
	border-right: 1px solid var(--bcz-line-soft);
	color: var(--bcz-text-main);
	font-size: 13px;
	font-weight: 700;
	line-height: 1.45;
	padding: 14px 14px;
	text-align: left;
	vertical-align: top;
}

.wp-block-table thead th:last-child {
	border-right: 0;
}

.wp-block-table tbody td {
	background: rgb(31 31 32);
	border-bottom: 1px solid var(--bcz-line-strong);
	border-right: 1px solid var(--bcz-line-strong);
	color: var(--bcz-text-soft);
	font-size: 13px;
	line-height: 1.6;
	padding: 13px 14px;
	vertical-align: top;
}

.wp-block-table tbody td:last-child {
	border-right: 0;
}

.wp-block-table tbody tr:last-child td {
	border-bottom: 0;
}

.wp-block-table tbody tr:nth-child(even) td {
	background: rgb(36 36 37);
}

.wp-block-table tbody tr:hover td {
	background: rgb(41 41 42);
}

.wp-block-table tbody td:first-child {
	color: var(--bcz-text-main);
	font-weight: 600;
}

.wp-block-table .has-text-align-left {
	text-align: left;
}

.wp-block-table a {
	border-bottom: 1px solid rgb(47 241 185 / 0.3);
	color: var(--bcz-brand-main);
	text-decoration: none;
}

.wp-block-table a:hover {
	border-color: rgb(47 241 185 / 0.6);
	color: var(--bcz-text-main);
}

.wp-block-table thead tr:first-child th:first-child {
	border-top-left-radius: 6px;
}

.wp-block-table thead tr:first-child th:last-child {
	border-top-right-radius: 6px;
}

.wp-block-table tbody tr:last-child td:first-child {
	border-bottom-left-radius: 6px;
}

.wp-block-table tbody tr:last-child td:last-child {
	border-bottom-right-radius: 6px;
}

.wp-block-table::-webkit-scrollbar {
	height: 8px;
}

.wp-block-table::-webkit-scrollbar-thumb {
	background: rgb(70 70 70);
	border-radius: 999px;
}

.wp-block-table::-webkit-scrollbar-track {
	background: rgb(28 28 29);
}

.schema-faq {
	margin: 18px 0;
	position: relative;
}

.schema-faq::before {
	background: linear-gradient(90deg, var(--bcz-accent-start), var(--bcz-brand-main), var(--bcz-accent-end));
	content: "";
	height: 2px;
	inset: 0 0 auto;
	position: absolute;
}

.schema-faq-section {
	background: linear-gradient(180deg, rgb(54 54 55 / 0.9) 0%, rgb(41 41 42 / 0.95) 100%);
	border: 1px solid var(--bcz-line-soft);
	border-radius: 6px;
	margin-bottom: 10px;
	padding: 14px 14px 14px 40px;
	position: relative;
	transition: border-color 0.2s ease, transform 0.2s ease;
}

.schema-faq-section:last-child {
	margin-bottom: 0;
}

.schema-faq-section::before {
	background: linear-gradient(180deg, var(--bcz-accent-start), var(--bcz-brand-main));
	border-bottom-left-radius: 6px;
	border-top-left-radius: 6px;
	bottom: 0;
	content: "";
	left: 0;
	position: absolute;
	top: 0;
	width: 3px;
}

.schema-faq-section:hover {
	border-color: rgb(47 241 185 / 0.25);
	transform: translateY(-1px);
}

.schema-faq-question {
	color: var(--bcz-text-main);
	display: block;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
	margin-bottom: 6px;
}

.schema-faq-answer {
	color: var(--bcz-text-soft);
	font-size: 13px;
	line-height: 1.6;
	margin: 0;
}

.schema-faq a {
	border-bottom: 1px solid rgb(47 241 185 / 0.3);
	color: var(--bcz-brand-main);
	text-decoration: none;
}

.schema-faq a:hover {
	border-color: rgb(47 241 185 / 0.6);
	color: var(--bcz-text-main);
}

.wp-block-list {
	background: linear-gradient(135deg, var(--bcz-surface-a) 0%, var(--bcz-surface-b) 100%);
	border: 1px solid var(--bcz-line-strong);
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
	margin: 24px 0;
	padding: 20px 24px 20px 28px;
	position: relative;
	transition: all 0.25s ease;
}

.wp-block-list:hover {
	border-color: var(--bcz-brand-main);
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.wp-block-list::before {
	background: linear-gradient(90deg, var(--bcz-brand-main), transparent);
	border-radius: 2px;
	content: "";
	height: 2px;
	left: 12px;
	opacity: 0;
	position: absolute;
	right: 12px;
	top: 0;
	transition: opacity 0.3s ease;
}

.wp-block-list:hover::before {
	opacity: 1;
}

.wp-block-list li {
	color: var(--bcz-text-soft);
	font-size: 14px;
	line-height: 1.65;
	margin-bottom: 10px;
	padding-left: 6px;
	transition: color 0.2s ease, transform 0.2s ease;
}

.wp-block-list li:last-child {
	margin-bottom: 0;
}

.wp-block-list li:hover {
	color: var(--bcz-text-main);
	transform: translateX(4px);
}

.wp-block-list strong {
	color: var(--bcz-text-main);
	font-weight: 600;
}

.wp-block-list code {
	background: var(--bcz-dark-btn);
	border-radius: 4px;
	color: var(--bcz-brand-main);
	font-size: 0.9em;
	padding: 2px 6px;
}

.wp-block-list ul,
.wp-block-list ol {
	margin: 10px 0 6px 0;
	padding-left: 20px;
}

.wp-block-list li > .wp-block-list {
	margin-top: 10px;
}

ul.wp-block-list {
	list-style: none;
}

ul.wp-block-list li {
	padding-left: 24px;
	position: relative;
}

ul.wp-block-list li::before {
	color: var(--bcz-brand-main);
	content: "•";
	font-size: 18px;
	font-weight: 700;
	left: 4px;
	line-height: 1.4;
	position: absolute;
	transition: transform 0.2s ease;
}

ul.wp-block-list li:hover::before {
	transform: scale(1.2);
}

ol.wp-block-list {
	counter-reset: list-counter;
	list-style: none;
}

ol.wp-block-list li {
	counter-increment: list-counter;
	padding-left: 32px;
	position: relative;
}

ol.wp-block-list li::before {
	color: var(--bcz-brand-main);
	content: counter(list-counter) ".";
	font-size: 13px;
	font-weight: 700;
	left: 4px;
	letter-spacing: 0.5px;
	line-height: 1.6;
	position: absolute;
}

.bcz-bonus-hero {
	margin: 0 0 32px 0;
}

.bcz-bonus-hero__banner {
	background: linear-gradient(135deg, var(--bcz-head-start) 0%, var(--bcz-head-end) 100%);
	border: 1px solid var(--bcz-brand-deep);
	border-radius: 16px;
	overflow: hidden;
	position: relative;
	transition: all 0.3s ease;
}

.bcz-bonus-hero__banner::before {
	background: radial-gradient(circle at 100% 0%, rgba(47, 241, 185, 0.08), transparent 70%);
	bottom: 0;
	content: "";
	left: 0;
	pointer-events: none;
	position: absolute;
	right: 0;
	top: 0;
}

.bcz-bonus-hero__banner:hover {
	border-color: var(--bcz-brand-main);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.bcz-bonus-hero__inner {
	padding: 40px 32px;
	position: relative;
	z-index: 1;
}

.bcz-bonus-hero__pill {
	backdrop-filter: blur(4px);
	background: rgba(47, 241, 185, 0.12);
	border: 1px solid rgba(47, 241, 185, 0.25);
	border-radius: 100px;
	color: var(--bcz-brand-main);
	display: inline-block;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.5px;
	margin-bottom: 20px;
	padding: 6px 14px;
	text-transform: uppercase;
}

.bcz-bonus-hero__title {
	color: var(--bcz-text-main);
	display: block;
	font-size: 42px;
	font-weight: 700;
	letter-spacing: -0.5px;
	line-height: 1.2;
	margin-bottom: 16px;
}

.bcz-bonus-hero__title-highlight {
	color: var(--bcz-brand-main);
	font-size: 48px;
	text-shadow: 0 0 20px rgba(47, 241, 185, 0.3);
}

.bcz-bonus-hero__text {
	color: var(--bcz-text-soft);
	font-size: 15px;
	line-height: 1.55;
	margin-bottom: 28px;
	max-width: 500px;
}

@keyframes bczFloatPulse {
	0% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-2px);
	}
	100% {
		transform: translateY(0);
	}
}

@media (max-width: 1200px) {
	.bcz-game-wall {
		gap: 10px;
		grid-template-columns: repeat(4, 1fr);
	}
}

@media (max-width: 1100px) {
	.bcz-match-feed__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

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

	.bcz-footer__brand-text {
		max-width: 100%;
	}

	.bcz-footer__trust-head {
		align-items: flex-start;
		flex-direction: column;
	}

	.bcz-footer__trust-note {
		text-align: left;
	}

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

	.bcz-footer__bottom {
		align-items: flex-start;
		flex-direction: column;
	}

	.bcz-footer__disclaimer {
		max-width: 100%;
		text-align: left;
	}
}

@media (max-width: 991px) {
	.wp-block-group {
		border-radius: 18px;
		padding: 24px 20px;
	}

	.wp-block-group h1 {
		font-size: 25px;
	}

	.wp-block-group h2 {
		font-size: 21px;
	}

	.wp-block-group h3 {
		font-size: 18px;
	}

	.wp-block-group p {
		font-size: 15px;
		line-height: 1.68;
	}
}

@media (max-width: 860px) {
	.bcz-topbar {
		position: relative;
	}

	.bcz-topbar__row {
		flex-wrap: wrap;
		padding: 10px 0;
	}

	.bcz-main-menu {
		flex-basis: 100%;
		order: 3;
		width: 100%;
	}

	.bcz-main-menu__list {
		flex-wrap: nowrap;
		gap: 14px 18px;
		overflow-x: auto;
		padding-bottom: 10px;
	}

	.bcz-main-menu__link {
		font-size: 12px;
		padding: 8px 0;
		white-space: nowrap;
	}

	.bcz-page-frame {
		padding-top: 0;
	}
}

@media (max-width: 768px) {
	p {
		font-size: 15px;
	}

	.bcz-game-wall {
		gap: 8px;
		grid-template-columns: repeat(3, 1fr);
		padding: 11px;
	}
}

@media (max-width: 767px) {
	.bcz-footer {
		margin-top: 56px;
	}

	.bcz-footer__inner {
		padding: 30px 0 18px;
	}

	.bcz-footer__main {
		padding-bottom: 24px;
	}

	.bcz-footer__nav .menu,
	.bcz-footer__nav ul {
		gap: 10px;
	}

	.bcz-footer__nav a {
		border-radius: 14px;
		justify-content: flex-start;
		padding: 12px 14px;
		width: 100%;
	}

	.bcz-footer__side,
	.bcz-footer__cta {
		width: 100%;
	}

	.bcz-footer__trust {
		border-radius: 18px;
		margin-top: 24px;
		padding: 18px;
	}

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

	.bcz-footer .bcz-trust-badge {
		border-radius: 16px;
		min-height: 96px;
		padding: 12px 10px;
	}

	.bcz-footer .bcz-trust-badge__text {
		font-size: 12px;
	}

	.wp-block-group {
		border-radius: 16px;
		padding: 20px 16px;
	}

	.wp-block-group h1 {
		font-size: 22px;
	}

	.wp-block-group h2 {
		font-size: 19px;
	}

	.wp-block-group h3 {
		font-size: 17px;
	}

	.wp-block-group p {
		font-size: 14px;
		line-height: 1.65;
	}

	.wp-block-group .wp-block-image {
		margin-bottom: 16px;
	}

	.wp-block-group .wp-block-image img {
		border-radius: 14px;
	}

	.schema-how-to {
		padding: 16px 14px;
	}

	.schema-how-to-step {
		padding: 12px 12px 12px 40px;
	}

	.schema-how-to-step::before {
		font-size: 11px;
		height: 20px;
		left: 10px;
		top: 12px;
		width: 20px;
	}

	.schema-how-to-step-name {
		font-size: 13px;
	}

	.schema-how-to-step-text {
		font-size: 12.5px;
	}

	.wp-block-table table {
		min-width: 680px;
	}

	.wp-block-table thead th,
	.wp-block-table tbody td {
		font-size: 12.5px;
		line-height: 1.5;
		padding: 11px 12px;
	}

	.schema-faq {
		padding: 14px;
	}

	.schema-faq-section {
		padding: 12px 12px 12px 34px;
	}

	.schema-faq-question {
		font-size: 13px;
	}

	.schema-faq-answer {
		font-size: 12.5px;
	}

	.wp-block-list {
		border-radius: 10px;
		margin: 16px 0;
		padding: 14px 16px 14px 22px;
	}

	.wp-block-list li {
		font-size: 13px;
		margin-bottom: 8px;
	}

	.wp-block-list li:hover {
		transform: translateX(2px);
	}

	ul.wp-block-list li {
		padding-left: 22px;
	}

	ul.wp-block-list li::before {
		font-size: 16px;
		left: 2px;
	}

	ol.wp-block-list li {
		padding-left: 28px;
	}

	.bcz-bonus-hero__inner {
		padding: 28px 20px;
	}

	.bcz-bonus-hero__title {
		font-size: 28px;
	}

	.bcz-bonus-hero__title-highlight {
		font-size: 32px;
	}

	.bcz-bonus-hero__text {
		font-size: 13px;
		margin-bottom: 24px;
	}

	.bcz-bonus-hero__pill {
		font-size: 10px;
		margin-bottom: 16px;
		padding: 4px 12px;
	}

	.bcz-btn--bonus {
		font-size: 13px;
		padding: 12px 24px;
		width: 100%;
	}
}

@media (max-width: 640px) {
	.bcz-match-feed__grid {
		grid-template-columns: 1fr;
	}

	.bcz-trust-badge {
		border-radius: 15px;
		justify-content: flex-start;
		width: 100%;
	}
}

@media (max-width: 480px) {
	.bcz-wrap,
	.bcz-page-frame {
		width: min(100% - 16px, var(--bcz-wrap-size));
	}

	.bcz-topbar-actions .bcz-btn--stroke {
		display: none;
	}

	.bcz-game-wall {
		gap: 6px;
		grid-template-columns: repeat(2, 1fr);
	}

	.bcz-btn--bonus {
		font-size: 14px;
		padding: 16px 20px;
	}
}

@media (max-width: 479px) {
	.bcz-footer__badges {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 360px) {
	.bcz-game-wall {
		gap: 4px;
		padding: 8px;
	}
}