* {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}
@font-face {
	font-family: 'Thoth Legacy';
	src: url('../fonts/ThothLegacy-Regular.woff2') format('woff2'),
			 url('../fonts/ThothLegacy-Regular.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}


body {
	background: #0d1d99 url(../img/bg.jpg) center top/cover no-repeat;
	position: relative;
	min-height: 100vh;
	color: #fff;
	font-family: "Red Hat Display", sans-serif;
}
.wrapper {
	position: relative;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 40px 15px 0;
}
.wrapper::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 50%;
	background: linear-gradient(180deg, rgba(12, 28, 152, 0) 0%, #0C1C98 32%, #0C1C98 100%);
	z-index: 1;
}
.diamond {
	width: 25%;
	position: absolute;
	top: 0;
	left: 0;
}
.zeus {
	width: 45%;
	position: absolute;
	top: 0;
	right: 0;
}
.info {
	width: 100%;
	max-width: 1120px;
	border-radius: 40px 40px 0 0;
	background: linear-gradient(180deg, #0C1C98 0%, rgba(49, 97, 203, 0.5) 75%, rgba(12, 28, 152, 0) 100%);
	/* border: 2px solid #305EC9; */
	border: 2px solid;
	border-image-source: linear-gradient(180deg, #3161CB 0%, rgba(49, 97, 203, 0) 100%);
	border-bottom: none;
	backdrop-filter: blur(8px);
	padding: 30px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin-top: 100px;
	position: relative;
	z-index: 2;
}
.welcome,
.price,
.spins {
	font-family: 'Thoth Legacy';
	font-weight: 400;
	line-height: 100%;
	letter-spacing: -0.04em;
}
.welcome {
	font-size: 32px;
	margin: 60px 0 30px;
}
.price {
	font-size: 160px;
	margin: 0;
}
.price span {
	font-size: 72px;
	margin-right: 32px;
}
.spins {
	font-size: 64px;
	margin-bottom: 40px;
}
.btn {
	background: linear-gradient(86.33deg, #FC531B -1.16%, #FE6E1D 56.61%, #E31B07 100.19%);
	box-shadow: 0px 2px 16px 0px #CD1D0080;
	color: #fff;
	border-radius: 14px;
	font-size: 20px;
	font-weight: 800;
	width: 247px;
	height: 56px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	margin-bottom: 15px;
}
.terms {
	font-weight: 500;
	font-size: 16px;
	color: #fff;
	text-decoration: none;
	opacity: 0.6;
}
.steps {
	display: flex;
	justify-content: space-around;
	align-items: center;
	margin-top: 30px;
	width: 100%;
	max-width: 850px;
}
.step {
	display: flex;
	align-items: center;
	font-weight: 700;
	font-size: 18px;
	position: relative;
}
.step::after {
	content: '';
	position: absolute;
	left: calc(100% + 20px);
	top: 20px;
	width: 121px;
	height: 2px;
	background: url(../img/line.png) center/cover no-repeat;
}
.step:last-child:after {
	display: none;
}
.step span {
	width: 40px;
	height: 40px;
	background: #FE932B;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	font-weight: 700;
	font-size: 18px;
	margin-right: 8px;
}

.soft {
	width: 100%;
	max-width: 1120px;
	position: relative;
	z-index: 2;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	margin: 80px auto 0;
}
.soft::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	max-width: 800px;
	height: 1px;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 50%, rgba(255, 255, 255, 0) 100%);
	z-index: 2;
	opacity: 0.5;
}
.soft img {
	margin: 0 12px 20px;
	opacity: 0.5;
}

.pay {
	width: 100%;
	max-width: 1120px;
	position: relative;
	z-index: 2;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	margin: 20px auto 0;
}
.pay::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	max-width: 800px;
	height: 1px;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 50%, rgba(255, 255, 255, 0) 100%);
	z-index: 2;
	opacity: 0.5;
}
.pay img {
	margin: 0 12px 20px;
	opacity: 0.5;
}

.copyright {
	color: #fff;
	font-size: 20px;
	position: relative;
	z-index: 2;
	padding: 20px 15px;
}

@media(max-width: 1000px) {
	.diamond {
		width: 20%;
		top: 30px;
		left: -40px;
	}
	.zeus {
		width: 30%;
	}
	.info {
		padding: 25px;
		margin-top: 60px;
	}
	.welcome {
		font-size: 24px;
	}
	.price {
		font-size: 120px;
	}
	.spins {
		font-size: 50px;
	}
	.soft {
		margin-top: 40px;
	}
	.step::after {
		width: 70px;
	}
	.wrapper::before {
		height: 65%;
	}
}

@media(max-width: 768px) {
	.diamond {
		width: 30%;
		top: 70px;
		left: -20px;
	}
	.zeus {
		width: 45%;
		top: 70px;
	}
	.info {
		padding: 25px;
		margin-top: 60px;
	}
	.welcome {
		font-size: 15px;
		margin: 15px 0 15px;
	}
	.price {
		font-size: 54px;
	}
	.price span {
		font-size: 24px;
		margin-right: 10px;
	}
	.spins {
		font-size: 22px;
		margin-bottom: 24px;
	}
	.soft {
		margin-top: 40px;
	}
	.step::after {
		width: 40px;
	}
	.wrapper::before {
		height: 80%;
	}
}

@media(max-width: 675px) {
	.step::after {
		display: none;
	}
}
@media(max-width: 525px) {
	.steps {
		flex-direction: column;
	}
	.step {
		margin-bottom: 25px;
	}
	.step::after {
		display: block;
		width: 20px;
		left: 50%;
		top: 80%;
		transform: rotate(90deg) translateX(100%);
	}
	.copyright {
		font-size: 16px;
		text-align: center;
	}
}