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

:root {
	--bg: #0d1117;
	--bg-light: #131b24;
	--bg-card: #171e27;
	--bg-header: #0e131c;
	--bg-nav: #12181f;
	--green: #24e066;
	--green-hover: #2cf574;
	--white: #edf0f3;
	--gray: #8c929b;
	--gray-dim: #5d636c;
	--border: rgba(255, 255, 255, 0.08);
	--border-light: rgba(255, 255, 255, 0.14);
	--font: 'Outfit', sans-serif;
	--header-h: 56px;
	--nav-h: 44px;
	--max-w: 1480px;
	--radius: 10px;
}

html {
	font-size: 16px;
	scroll-behavior: smooth;
}

body {
	font-family: var(--font);
	background: var(--bg);
	color: var(--white);
	min-height: 100vh;
	overflow-x: hidden;
}

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

ul,
ol {
	list-style: none;
}

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

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 9px 24px;
	font-family: var(--font);
	font-size: 13px;
	font-weight: 700;
	border-radius: 50px;
	cursor: pointer;
	transition: all 0.2s;
	white-space: nowrap;
	border: 2px solid transparent;
	letter-spacing: 0.3px;
}

.btn--green {
	position: relative;
	overflow: hidden;
	background: linear-gradient(180deg, #2cf574 0%, #24e066 52%, #1dca5b 100%);
	color: #0d1117;
	border: none;
	font-weight: 800;
	box-shadow:
		inset 0 2px 0 rgba(255, 255, 255, 0.22),
		inset 0 -2px 0 rgba(0, 0, 0, 0.15),
		0 4px 14px rgba(36, 224, 102, 0.35),
		0 2px 4px rgba(0, 0, 0, 0.2);
	text-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
	transition: transform 0.15s, box-shadow 0.2s;
}

.btn--green::before {
	content: '';
	position: absolute;
	top: 2px;
	left: 8%;
	right: 8%;
	height: 40%;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.25) 0%, transparent 100%);
	border-radius: 50px 50px 0 0;
	pointer-events: none;
}

.btn--green:hover {
	transform: translateY(-2px);
	box-shadow:
		inset 0 2px 0 rgba(255, 255, 255, 0.22),
		inset 0 -2px 0 rgba(0, 0, 0, 0.15),
		0 8px 22px rgba(36, 224, 102, 0.5),
		0 3px 8px rgba(0, 0, 0, 0.2);
}

.btn--green:active {
	transform: translateY(0);
}

.btn--outline {
	border: 2px solid var(--green);
	color: var(--green);
	background: transparent;
	font-weight: 700;
}

.btn--outline:hover {
	background: var(--green);
	color: #0d1117;
}

.btn--sm {
	padding: 6px 16px;
	font-size: 12px;
}

.btn--full {
	width: 100%;
	padding: 14px 24px;
}

.logo-text {
	font-size: 22px;
	font-weight: 800;
	letter-spacing: -0.5px;
	white-space: nowrap;
}

.logo-accent {
	color: var(--green);
}

.logo-crown {
	flex-shrink: 0;
}

.app-popup {
	display: none;
	background: var(--bg-header);
	border-bottom: 1px solid var(--border);
	padding: 10px 16px;
}

.app-popup__inner {
	display: flex;
	align-items: center;
	gap: 12px;
	max-width: var(--max-w);
	margin: 0 auto;
}

.app-popup__icon {
	flex-shrink: 0;
}

.app-popup__text {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.app-popup__title {
	font-size: 14px;
	font-weight: 700;
}

.app-popup__sub {
	font-size: 11px;
	color: var(--gray);
}

.app-popup__download {
	background: var(--green);
	color: #0d1117;
	padding: 6px 18px;
	border-radius: 50px;
	font-size: 12px;
	font-weight: 800;
	flex-shrink: 0;
	transition: opacity 0.2s;
}

.app-popup__download:hover {
	opacity: 0.9;
}

.app-popup__close {
	padding: 6px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
}

.burger-overlay {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(6, 8, 12, 0.72);
	z-index: 1100;
	backdrop-filter: blur(2px);
	opacity: 0;
	transition: opacity 0.3s;
}

.burger-overlay.is-open {
	display: block;
	opacity: 1;
}

.burger-drawer {
	position: fixed;
	top: 0;
	right: -320px;
	width: 300px;
	height: 100%;
	background: var(--bg-header);
	border-left: 1px solid var(--border-light);
	z-index: 1200;
	display: flex;
	flex-direction: column;
	transition: right 0.32s cubic-bezier(0.4, 0, 0.2, 1);
	overflow-y: auto;
}

.burger-drawer.is-open {
	right: 0;
}

.burger-drawer__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 20px;
	border-bottom: 1px solid var(--border);
}

.burger-drawer__logo {
	display: flex;
	align-items: center;
	gap: 8px;
}

.burger-drawer__logo .logo-text {
	font-size: 18px;
}

.burger-close {
	background: none;
	border: none;
	color: var(--gray);
	cursor: pointer;
	padding: 6px;
	border-radius: 8px;
	transition: color 0.2s, background 0.2s;
	line-height: 0;
}

.burger-close:hover {
	color: var(--white);
	background: rgba(255, 255, 255, 0.08);
}

.burger-drawer__auth {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 18px 20px;
	border-bottom: 1px solid var(--border);
}

.burger-drawer__nav {
	padding: 12px 10px;
	flex: 1;
}

.burger-drawer__nav ul {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.burger-drawer__nav ul li a {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 14px;
	font-size: 15px;
	font-weight: 700;
	color: var(--gray);
	border-radius: 10px;
	transition: color 0.2s, background 0.2s;
	text-transform: uppercase;
	letter-spacing: 0.4px;
}

.burger-drawer__nav ul li a svg {
	flex-shrink: 0;
	opacity: 0.7;
	transition: opacity 0.2s;
}

.burger-drawer__nav ul li a:hover,
.burger-drawer__nav ul li a[aria-current="page"] {
	color: var(--white);
	background: rgba(255, 255, 255, 0.07);
}

.burger-drawer__nav ul li a[aria-current="page"] {
	color: var(--green);
}

.burger-drawer__nav ul li a[aria-current="page"] svg,
.burger-drawer__nav ul li a:hover svg {
	opacity: 1;
}

.burger-btn {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	border-radius: 8px;
	transition: background 0.2s;
}

.burger-btn:hover {
	background: rgba(255, 255, 255, 0.07);
}

.burger-btn__line {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--white);
	border-radius: 2px;
}

.topbar {
	background: #080b13;
	border-bottom: 1px solid var(--border);
}

.topbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: var(--max-w);
	margin: 0 auto;
	padding: 3px 24px;
}

.topbar__text {
	font-size: 10px;
	color: var(--gray-dim);
	line-height: 1.4;
}

.topbar__right {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-shrink: 0;
}

.topbar__18 {
	background: rgba(255, 255, 255, 0.1);
	color: var(--gray);
	padding: 1px 7px;
	border-radius: 4px;
	font-size: 10px;
	font-weight: 800;
}

.topbar__toggle {
	display: flex;
	align-items: center;
	color: var(--gray-dim);
	transition: color 0.2s;
}

.topbar__toggle:hover {
	color: var(--white);
}

.header {
	position: sticky;
	top: 0;
	z-index: 1000;
}

.header__top {
	background: var(--bg-header);
	border-bottom: 1px solid var(--border);
}

.header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: var(--max-w);
	margin: 0 auto;
	padding: 0 24px;
	height: var(--header-h);
}

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

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

.header__promo-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	border: 2px solid var(--green);
	border-radius: 50px;
	padding: 7px 18px;
	font-size: 13px;
	font-weight: 700;
	color: var(--green);
	transition: all 0.2s;
}

.header__promo-btn svg {
	stroke: var(--green);
}

.header__promo-btn:hover {
	background: var(--green);
	color: #0d1117;
}

.header__promo-btn:hover svg {
	stroke: #0d1117;
}

.header__fields {
	display: flex;
	align-items: center;
	gap: 8px;
	position: relative;
}

.header__input-wrap {
	position: relative;
}

.header__input {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid var(--border-light);
	border-radius: 6px;
	padding: 7px 32px 7px 12px;
	font-size: 12px;
	font-family: var(--font);
	color: var(--white);
	width: 140px;
	outline: none;
	transition: border-color 0.2s;
}

.header__input::placeholder {
	color: var(--gray-dim);
}

.header__input:focus {
	border-color: var(--green);
}

.header__input-icon {
	position: absolute;
	right: 8px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--gray-dim);
	pointer-events: none;
}

.header__forgot {
	position: absolute;
	right: 0;
	top: 100%;
	margin-top: 2px;
	font-size: 10px;
	color: var(--gray-dim);
	white-space: nowrap;
	transition: color 0.2s;
}

.header__forgot:hover {
	color: var(--green);
}

.header__mobile {
	display: none;
	align-items: center;
	gap: 8px;
}

.header__user-btn {
	display: flex;
	align-items: center;
	color: var(--white);
	padding: 4px;
	transition: color 0.2s;
}

.header__user-btn:hover {
	color: var(--green);
}

.header__nav {
	background: var(--bg-nav);
	border-bottom: 1px solid var(--border);
}

.header__nav .header__inner {
	height: var(--nav-h);
	gap: 0;
}

.nav-list {
	display: flex;
	align-items: center;
    justify-content: center;
	gap: 0;
	flex: 1;
}

.nav-list a {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 0 14px;
	height: var(--nav-h);
	font-size: 12px;
	font-weight: 700;
	color: var(--gray);
	text-transform: uppercase;
	letter-spacing: 0.6px;
	white-space: nowrap;
	transition: color 0.2s;
	position: relative;
}

.nav-list a:hover {
	color: var(--white);
}

.nav-list a[aria-current="page"] {
	color: var(--white);
}

.nav-list a[aria-current="page"]::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 14px;
	right: 14px;
	height: 2px;
	background: var(--green);
	border-radius: 2px 2px 0 0;
}

.nav-list li:last-child {
	position: relative;
}

.nav-list li:last-child::after {
	content: 'NEW';
	position: absolute;
	top: 4px;
	right: 0;
	background: #e8423e;
	color: #fff;
	font-size: 8px;
	font-weight: 800;
	padding: 1px 4px;
	border-radius: 3px;
	line-height: 1.2;
}

.page-content {
	max-width: var(--max-w);
	margin: 0 auto;
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 36px;
}

.hero__container {
	border-radius: 16px;
	overflow: hidden;
	position: relative;
	min-height: 400px;
	background-image: url('/assets/img/promo-baner.webp');
	background-size: cover;
	background-position: center right;
	background-repeat: no-repeat;
	background-color: #0c1c18;
}

.hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(10, 14, 20, 0.92) 0%, rgba(10, 14, 20, 0.65) 45%, rgba(10, 14, 20, 0.15) 100%);
	z-index: 1;
}

.hero__content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	padding: 48px;
	min-height: 400px;
	max-width: 540px;
}

.hero__badge {
	display: inline-block;
	padding: 5px 14px;
	margin-bottom: 14px;
	background: rgba(36, 224, 102, 0.12);
	border: 1px solid rgba(36, 224, 102, 0.4);
	border-radius: 50px;
	font-size: 11px;
	font-weight: 800;
	color: var(--green);
	letter-spacing: 1px;
	text-transform: uppercase;
}

.hero__title {
	display: block;
	font-size: 34px;
	font-weight: 900;
	color: var(--white);
	margin-bottom: 12px;
	text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
	line-height: 1.2;
}

.hero__title em {
	font-style: normal;
	color: var(--green);
}

.hero__text {
	font-size: 15px;
	font-weight: 500;
	color: var(--gray);
	line-height: 1.6;
	margin-bottom: 24px;
	max-width: 440px;
}

.hero__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 48px;
	font-family: var(--font);
	font-size: 15px;
	font-weight: 900;
	letter-spacing: 0.6px;
	text-transform: uppercase;
	color: #fff;
	border-radius: 50px;
	position: relative;
	overflow: hidden;
	background: linear-gradient(180deg, #2cf574 0%, #24e066 52%, #1dca5b 100%);
	box-shadow:
		inset 0 2px 0 rgba(255, 255, 255, 0.25),
		inset 0 -2px 0 rgba(0, 0, 0, 0.15),
		0 6px 22px rgba(36, 224, 102, 0.45),
		0 2px 6px rgba(0, 0, 0, 0.3);
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
	transition: transform 0.15s, box-shadow 0.2s;
}

.hero__cta::before {
	content: '';
	position: absolute;
	top: 2px;
	left: 8%;
	right: 8%;
	height: 40%;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.28) 0%, transparent 100%);
	border-radius: 50px 50px 0 0;
}

.hero__cta:hover {
	transform: translateY(-2px);
	box-shadow:
		inset 0 2px 0 rgba(255, 255, 255, 0.25),
		inset 0 -2px 0 rgba(0, 0, 0, 0.15),
		0 10px 32px rgba(36, 224, 102, 0.58),
		0 4px 10px rgba(0, 0, 0, 0.3);
}

.hero__cta:active {
	transform: translateY(0);
}

.hero__payments {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 20px;
	align-items: center;
}

.promos-section {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.promos-section__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.promos-section__title {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 18px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.promos-section__title svg {
	color: var(--green);
}

.promos-section__all {
	font-size: 13px;
	color: var(--green);
	font-weight: 700;
}

.promos-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

.promo-card {
	border-radius: var(--radius);
	overflow: hidden;
}

.promo-card__body {
	padding: 24px 20px;
	min-height: 210px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
}

.promo-card__body::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.65) 100%);
}

.promo-card__tag {
	display: inline-block;
	background: rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(4px);
	padding: 4px 12px;
	border-radius: 4px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.5px;
	margin-bottom: 12px;
	align-self: flex-start;
	position: relative;
	z-index: 1;
}

.promo-card__title {
	display: block;
	font-size: 22px;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 6px;
	position: relative;
	z-index: 1;
}

.promo-card__title em {
	font-style: normal;
	color: var(--green);
}

.promo-card__sub {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.7);
	position: relative;
	z-index: 1;
}

.promo-card__btn {
	display: block;
	padding: 12px;
	text-align: center;
	font-size: 13px;
	font-weight: 700;
	color: var(--green);
	border: 1.5px solid var(--green);
	border-radius: 0 0 var(--radius) var(--radius);
	transition: all 0.2s;
	background: var(--bg-card);
}

.promo-card__btn:hover {
	background: var(--green);
	color: #0d1117;
}

.promo-card--1 .promo-card__body {
	background-image: url('/assets/img/promo-casino.webp');
	background-color: #0e421f;
}

.promo-card--2 .promo-card__body {
	background-image: url('/assets/img/promo-sport.webp');
	background-color: #1d1e3e;
}

.promo-card--3 .promo-card__body {
	background-image: url('/assets/img/promo-torneo.webp');
	background-color: #1e2e3f;
}

.promo-card--4 .promo-card__body {
	background-image: url('/assets/img/promo-multipla.webp');
	background-color: #0d1824;
}

.games-section {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.games-section__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.games-section__title {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 22px;
	font-weight: 800;
}

.games-section__title svg {
	color: var(--green);
}

.games-section__sub {
	font-size: 12px;
	color: var(--gray-dim);
	font-weight: 500;
	border-left: 1px solid var(--border-light);
	padding-left: 12px;
	margin-right: auto;
}

.games-section__all {
	padding: 8px 20px;
	border: 2px solid var(--green);
	color: var(--green);
	font-size: 12px;
	font-weight: 800;
	border-radius: 50px;
	transition: background 0.2s, color 0.2s;
	letter-spacing: 0.5px;
}

.games-section__all:hover {
	background: var(--green);
	color: #0d1117;
}

.games-grid {
	display: grid;
	grid-template-rows: repeat(2, 1fr);
	grid-auto-flow: column;
	grid-auto-columns: 160px;
	gap: 14px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	padding-bottom: 4px;
}

.games-grid::-webkit-scrollbar {
	display: none;
}

.game-card {
	scroll-snap-align: start;
}

.game-card {
	display: flex;
	flex-direction: column;
	border-radius: var(--radius);
	overflow: hidden;
	background: var(--bg-card);
	cursor: pointer;
	transition: transform 0.2s, box-shadow 0.2s;
}

.game-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 28px rgba(36, 224, 102, 0.15);
}

.game-card__wrap {
	position: relative;
	overflow: hidden;
}

.game-card__img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	display: block;
	background: var(--bg-light);
	transition: transform 0.3s;
}

.game-card:hover .game-card__img {
	transform: scale(1.07);
}

.game-card__hover {
	position: absolute;
	inset: 0;
	background: rgba(6, 8, 12, 0.6);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.25s;
}

.game-card:hover .game-card__hover {
	opacity: 1;
}

.game-card__play-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 22px;
	font-family: var(--font);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	color: #fff;
	border-radius: 50px;
	position: relative;
	overflow: hidden;
	background: linear-gradient(180deg, #2cf574 0%, #24e066 52%, #1dca5b 100%);
	box-shadow:
		inset 0 2px 0 rgba(255, 255, 255, 0.25),
		inset 0 -2px 0 rgba(0, 0, 0, 0.15),
		0 4px 18px rgba(36, 224, 102, 0.5);
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
	transform: translateY(6px);
	transition: transform 0.25s, box-shadow 0.2s;
}

.game-card__play-btn::before {
	content: '';
	position: absolute;
	top: 2px;
	left: 10%;
	right: 10%;
	height: 38%;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.28) 0%, transparent 100%);
	border-radius: 50px 50px 0 0;
}

.game-card:hover .game-card__play-btn {
	transform: translateY(0);
}

.game-card__play-btn:hover {
	box-shadow:
		inset 0 2px 0 rgba(255, 255, 255, 0.25),
		inset 0 -2px 0 rgba(0, 0, 0, 0.15),
		0 8px 28px rgba(36, 224, 102, 0.65);
}

.game-card__name {
	display: block;
	padding: 10px;
	font-size: 13px;
	font-weight: 700;
	color: var(--gray);
	text-align: center;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.live-section {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.live-section__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.live-section__title {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 18px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.live-section__title svg {
	color: var(--green);
}

.live-section__all {
	font-size: 13px;
	color: var(--green);
	font-weight: 700;
}

.live-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.match-card {
	background: var(--bg-card);
	border-radius: var(--radius);
	overflow: hidden;
	border: 1px solid var(--border);
}

.match-card__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 14px;
	border-bottom: 1px solid var(--border);
}

.match-badge {
	background: #e8423e;
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	padding: 2px 8px;
	border-radius: 3px;
	letter-spacing: 0.5px;
}

.match-league {
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 12px;
	color: var(--gray);
}

.match-fav {
	display: flex;
	opacity: 0.5;
	transition: opacity 0.2s;
}

.match-fav:hover {
	opacity: 1;
}

.match-card__body {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px;
}

.match-team {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 500;
}

.shirt {
	flex-shrink: 0;
}

.match-score {
	text-align: center;
}

.match-score__num {
	font-size: 28px;
	font-weight: 800;
	display: block;
}

.match-score__min {
	font-size: 12px;
	color: var(--gray-dim);
}

.match-card__odds {
	display: flex;
	border-top: 1px solid var(--border);
}

.match-odd {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 10px;
	font-size: 13px;
	transition: background 0.2s;
	border-right: 1px solid var(--border);
}

.match-odd:last-child {
	border-right: none;
}

.match-odd:hover {
	background: rgba(255, 255, 255, 0.04);
}

.match-odd__label {
	color: var(--gray-dim);
	font-weight: 500;
}

.match-odd__val {
	font-weight: 700;
}

.content {
	width: 100%;
	color: var(--gray);
	line-height: 1.7;
	font-size: 15px;
}

.content img {
	display: block;
	max-width: 100%;
	margin: 0 auto 18px;
	border-radius: var(--radius);
}

.content h1 {
	font-size: 28px;
	font-weight: 800;
	color: var(--white);
	line-height: 1.2;
	margin-bottom: 18px;
}

.content h2 {
	font-size: 22px;
	font-weight: 700;
	color: var(--white);
	margin-top: 28px;
	margin-bottom: 12px;
}

.content h3 {
	font-size: 18px;
	font-weight: 700;
	color: var(--white);
	margin-top: 22px;
	margin-bottom: 10px;
}

.content p {
	margin-bottom: 14px;
}

.content blockquote {
	border-left: 3px solid var(--green);
	padding: 12px 20px;
	margin: 18px 0;
	background: rgba(36, 224, 102, 0.05);
	border-radius: 0 var(--radius) var(--radius) 0;
	font-style: italic;
}

.content table {
	width: 100%;
	border-collapse: collapse;
	margin: 18px 0;
}

.content th,
.content td {
	padding: 12px 16px;
	text-align: left;
	border-bottom: 1px solid var(--border);
	font-size: 14px;
}

.content th {
	font-weight: 700;
	color: var(--white);
	background: rgba(255, 255, 255, 0.04);
}

.content tbody tr:hover {
	background: rgba(255, 255, 255, 0.02);
}

.content ul {
	margin: 14px 0;
	padding-left: 22px;
	list-style: disc;
}

.content ul li {
	margin-bottom: 6px;
}

.content ol {
	margin: 14px 0;
	padding-left: 22px;
	list-style: decimal;
}

.content ol li {
	margin-bottom: 6px;
}

.content a {
	color: var(--green);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.content a:hover {
	color: var(--green-hover);
}

.footer {
	background: var(--bg-header);
	border-top: 1px solid var(--border);
	margin-top: 12px;
}

.footer__top {
	max-width: var(--max-w);
	margin: 0 auto;
	padding: 40px 24px 32px;
	display: flex;
	gap: 48px;
}

.footer__brand {
	display: flex;
	flex-direction: column;
	gap: 14px;
	min-width: 220px;
	flex-shrink: 0;
}

.footer__logo {
	display: flex;
	align-items: center;
	gap: 8px;
}

.footer__logo .logo-text {
	font-size: 18px;
}

.footer__brand-label {
	font-size: 11px;
	font-weight: 700;
	color: var(--gray-dim);
	letter-spacing: 0.8px;
	text-transform: uppercase;
}

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

.footer__brand-18 {
	background: rgba(255, 255, 255, 0.1);
	color: var(--gray);
	padding: 2px 8px;
	border-radius: 4px;
	font-size: 11px;
	font-weight: 800;
}

.footer__brand-warning {
	font-size: 10px;
	color: var(--gray-dim);
	line-height: 1.5;
	text-transform: uppercase;
	font-weight: 600;
	max-width: 240px;
}

.footer__cols {
	display: flex;
	gap: 48px;
	flex: 1;
}

.footer__col {
	display: flex;
	flex-direction: column;
	gap: 10px;
	min-width: 140px;
}

.footer__col-title {
	font-size: 13px;
	font-weight: 800;
	color: var(--white);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.footer__col ul {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.footer__col ul li a {
	font-size: 13px;
	color: var(--gray);
	transition: color 0.2s;
}

.footer__col ul li a:hover {
	color: var(--green);
}

.footer__legal {
	border-top: 1px solid var(--border);
	padding: 16px 24px;
	max-width: var(--max-w);
	margin: 0 auto;
}

.footer__legal p {
	font-size: 11px;
	color: var(--gray-dim);
	line-height: 1.7;
	text-align: center;
}

.bottom-nav {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--bg-header);
	border-top: 1px solid var(--border);
	z-index: 1000;
}

.bottom-nav ul {
	display: flex;
	justify-content: space-around;
	padding: 6px 0 max(6px, env(safe-area-inset-bottom));
}

.bottom-nav ul li a {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
	font-size: 10px;
	color: var(--gray-dim);
	padding: 4px 8px;
	transition: color 0.2s;
}

.bottom-nav ul li a:hover,
.bottom-nav ul li a:active {
	color: var(--green);
}

.bottom-nav ul li a svg {
	width: 20px;
	height: 20px;
}

@media (max-width: 1200px) {
	.header__input {
		width: 110px;
	}

	.games-grid {
		grid-auto-columns: 145px;
	}
}

@media (max-width: 1024px) {
	.header__fields {
		display: none;
	}

	.header__promo-btn {
		display: none;
	}

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

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

	.games-grid {
		grid-auto-columns: 135px;
		gap: 12px;
	}

	.hero__title {
		font-size: 28px;
	}

	.nav-list a {
		font-size: 11px;
		padding: 0 10px;
	}

	.footer__top {
		gap: 32px;
	}

	.footer__cols {
		gap: 28px;
	}
}

@media (max-width: 768px) {
	.app-popup {
		display: block;
	}

	.topbar {
		display: none;
	}

	.header__auth {
		display: none;
	}

	.header__mobile {
		display: flex;
	}

	.burger-btn {
		display: flex;
	}

	.header__nav {
		display: none;
	}

	.header__inner {
		padding: 0 16px;
		height: 50px;
	}

	.header__logo .logo-crown {
		width: 28px;
		height: 22px;
	}

	.header__logo .logo-text {
		font-size: 18px;
	}

	.page-content {
		padding: 16px 14px;
		padding-bottom: calc(70px + 16px);
		gap: 28px;
	}

	.hero__container {
		min-height: 520px;
		background-position: 86.7% -30px;
	}

	.hero__overlay {
		background: linear-gradient(0deg, rgba(10, 14, 20, 1) 35%, rgba(10, 14, 20, 0.85) 50%, rgba(10, 14, 20, 0.15) 75%, rgba(10, 14, 20, 0.05) 100%);
	}

	.hero__content {
		min-height: 520px;
		padding: 0 20px 32px;
		max-width: 100%;
		align-items: center;
		text-align: center;
		justify-content: flex-end;
	}

	.hero__title {
		font-size: 22px;
	}

	.hero__text {
		font-size: 13px;
		margin-bottom: 18px;
	}

	.hero__cta {
		padding: 12px 36px;
		font-size: 14px;
	}

	.hero__payments {
		justify-content: center;
	}

	.promos-grid {
		display: flex;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		gap: 12px;
		padding-bottom: 4px;
	}

	.promos-grid::-webkit-scrollbar {
		display: none;
	}

	.promo-card {
		flex-shrink: 0;
		width: 280px;
		scroll-snap-align: start;
	}

	.promo-card__body {
		min-height: 160px;
	}

	.promo-card__title {
		font-size: 18px;
	}

	.games-grid {
		grid-auto-columns: 120px;
		gap: 10px;
	}

	.games-section__title {
		font-size: 18px;
	}

	.games-section__sub {
		display: none;
	}

	.live-grid {
		display: flex;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		gap: 12px;
		padding-bottom: 4px;
	}

	.live-grid::-webkit-scrollbar {
		display: none;
	}

	.match-card {
		flex-shrink: 0;
		width: 300px;
		scroll-snap-align: start;
	}

	.content h1 {
		font-size: 22px;
	}

	.content h2 {
		font-size: 19px;
	}

	.content table {
		display: block;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

	.bottom-nav {
		display: block;
	}

	.footer__top {
		flex-direction: column;
		gap: 28px;
		padding: 28px 16px 24px;
	}

	.footer__brand {
		align-items: center;
		text-align: center;
	}

	.footer__brand-warning {
		max-width: 100%;
		text-align: center;
	}

	.footer__cols {
		flex-wrap: wrap;
		gap: 24px;
	}

	.footer__col {
		min-width: calc(50% - 12px);
	}
}

@media (max-width: 480px) {
	.header__inner {
		padding: 0 12px;
		height: 48px;
	}

	.header__logo .logo-crown {
		width: 24px;
		height: 18px;
	}

	.header__logo .logo-text {
		font-size: 16px;
	}

	.hero__container {
		min-height: 480px;
	}

	.hero__content {
		min-height: 480px;
		padding: 0 16px 28px;
	}

	.hero__title {
		font-size: 20px;
	}

	.games-grid {
		grid-auto-columns: 100px;
		gap: 8px;
	}

	.game-card__name {
		font-size: 11px;
		padding: 8px 6px;
	}

	.promo-card {
		width: 260px;
	}

	.match-card {
		width: 270px;
	}

	.footer__cols {
		flex-direction: column;
		gap: 20px;
	}

	.footer__col {
		min-width: 100%;
		align-items: center;
		text-align: center;
	}
}

.burger-drawer__nav ul > li:nth-child(4),
.burger-drawer__nav ul > li:nth-child(5),
.burger-drawer__nav ul > li:nth-child(6),
.header__nav .nav-list > li:nth-last-child(-n+3) {
    display: none !important;
}