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

ol[class],
ul[class] {
	padding: 0;
	list-style: none
}

blockquote,
body,
dd,
dl,
figcaption,
figure,
h1,
h2,
h3,
h4,
li,
ol[class],
p,
ul[class] {
	margin: 0
}

body {
	min-height: 100vh;
	scroll-behavior: smooth;
	text-rendering: optimizeSpeed;
}

a:not([class]) {
	-webkit-text-decoration-skip: ink;
	text-decoration-skip-ink: auto
}

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

article>*+* {
	margin-top: 1em
}

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

@media (prefers-reduced-motion:reduce) {
	* {
		-webkit-animation-duration: 0s !important;
		animation-duration: 0s !important;
		-webkit-animation-iteration-count: 1 !important;
		animation-iteration-count: 1 !important;
		-webkit-transition-duration: 0s !important;
		-o-transition-duration: 0s !important;
		transition-duration: 0s !important;
		scroll-behavior: auto !important
	}
}

a {
	color: var(--accent);
	text-decoration: none;
	-webkit-transition: 0.2s ease-in-out;
	-o-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
}

img {
	-webkit-user-drag: none;
	-khtml-user-drag: none;
	-moz-user-drag: none;
	-o-user-drag: none;
}

:root {
	--bgColor: #fff;
	--fontColor: #fff;
	--accent: #f00;
	--accentHover: #c70101;
}

html {
	font-size: 10px;
	background-color: var(--bgColor);
	font-family: 'Gilroy', sans-serif;
	color: var(--fontColor);
	overflow-x: hidden;
}

.wrapper {
	--max-width: 1300px;
	--padding-side: 16px;

	width: min(var(--max-width), 100% - (var(--padding-side) * 2));
	margin-inline: auto;
}

@media (hover: hover) {
	:is(a, button):hover {
		color: var(--accentHover);
	}

	input:is(:hover, :focus) {
		color: var(--accentHover);
	}
}

.main_first,
.main_second {
	background-color: var(--bgColor);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	min-height: 100vh;
	width: 100%;
	position: relative;
	overflow: hidden;
	-webkit-transition: opacity 0.4s ease-out, -webkit-transform 0.4s ease-out;
	transition: opacity 0.4s ease-out, -webkit-transform 0.4s ease-out;
	-o-transition: opacity 0.4s ease-out, transform 0.4s ease-out;
	transition: opacity 0.4s ease-out, transform 0.4s ease-out;
	transition: opacity 0.4s ease-out, transform 0.4s ease-out, -webkit-transform 0.4s ease-out;

	background-image: url('../img/background.png');
}

.main_first.screen-exit {
	opacity: 0;
	-webkit-transform: translateX(-50px);
	-ms-transform: translateX(-50px);
	transform: translateX(-50px);
	pointer-events: none;
}


.main_first_inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 89px 0;
	position: relative;
	z-index: 5;
}

.zevs-image,
.sweet-pers-image,
.sobaka-image,
.konfeta-snejunka-image,
.sneg-image {
	position: absolute;
	object-fit: fill;
}

.zevs-image {
	width: 1200px;
	height: 1050px;
	left: -30px;
	bottom: -30px;
	z-index: 1;
	animation: float-idle 3.5s ease-in-out infinite;
}

.sweet-pers-image {
	width: 1160px;
	height: calc(100% + 40px);
	bottom: -40px;
	right: -40px;
	z-index: 1;
	animation: float-idle 3.5s ease-in-out infinite;
	animation-delay: .5s;
}

.sobaka-image {
	width: 600px;
	height: 690px;
	right: 330px;
	bottom: 100px;
	z-index: 2;
	animation: float-idle 3.5s ease-in-out infinite;
	animation-delay: 1s;
}

.konfeta-snejunka-image {
	width: 880px;
	height: 500px;
	bottom: -20px;
	right: -20px;
	z-index: 3;
}

.sneg-image {
	width: 100%;
	height: 430px;
	right: 0;
	bottom: 0;
	z-index: 2;
}

.main_content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.main_content_header {
	display: flex;
	align-items: center;
	position: relative;
}

.main_content_logo {
	width: 350px;
	height: 180px;
	position: absolute;
	left: -23vw;
	top: 0;
}

.main_content_logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.main_content_title {
	font-size: 180px;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: -4px;
	/* text-shadow: 0 16px 36px rgba(0, 0, 0, 0.75); */
	font-family: 'DrukCyr', sans-serif;
	position: relative;
	z-index: 2;
}

.main_content_title::before {
	content: 'Bonusunu hemen al!';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-shadow: 0 16px 36px rgba(0, 0, 0, 0.75);
	color: transparent;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.main_content_title_text {
	position: relative;
	z-index: 2;
	background: linear-gradient(43.45deg, #FF6E00 14.63%, #FF7900 49.58%, #FF8400 56.24%, #FFC800 85.37%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

:root {
	--sector-angle: 36deg;
	--wheel-offset: 18deg;
	--wheel-text-padding: 6%
}

@media screen and (min-width:640px) {
	:root {
		--wheel-text-padding: 10%
	}
}


.wheel-wrapper {
	position: relative;
	display: flex;
	justify-content: center;
	width: 830px;
	height: 830px;
}

.wheel-wrapper__inner {
	position: relative;
	aspect-ratio: 1 / 1;
	width: 100%;
	max-width: 830px;
}

.main_content_button,
.main_second_content_button_button {
	box-shadow: 0px 10px 20px 0px #000000BF;
	background: linear-gradient(43.45deg, #FF6E00 14.63%, #FF7900 49.58%, #FF8400 56.24%, #FFC800 85.37%);
	color: #22151E;
	animation: heartbeat 1.7s ease-in-out infinite;
	display: block;
	cursor: pointer;
	font-weight: 800;
	border-radius: 16px;
	position: relative;
	border: none;
	text-transform: uppercase;
}

.main_content_button {
	padding: 20px 120px;
	font-size: 46px;
	margin-top: 25px;
}

.main_content_button:disabled {
	opacity: .7;
	cursor: not-allowed;
	animation-play-state: paused;
}

.main_content_button:hover,
.main_second_content_button_button:hover {
	color: #000;
}

.main_content_button::after,
.main_second_content_button_button::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 16px;
	padding: 2px;
	background: linear-gradient(to right, transparent 0%, white 50%, transparent 100%);
	-webkit-mask:
		linear-gradient(#fff 0 0) content-box,
		linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
}

.wheel-frame {
	position: absolute;
	top: 0;
	left: 50%;
	width: 100%;
	height: 101%;
	transform: translate(-50%, 0);
	z-index: 10;
	pointer-events: none;
}

.wheel__text-wrapper {
	aspect-ratio: 1;
	width: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%)
}

.wheel__text-container {
	text-align: center;
	flex-direction: row-reverse;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	display: flex;
	position: absolute;
	top: 50%;
	left: 50%
}

.wheel__text-container:first-child {
	transform: translate(-50%)translateY(-50%)rotate(calc(0deg + var(--wheel-offset)))
}

.wheel__text-container:nth-child(2) {
	transform: translate(-50%)translateY(-50%)rotate(calc(1*var(--sector-angle) + var(--wheel-offset)))
}

.wheel__text-container:nth-child(3) {
	transform: translate(-50%)translateY(-50%)rotate(calc(2*var(--sector-angle) + var(--wheel-offset)))
}

.wheel__text-container:nth-child(4) {
	transform: translate(-50%)translateY(-50%)rotate(calc(3*var(--sector-angle) + var(--wheel-offset)))
}

.wheel__text-container:nth-child(5) {
	transform: translate(-50%)translateY(-50%)rotate(calc(4*var(--sector-angle) + var(--wheel-offset)))
}

.wheel__text-block {
	color: #fff;
	text-align: center;
	text-shadow: 0 2px 2px #00000040;
	-webkit-text-stroke-width: 1px;
	-webkit-text-stroke-color: #383838;
	letter-spacing: -.443px;
	text-transform: uppercase;
	flex: 1;
	font-family: Gilroy, sans-serif;
	font-size: 48px;
	font-style: normal;
	font-weight: 800;
	line-height: 90%;
	transition: all .3s
}

.wheel__text-block.winner {
	/* color: #FF6E00;
	text-shadow: 0 0 10px #FF6E00;
	transform: scale(1.1);
	-webkit-text-stroke-width: 0; */

	color: gold;
	text-shadow: 0 0 20px #ffd700cc, 0 0 30px #ffd70099, 0 0 40px #ffd70066, 0 2px 2px #00000040;
	-webkit-text-stroke-width: 2px;
	-webkit-text-stroke-color: orange;
	transform: scale(1.1)
}

.wheel__text-block p {
	margin: 0;
	padding: 0
}

.wheel__text-container>.wheel__text-block:first-child {
	padding-left: var(--wheel-text-padding)
}

.wheel__text-container>.wheel__text-block:nth-child(2) {
	padding-right: var(--wheel-text-padding)
}

.wheel {
	animation: 2s ease-in-out infinite sway;
	position: absolute;
	top: 23px;
	right: 0;
	bottom: 0;
	left: 24px;
	width: 94%;
	height: 96%;
	aspect-ratio: 1 / 1;
}

@keyframes sway {
	0% {
		transform: rotate(-40deg)
	}

	50% {
		transform: rotate(-30deg)
	}

	to {
		transform: rotate(-40deg)
	}
}

.wheel__img {
	width: 100%;
	max-width: 800px;
	height: 100%;
	object-fit: contain;
}

@keyframes float-idle {
	0% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-9px);
	}

	100% {
		transform: translateY(0);
	}
}

@keyframes heartbeat {

	0%,
	100% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.05);
	}
}

.wheel__spin-first {
	animation: 4s ease-in-out forwards spin-first
}

@keyframes spin-first {
	0% {
		transform: rotate(-40deg)
	}

	70% {
		transform: rotate(1265deg)
	}

	80% {
		transform: rotate(1256deg)
	}

	to {
		transform: rotate(1260deg)
	}
}

@keyframes c-pulse {
	0% {
		transform: scale(1)
	}

	50% {
		transform: scale(1.03)
	}

	to {
		transform: scale(1)
	}
}

.main_second {
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;

	opacity: 0;
	pointer-events: none;
	visibility: hidden;

	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;

}

.main_second.screen-enter {
	opacity: 1;
	pointer-events: all;
	visibility: visible;
	position: relative;
}

.main_second_inner {
	padding: 200px 0;
	display: flex;
	width: 100%;
	height: 100%;
	align-items: center;
	justify-content: center;
}

.main_second_content {
	position: relative;
	z-index: 5;
	flex-grow: 1;
	letter-spacing: -1px;

	backdrop-filter: blur(12px);
	background: rgba(255, 117, 1, 0.1);
	border-radius: 60px;
	overflow: hidden;
	padding: 85px 0;
	width: 100%;
	max-width: 1120px;

	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.main_second_content::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 60px;
	padding: 10px;
	background: linear-gradient(to right, transparent 0%, white 50%, transparent 100%);
	-webkit-mask:
		linear-gradient(#fff 0 0) content-box,
		linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
}



.main_second_content_inner {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-shadow: 0 19px 40px rgba(0, 0, 0, 0.75);
	position: relative;
	z-index: 2;
}

.main_second_content_logo {
	width: 390px;
	height: 195px;
}

.main_second_content_title {
	font-size: 180px;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: -4px;
	/* text-shadow: 0 16px 36px rgba(0, 0, 0, 0.75); */
	font-family: 'DrukCyr', sans-serif;
	position: relative;
	z-index: 2;
	text-shadow: none;
	margin-top: 40px;
}

.main_second_content_title::before {
	content: 'SENSATIONAL!';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-shadow: 0 16px 36px rgba(0, 0, 0, 0.75);
	color: transparent;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.main_second_content_title_text {
	position: relative;
	z-index: 2;
	background: linear-gradient(43.45deg, #FF6E00 14.63%, #FF7900 49.58%, #FF8400 56.24%, #FFC800 85.37%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.main_second_content_description {
	margin-top: 10px;
}

.main_second_content_description,
.main_second_content_description-sub,
.main_second_content_button_button {
	font-size: 50px;
}

.main_second_content_description {
	text-transform: uppercase;
	font-weight: 700;
}

.main_second_content_description-sub {
	font-weight: 500;
}

.main_second_content_button {
	margin-top: 40px;
	position: relative;
}

.main_second_content_button_button {
	padding: 20px 0;
	margin-top: 25px;
	text-shadow: none;

	width: 100%;
	max-width: 570px;
	text-align: center;
}

.main_second_content_button_button:hover {
	color: #000;
}

@media screen and (max-width: 1920px) {

	.zevs-image {
		width: 930px;
		height: 850px;
	}

	.sweet-pers-image {
		width: 880px;
	}

	.sobaka-image {
		width: 450px;
		height: 520px;
		right: 250px;
		bottom: 70px;
	}

	.konfeta-snejunka-image {
		width: 660px;
		height: 380px;
	}

	.sneg-image {
		height: 320px;
	}

	.main_first_inner {
		padding: 80px 0;
	}

	.main_content_logo {
		width: 266px;
		height: 135px;
	}

	.main_content_title {
		font-size: 136px;
	}

	.wheel-wrapper {
		width: 630px;
		height: 630px;
	}

	.wheel-wrapper__inner,
	.wheel__img {
		max-width: 630px;
	}

	.wheel__text-block {
		font-size: 36px;
	}

	.wheel {
		top: 9px;
	}





	.main_second_inner {
		padding: 170px 0;
	}

	.main_second_content {
		max-width: 840px;
		padding: 60px 0;
		border-radius: 46px;
	}

	.main_second_content::before {
		padding: 8px;
		border-radius: 46px;
	}

	.main_second_content_logo {
		width: 290px;
		height: 150px;
	}

	.main_second_content_title {
		font-size: 150px;
	}

	.main_second_content_description,
	.main_second_content_description-sub,
	.main_second_content_button_button {
		font-size: 38px;
	}

	.main_second_content_button_button {
		max-width: 430px;
		padding: 15px 0;
	}

	.wheel-frame{
		top: -14px;
		left: calc(50% + 5px);
	}
}

@media screen and (max-width: 1200px) {

	.main_first .zevs-image {
		width: 735px;
		height: 800px;
	}

	.main_first .sweet-pers-image {
		width: 640px;
	}

	.main_first .sobaka-image {
		width: 305px;
		height: 350px;
		right: 105px;
		bottom: 60px;
	}

	.main_first .konfeta-snejunka-image {
		width: 410px;
		height: 245px;
		bottom: 0;
		right: 0;
	}

	.main_first .sneg-image {
		height: 200px;
	}

	.main_first_inner {
		padding: 60px 0;
	}

	.main_content_header {
		flex-direction: column;
	}

	.main_content_logo {
		position: static;
		width: 165px;
		height: 85px;
	}

	.main_content_title {
		font-size: 86px;
		letter-spacing: normal;
	}

	.main_content_button {
		font-size: 28px;
		padding: 10px 65px;
		border-radius: 10px;
	}

	.wheel-wrapper {
		width: 480px;
		height: 480px;
	}

	.wheel-wrapper__inner,
	.wheel__img {
		max-width: 480px;
	}

	.wheel__text-block {
		font-size: 28px;
	}

	.wheel {
		left: 18px;
	}



	.main_second .zevs-image {
		width: 700px;
		height: 780px;
	}

	.main_second .sweet-pers-image {
		width: 660px;
	}

	.main_second .sobaka-image {
		width: 280px;
		height: 320px;
		right: 160px;
		bottom: 10px;
	}

	.main_second .konfeta-snejunka-image {
		display: none;
	}

	.main_second .sneg-image {
		height: 200px;
	}

	.main_second_inner {
		padding: 130px 0;
	}

	.main_second_content {
		max-width: 575px;
		padding: 50px 0;
		border-radius: 38px;
	}

	.main_second_content::before {
		padding: 6px;
		border-radius: 38px;
	}

	.main_second_content_logo {
		width: 240px;
		height: 120px;
	}

	.main_second_content_title {
		font-size: 124px;
	}

	.main_second_content_description,
	.main_second_content_description-sub,
	.main_second_content_button_button {
		font-size: 32px;
	}

	.main_second_content_button_button {
		max-width: 350px;
		padding: 15px 0;
		border-radius: 12px;
	}

	.wheel-frame{
		top: -5px;
		left: calc(50% + 0px);
	}
}

@media screen and (max-width: 1024px) {

	.main_first .zevs-image {
		width: 625px;
		height: 685px;
	}

	.main_first .sweet-pers-image {
		width: 545px;
	}

	.main_first .sobaka-image {
		width: 260px;
		height: 300px;
		right: 90px;
		bottom: 60px;
	}

	.main_first .konfeta-snejunka-image {
		width: 350px;
		height: 210px;
	}

	.main_first .sneg-image {
		height: 172px;
	}

	.main_first_inner {
		padding: 40px 0;
	}

	.main_content_logo {
		width: 160px;
		height: 80px;
	}

	.main_content_title {
		font-size: 74px;
	}

	.main_content_button {
		font-size: 24px;
		padding: 10px 55px;
		border-radius: 8px;
	}

	.wheel-wrapper {
		width: 410px;
		height: 410px;
	}

	.wheel-wrapper__inner,
	.wheel__img {
		max-width: 410px;
	}

	.wheel__text-block {
		font-size: 24px;
	}

	.wheel {
		left: 15px;
	}


	.main_second .zevs-image {
		width: 600px;
		height: 665px;
	}

	.main_second .sweet-pers-image {
		width: 565px;
	}

	.main_second .sobaka-image {
		width: 240px;
		height: 275px;
		right: 140px;
		bottom: 10px;
	}

	.main_second .sneg-image {
		height: 170px;
	}

	.main_second_inner {
		padding: 110px 0;
	}

	.main_second_content {
		max-width: 490px;
		padding: 40px 0;
		border-radius: 32px;
	}

	.main_second_content::before {
		padding: 6px;
		border-radius: 32px;
	}

	.main_second_content_logo {
		width: 205px;
		height: 105px;
	}

	.main_second_content_title {
		font-size: 106px;
		letter-spacing: normal;
	}

	.main_second_content_description,
	.main_second_content_description-sub,
	.main_second_content_button_button {
		font-size: 28px;
	}

	.main_second_content_button_button {
		max-width: 300px;
		padding: 10px 0;
		border-radius: 10px;
	}
}

@media screen and (max-width: 490px) {

	.main_first_inner {
		padding: 40px 0;
	}

	.main_content_logo {
		width: 205px;
		height: 22px;
	}

	.main_content_title {
		font-size: 64px;
		margin: 20px 0;
	}

	.main_content_button {
		font-size: 24px;
		padding: 10px 55px;
		border-radius: 8px;
	}

	.main_first {
		background-image: url('../img/background-first-414.png');
	}

	.main_second {
		background-image: url('../img/background-second-414.png');
	}

	.zevs-image {
		display: none;
	}

	.sweet-pers-image {
		display: none;
	}

	.sobaka-image {
		display: none;
	}

	.sneg-image {
		display: none;
	}

	.main_first .konfeta-snejunka-image {
		display: none;
	}

	.main_second_inner {
		padding: 90px 12px;
	}

	.main_second_content {
		max-width: 100%;
		padding: 65px 0;
		border-radius: 26px;
	}

	.main_second_content::before {
		padding: 4px;
		border-radius: 26px;
	}

	.main_second_content_logo {
		width: 162px;
		height: 82px;
	}

	.main_second_content_title {
		font-size: 84px;
		margin-top: 15px;
	}

	.main_second_content_description,
	.main_second_content_description-sub,
	.main_second_content_button_button {
		font-size: 22px;
	}

	.main_second_content_button_button {
		max-width: 80%;
		padding: 10px 0;
		border-radius: 10px;
	}
}

@media screen and (max-width: 390px) {


	.main_first_inner {
		padding: 35px 0;
	}

	.main_content_logo {
		width: 160px;
		height: 17px;
	}

	.main_content_title {
		font-size: 50px;
		margin: 12px 0;
	}

	.main_content_button {
		font-size: 18px;
		padding: 7px 42px;
		border-radius: 6px;
	}

	.wheel-wrapper {
		width: 316px;
		height: 316px;
	}

	.wheel-wrapper__inner,
	.wheel__img {
		max-width: 316px;
	}

	.wheel__text-block {
		font-size: 18px;
	}

	.wheel {
		left: 12px;
	}

	.main_first {
		background-image: url('../img/background-first-320.png');
	}

	.main_second {
		background-image: url('../img/background-second-320.png');
	}

	.main_second_content {
		max-width: 100%;
		padding: 40px 0;
		border-radius: 20px;
	}

	.main_second_content::before {
		padding: 3px;
		border-radius: 20px;
	}

	.main_second_content_logo {
		width: 124px;
		height: 64px;
	}

	.main_second_content_title {
		font-size: 66px;
	}

	.main_second_content_description,
	.main_second_content_description-sub,
	.main_second_content_button_button {
		font-size: 18px;
	}

	.main_second_content_button_button {
		max-width: 90%;
		padding: 8px 0;
		border-radius: 10px;
		font-size: 22px;
	}

	.wheel-frame{
		top: 0;
	}
}