@font-face {
    font-family: 'Days One';
	src: url('../fonts/DaysOne-Regular.woff') format('woff');
	font-display: swap;
}

:root{
	--header-height: 72px;
}

html, body, div, span, applet, object, iframe, 
h1, h2, h3, h4, h5, h6, p, blockquote, pre, 
a, abbr, acronym, address, big, cite, code, 
del, dfn, em, img, ins, kbd, q, s, samp, 
small, strike, strong, sub, sup, tt, var, 
b, u, i, center, 
dl, dt, dd, ol, ul, li, 
fieldset, form, label, legend, 
table, caption, tbody, tfoot, thead, tr, th, td, 
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary, 
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font: inherit;
	vertical-align: baseline;
}

div, header, a, aside, article{
	box-sizing: border-box;
}

body{
	font-family: 'Inter';
	background: #091f1d;
}

header{
	background: #040D0C;
	height: var(--header-height);
	border-bottom: 1px solid rgba(239, 239, 239, 0.20);
	display: flex;
	justify-content: space-between;
	padding: 0 40px;
	align-items: center;
	position: fixed;
	width: 100%;
	z-index: 5;
}

.container, .big_banner{
	max-width: 1090px;
	width: calc(100% - 80px);
	margin: 0 auto;
}

.buttons_lang{
	display: flex;
	gap: 16px;
	align-items: center;
}

.logo{
	height: 30px;
}

header .logo{
	width: 120px;
	height: 68px;
	display: flex;
	align-items: center;
}

.logo img{
	height: 100%;
	width: auto;
}

header .logo img{
	width: 100%;
	height: auto;
	max-height: 100%;
	object-fit: contain;
}

.buttons_lang .buttons{
	display: flex;
	align-items: center;
	gap: 10px;
}

.buttons_lang .buttons a, .button_yellow{
	min-width: 120px;
	height: 34px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #91181D;
	font-family: Arial;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	background-size: 100% 100%;
}

header .buttons_lang .buttons a,
.banners_section > .big_banner .button_yellow{
	box-sizing: border-box;
	min-width: 142px;
	height: 42px;
	padding: 0 22px;
	position: relative;
	isolation: isolate;
	overflow: hidden;
	border: 2px solid #855000;
	border-radius: 11px;
	color: #382100;
	background-image: none;
	font-family: "Inter", Arial, sans-serif;
	font-size: 14px;
	font-weight: 900;
	letter-spacing: 0.02em;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
	box-shadow:
		inset 0 2px 0 rgba(255, 255, 255, 0.7),
		inset 2px 0 0 rgba(255, 245, 166, 0.35),
		inset -2px 0 0 rgba(141, 77, 0, 0.22),
		0 5px 0 #744100,
		0 9px 16px rgba(0, 0, 0, 0.38);
	transition: transform 140ms ease, box-shadow 140ms ease, filter 140ms ease;
}

header .buttons_lang .button_login{
	background-color: #ffd83d !important;
	background-image: linear-gradient(180deg, #fff7a8 0%, #ffdc43 48%, #eaa800 100%) !important;
}

header .buttons_lang .button_yellow,
.banners_section > .big_banner .button_yellow{
	background-color: #ffc51c !important;
	background-image: linear-gradient(180deg, #ffe96d 0%, #ffc51c 48%, #ed9400 100%) !important;
}

header .buttons_lang .buttons a::before,
.banners_section > .big_banner .button_yellow::before{
	content: "";
	position: absolute;
	inset: 3px 7px auto;
	height: 7px;
	z-index: 0;
	border-radius: 5px;
	background: repeating-linear-gradient(
		90deg,
		rgba(255, 255, 255, 0.55) 0 18px,
		rgba(255, 255, 255, 0.12) 18px 25px,
		transparent 25px 34px
	);
	opacity: 0.72;
	pointer-events: none;
}

@media (hover: hover){
	header .buttons_lang .buttons a:hover,
	.banners_section > .big_banner .button_yellow:hover{
		transform: translateY(-2px);
		filter: brightness(1.06) saturate(1.08);
		box-shadow:
			inset 0 2px 0 rgba(255, 255, 255, 0.78),
			inset 2px 0 0 rgba(255, 245, 166, 0.4),
			inset -2px 0 0 rgba(141, 77, 0, 0.2),
			0 7px 0 #744100,
			0 12px 20px rgba(0, 0, 0, 0.42);
	}
}

header .buttons_lang .buttons a:active,
.banners_section > .big_banner .button_yellow:active{
	transform: translateY(4px);
	box-shadow:
		inset 0 2px 5px rgba(111, 59, 0, 0.28),
		inset 0 1px 0 rgba(255, 255, 255, 0.42),
		0 1px 0 #744100,
		0 4px 8px rgba(0, 0, 0, 0.32);
}

header .buttons_lang .buttons a:focus-visible,
.banners_section > .big_banner .button_yellow:focus-visible{
	outline: 3px solid #fff4a8;
	outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce){
	header .buttons_lang .buttons a,
	.banners_section > .big_banner .button_yellow{
		transition: none;
	}
}

main{
	display: flex;
	padding-top: var(--header-height);
}

aside{
	width: 275px;
	padding: 10px 20px 8px;
	background: #040D0C;
	position: sticky;
	top: var(--header-height);
	align-self: flex-start;
	height: calc(100dvh - var(--header-height));
	min-height: 0;
	overflow: clip;
}

article{
	width: calc(100% - 275px);
    margin-top: 16px;
}

.sidebar_promos{
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.sidebar_promo{
	display: block;
	width: 100%;
	max-width: 500px;
	height: auto;
	margin: 0 auto;
}

.big_banner{
	border-radius: 20px;
	border: 3px solid #5C5C5C;
	background: linear-gradient(90deg, #021D06 0.1%, #09831B 111.81%);
	height: 360px;
	position: relative;
	overflow: hidden;
	padding-left: 75px;
}

.big_banner .img{
	position: absolute;
	z-index: 1;
	right: 0;
	top: 0;
	height: 100%;
	width: auto;
}

.big_banner .img img{
	height: 100%;
}

.big_banner_content{
	display: flex;
	flex-direction: column;
	gap: 36px;
	justify-content: center;
	height: 100%;
	position: relative;
	z-index: 2;
}

.big_banner_content p{
	color: #FFF;
	font-family: "Days One";
	font-size: 24px;
	font-weight: 400;
	line-height: 155%;
}

.big_banner_content p:first-child{
	margin-bottom: 16px;
}

.big_banner_content p.banner_title{
	-webkit-text-stroke-width: 3px;
	-webkit-text-stroke-color: #000;
	font-family: "Days One";
	font-size: 40px;
	font-weight: 400;
	line-height: 51px;
	background: linear-gradient(0deg, #E69D0A 21.95%, #FDD13B 76.83%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.big_banner a{
	width: fit-content;
	color: #040D0C;
	font-family: Arial;
	font-size: 14px;
	font-weight: 700;
	line-height: 16px;
	text-transform: uppercase;
}

.banner_mobile{
	display: none;
}

.lenta{
	border-radius: 6px;
	border: 1px solid rgba(213, 213, 213, 0.50);
	background: #293433;
	margin: 16px 0;
	overflow-x: scroll;
}

.lenta::-webkit-scrollbar{
    height: 5px;
    background-color: rgba(255,255,255,0);
    border-radius: 5px;
    width: 100%;
    z-index: 104;
}

.lenta::-webkit-scrollbar-thumb{
    background: #2B311B;
    border-radius: 5px;
    z-index: 105;
}

.lenta ul{
	list-style: none;
	display: flex;
	justify-content: center;
	padding: 10px;
	width: 100%;
	min-width: 890px;
	box-sizing: border-box;
}

.lenta li{
	width: 16.6%;
	position: relative;
}

.lenta li:not(:last-child):after{
	content: '';
	position: absolute;
	right: 0;
	top: -2px;
	width: 1px;
	height: 24px;
	background: rgba(213, 213, 213, 0.20);
}

.lenta a{
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	color: #C2E6DC;
	font-size: 15px;
	font-weight: 500;
	line-height: 18px;
	text-decoration: none;
}

.lenta a img{
	width: 20px;
	height: 20px;
	object-fit: contain;
	flex: 0 0 auto;
}

.title_a{
	margin: 32px 0 24px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.title_a p{
	color: #FFF;
	font-family: "Days One";
	font-size: 16px;
	font-weight: 400;
	line-height: 20px;
	text-transform: uppercase;
}

.title_a a{
	color: #C2E6DC;
	font-size: 14px;
	font-style: italic;
	font-weight: 300;
	line-height: 17px;
}

.banners{
	display: flex;
	gap: 8px;
	justify-content: center;
	flex-wrap: wrap;
}

.banner{
	width: calc(16.66% - 7px);
	position: relative;
	border-radius: 12px;
	border: 1px solid rgba(213, 213, 213, 0.20);
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 1 / 1;
}

.banner img{
	min-width: 100%;
	min-height: 100%;
	object-fit: cover;
}

.banner span{
	position: absolute;
	left: 0;
	top: 0;
	padding: 10px 8px;
	background: #e91245;
	color: #fff;
	font-family: "Days One";
	font-size: 14px;
	font-weight: 400;
	line-height: 18px;
	border-bottom-right-radius: 12px;
}

.top_wins{
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
}

.top_wins .column{
	width: calc(33.33% - 11px);
}

.top_wins .column_title{
	color: #19F951;
	text-align: center;
	font-size: 16px;
	font-weight: 500;
	line-height: 19px;
	margin-bottom: 16px;
}

.top_wins .item{
	display: flex;
	padding: 8px;
	width: 100%;
	align-items: center;
	justify-content: space-between;
	border-radius: 80px;
	background: #293433;
	margin-bottom: 8px;
}

.top_wins .image_text{
	display: flex;
	align-items: center;
	gap: 12px;
}

.top_wins .image_text .img{
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 30px;
	overflow: hidden;
}

.top_wins .image_text .img img{
	min-width: 100%;
	min-height: 100%;
	object-fit: cover;
}

.top_wins .txt p:first-child{
	color: #BFBFBF;
	font-size: 14px;
	font-weight: 500;
	line-height: 17px;
	margin-bottom: 4px;
}

.top_wins .txt p:last-child{
	color: #FFF;
	font-size: 16px;
	font-weight: 500;
	line-height: 19px;
}

.top_wins .cifri{
	display: flex;
	align-items: center;
	gap: 8px;
}

.top_wins .cifri p{
	font-size: 16px;
	font-weight: 600;
	line-height: 19px;
}

.top_wins .cifri p:first-child{
	color: #9B9A9A;
}

.top_wins .cifri p:last-child{
	color: #FFED78;
}

.container + .big_banner{
	margin-top: 40px;
}

.container + .big_banner .img{
	inset: 0;
	width: 100%;
	height: 100%;
}

.container + .big_banner .img img{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.banners_section > .big_banner:first-child .big_banner_content{
	isolation: isolate;
}

.banners_section > .big_banner:first-child .big_banner_content::before{
	content: "";
	position: absolute;
	inset: 0 auto 0 -75px;
	width: min(40%, 405px);
	z-index: -1;
	background: url('../images/kubok.webp') left center / cover no-repeat;
	mix-blend-mode: screen;
	opacity: 0.72;
	pointer-events: none;
}

.banners_section > .big_banner .big_banner_text{
	position: relative;
	isolation: isolate;
	width: fit-content;
	padding: 20px 30px 24px;
}

.banners_section > .big_banner .big_banner_text::before{
	content: "";
	position: absolute;
	inset: -22px -46px;
	z-index: -1;
	background: radial-gradient(
		ellipse at center,
		rgba(0, 0, 0, 0.9) 0%,
		rgba(0, 0, 0, 0.72) 48%,
		rgba(0, 0, 0, 0.38) 66%,
		transparent 82%
	);
	filter: blur(10px);
	pointer-events: none;
}

.banners_section > .big_banner .big_banner_text p:not(.banner_title){
	color: #fff;
	text-shadow: 0 2px 5px rgba(0, 0, 0, 0.95);
}

.banners_section > .big_banner .big_banner_text .banner_title{
	color: #ff313c;
	font-weight: 600;
	background: none;
	-webkit-background-clip: border-box;
	background-clip: border-box;
	-webkit-text-fill-color: currentColor;
	-webkit-text-stroke: 1px #580006;
	text-shadow:
		0 2px 0 #740008,
		0 0 14px rgba(255, 34, 47, 0.55);
}


footer{
	--footer-surface: #050c0b;
	--footer-accent: #FFDF81;
	--footer-text: #C2E6DC;
	position: relative;
	isolation: isolate;
	background:
		radial-gradient(ellipse at top center, rgba(23, 85, 68, 0.28), transparent 58%),
		linear-gradient(180deg, #091f1d 0, #071613 80px, var(--footer-surface) 190px);
	border-top: 1px solid rgba(194, 230, 220, 0.14);
	display: flex;
}

footer::before{
	content: "";
	position: absolute;
	inset: -1px 0 auto;
	height: 2px;
	background: linear-gradient(90deg, transparent 5%, rgba(255, 223, 129, 0.62) 50%, transparent 95%);
	pointer-events: none;
}

footer .right{
	width: 100%;
	margin: 0 auto;
	background: transparent;
	padding: 44px 0 48px;
}

footer .title_footer{
	display: flex;
	align-items: center;
	gap: 16px;
	color: var(--footer-accent);
	font-family: "Days One", Arial, sans-serif;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.4;
	margin-bottom: 20px;
}

footer .title_footer::after{
	content: "";
	flex: 1;
	height: 1px;
	background: linear-gradient(90deg, rgba(255, 223, 129, 0.34), rgba(194, 230, 220, 0.08));
}

.menu_footer{
	display: flex;
	align-items: flex-start;
	gap: clamp(24px, 4vw, 64px);
	justify-content: space-between;
	margin-bottom: 44px;
}

.menu_footer ul{
	flex: 1 1 160px;
	list-style: none;
}

.menu_footer a{
	display: inline-flex;
	margin-bottom: 8px;
	color: var(--footer-text);
	font-size: 14px;
	font-weight: 400;
	line-height: 28px;
	text-decoration: none;
	transition: color 0.2s ease;
}

.menu_footer a:hover{
	color: var(--footer-accent);
}

.menu_footer a:focus-visible,
.icons_footer a:focus-visible{
	outline: 2px solid var(--footer-accent);
	outline-offset: 4px;
}

.footer_oplata{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: clamp(18px, 2.2vw, 32px);
	margin-bottom: 44px;
}

.rows_footer{
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.rows_footer .row{
	width: auto;
	min-width: 0;
	padding: 20px;
	border: 1px solid rgba(194, 230, 220, 0.12);
	border-radius: 16px;
	background: linear-gradient(145deg, rgba(15, 55, 51, 0.58), rgba(5, 12, 11, 0.34));
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.rows_footer img{
	height: 44px;
	width: auto;
	filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.28));
}

.icons_footer, .footer_oplata{
	display: flex;
}

.icons_footer{
	align-items: center;
	flex-wrap: wrap;
	gap: 16px;
}

.footer_oplata img{
	height: 40px;
	filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.24));
}

.content_section{
	padding: 40px 0 60px;
}

.content_section h1, .content_section h2, .content_section h3{
	color: #fff;
	margin-bottom: 24px;
	color: #FFF;
	font-family: "Days One";
}

.content_section h1{
	font-size: 32px;
	font-weight: 400;
	line-height: 41px;
}

.content_section h2{
	margin-top: 40px;
	font-size: 24px;
	font-weight: 400;
	line-height: 31px;
}

.content_section p, .content_section ol, .content_section ul{
	color: #C2E6DC;
	font-family: Arial;
	font-size: 16px;
	font-weight: 400;
	line-height: 150%;
	margin: 24px 0;
}

.content_section ol, .content_section ul{
	margin-left: 20px;
}

.content_section h4{
	color: #C2E6DC;
	font-family: Arial;
	font-size: 16px;
	font-weight: 700;
	line-height: 150%;
}

.content_section h4 + p{
	margin-top: 8px;
	margin-bottom: 16px;
}

.content_section > .container > img{
	display: block;
	width: 100%;
	height: auto;
	margin: 24px 0;
}

.content_section figure{
	overflow-x: auto;
}

.content_section figure table{
	width: 100%;
	border-collapse: collapse;
}

.content_section figure table td, .content_section figure table th{
	padding: 10px 16px;
	font-size: 16px;
	line-height: 150%;
	font-family: Arial;
}

.content_section figure table td{
	color: #F7F7F7;
	border: 1px solid rgba(213, 213, 213, 0.20);
	background: #0F3733;
}

.content_section figure table th{
	color: #fff;
	font-weight: 700;
	text-align: left;
	border: 1px solid rgba(213, 213, 213, 0.20);
	background: #175544;
}

.content_section figure table thead{
	border: none;
}
