.screen-intro {
	background: linear-gradient(135deg, #DC2626 0%, #EF4444 50%, #F87171 100%);
	display: flex;
	flex-direction: column;
	color: var(--theme-white);
	position: relative;
	overflow: hidden;
	min-height: auto;
	max-height: 100vh;
}
.screen-intro::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: 
		radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
		radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
	pointer-events: none;
	z-index: 0;
}
.intro {
	flex-grow: 0;
	display: flex;
	flex-direction: column;
	position: relative;
	z-index: 1;
	min-height: auto;
	padding: 40px 0;
}
.intro-img {
	flex-grow: 0;
	flex-shrink: 0;
	height: 200px;
	background-image: none;
	background-size: 74% auto;
	background-repeat: no-repeat;
	background-position: center bottom;
	position: relative;
	display: block;
	text-decoration: none;
	cursor: pointer;
}
.intro-img::after {
	content: "💰";
	position: absolute;
	font-size: 140px;
	opacity: 0.35;
	bottom: 10%;
	left: 10%;
	animation: float 6s ease-in-out infinite;
}
.intro-img::before {
	content: "🎁";
	position: absolute;
	font-size: 120px;
	opacity: 0.35;
	bottom: 15%;
	right: 15%;
	animation: float 8s ease-in-out infinite reverse;
}
@keyframes float {
	0%, 100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-20px);
	}
}
@keyframes floatCoin1 {
	0%, 100% {
		transform: translate(0, 0) rotate(0deg);
	}
	25% {
		transform: translate(15px, -30px) rotate(90deg);
	}
	50% {
		transform: translate(-10px, -50px) rotate(180deg);
	}
	75% {
		transform: translate(-20px, -30px) rotate(270deg);
	}
}
@keyframes floatCoin2 {
	0%, 100% {
		transform: translate(0, 0) rotate(0deg);
	}
	33% {
		transform: translate(-20px, -40px) rotate(120deg);
	}
	66% {
		transform: translate(20px, -60px) rotate(240deg);
	}
}
@keyframes floatCoin3 {
	0%, 100% {
		transform: translate(0, 0) rotate(0deg);
	}
	50% {
		transform: translate(25px, -35px) rotate(180deg);
	}
}
@keyframes floatCoin4 {
	0%, 100% {
		transform: translate(0, 0) rotate(0deg);
	}
	40% {
		transform: translate(-15px, -45px) rotate(144deg);
	}
	80% {
		transform: translate(15px, -25px) rotate(288deg);
	}
}
.coin-float {
	position: absolute;
	font-size: 50px;
	opacity: 0.45;
	pointer-events: none;
	z-index: 0;
}
.gift-float {
	position: absolute;
	font-size: 55px;
	opacity: 0.4;
	pointer-events: none;
	z-index: 0;
}
.emoji-float {
	position: absolute;
	font-size: 45px;
	opacity: 0.5;
	pointer-events: none;
	z-index: 0;
	animation: floatEmoji 8s ease-in-out infinite;
}
@keyframes floatEmoji {
	0%, 100% {
		transform: translateY(0px) rotate(0deg);
	}
	25% {
		transform: translateY(-15px) rotate(5deg);
	}
	50% {
		transform: translateY(-25px) rotate(0deg);
	}
	75% {
		transform: translateY(-15px) rotate(-5deg);
	}
}
.intro > .emoji-float:nth-of-type(1) {
	top: 10%;
	left: 5%;
	animation-delay: 0s;
	animation-duration: 10s;
}
.intro > .emoji-float:nth-of-type(2) {
	top: 20%;
	right: 8%;
	animation-delay: 0.5s;
	animation-duration: 12s;
}
.intro > .emoji-float:nth-of-type(3) {
	top: 35%;
	left: 10%;
	animation-delay: 1s;
	animation-duration: 9s;
}
.intro > .emoji-float:nth-of-type(4) {
	top: 50%;
	right: 12%;
	animation-delay: 1.5s;
	animation-duration: 11s;
}
.intro > .emoji-float:nth-of-type(5) {
	top: 15%;
	left: 45%;
	animation-delay: 2s;
	animation-duration: 13s;
}
.intro > .emoji-float:nth-of-type(6) {
	top: 60%;
	left: 20%;
	animation-delay: 2.5s;
	animation-duration: 10s;
}
.intro > .emoji-float:nth-of-type(7) {
	top: 25%;
	right: 30%;
	animation-delay: 3s;
	animation-duration: 14s;
}
.intro > .emoji-float:nth-of-type(8) {
	top: 70%;
	right: 25%;
	animation-delay: 3.5s;
	animation-duration: 9s;
}
.intro > .emoji-float:nth-of-type(9) {
	top: 5%;
	left: 25%;
	animation-delay: 4s;
	animation-duration: 12s;
}
.intro > .emoji-float:nth-of-type(10) {
	top: 45%;
	left: 3%;
	animation-delay: 4.5s;
	animation-duration: 11s;
}
.intro > .emoji-float:nth-of-type(11) {
	top: 30%;
	right: 2%;
	animation-delay: 5s;
	animation-duration: 10s;
}
.intro > .emoji-float:nth-of-type(12) {
	top: 75%;
	left: 35%;
	animation-delay: 5.5s;
	animation-duration: 13s;
}
.intro > .emoji-float:nth-of-type(13) {
	top: 18%;
	left: 60%;
	animation-delay: 6s;
	animation-duration: 9s;
}
.intro > .emoji-float:nth-of-type(14) {
	top: 55%;
	right: 40%;
	animation-delay: 6.5s;
	animation-duration: 12s;
}
.intro > .emoji-float:nth-of-type(15) {
	top: 40%;
	left: 70%;
	animation-delay: 7s;
	animation-duration: 11s;
}
.intro > .emoji-float:nth-of-type(16) {
	top: 65%;
	right: 15%;
	animation-delay: 7.5s;
	animation-duration: 10s;
}
.intro > .emoji-float:nth-of-type(17) {
	top: 12%;
	right: 50%;
	animation-delay: 8s;
	animation-duration: 13s;
}
.intro > .emoji-float:nth-of-type(18) {
	top: 80%;
	left: 50%;
	animation-delay: 8.5s;
	animation-duration: 9s;
}
.intro > .emoji-float:nth-of-type(19) {
	top: 32%;
	left: 80%;
	animation-delay: 9s;
	animation-duration: 12s;
}
.intro > .emoji-float:nth-of-type(20) {
	top: 85%;
	right: 35%;
	animation-delay: 9.5s;
	animation-duration: 11s;
}
.intro-img::before,
.intro-img::after {
	pointer-events: none;
}
.intro > .coin-float:nth-of-type(1) {
	top: 15%;
	left: 8%;
	animation: floatCoin1 12s ease-in-out infinite;
}
.intro > .coin-float:nth-of-type(2) {
	top: 25%;
	right: 12%;
	animation: floatCoin2 15s ease-in-out infinite;
}
.intro > .coin-float:nth-of-type(3) {
	top: 40%;
	left: 15%;
	animation: floatCoin3 10s ease-in-out infinite;
}
.intro > .coin-float:nth-of-type(4) {
	top: 55%;
	right: 8%;
	animation: floatCoin4 14s ease-in-out infinite;
}
.intro > .coin-float:nth-of-type(5) {
	top: 30%;
	left: 50%;
	animation: floatCoin1 13s ease-in-out infinite reverse;
}
.intro > .coin-float:nth-of-type(6) {
	top: 65%;
	left: 25%;
	animation: floatCoin2 11s ease-in-out infinite;
}
.intro > .coin-float:nth-of-type(7) {
	top: 20%;
	right: 25%;
	animation: floatCoin3 16s ease-in-out infinite reverse;
}
.intro > .coin-float:nth-of-type(8) {
	top: 70%;
	right: 30%;
	animation: floatCoin4 12s ease-in-out infinite;
}
.intro > .coin-float:nth-of-type(9) {
	top: 10%;
	left: 30%;
	animation: floatCoin2 14s ease-in-out infinite;
}
.intro > .coin-float:nth-of-type(10) {
	top: 50%;
	left: 5%;
	animation: floatCoin1 11s ease-in-out infinite reverse;
}
.intro > .coin-float:nth-of-type(11) {
	top: 35%;
	right: 5%;
	animation: floatCoin3 13s ease-in-out infinite;
}
.intro > .coin-float:nth-of-type(12) {
	top: 75%;
	left: 40%;
	animation: floatCoin4 15s ease-in-out infinite reverse;
}
.intro > .gift-float:nth-of-type(1) {
	top: 45%;
	right: 20%;
	animation: float 11s ease-in-out infinite reverse;
}
.intro > .gift-float:nth-of-type(2) {
	top: 60%;
	left: 35%;
	animation: float 8s ease-in-out infinite;
}
.intro > .gift-float:nth-of-type(3) {
	top: 28%;
	right: 35%;
	animation: float 10s ease-in-out infinite reverse;
}
.intro > .gift-float:nth-of-type(4) {
	top: 80%;
	left: 60%;
	animation: float 12s ease-in-out infinite;
}
.intro > .gift-float:nth-of-type(5) {
	top: 18%;
	right: 50%;
	animation: float 7s ease-in-out infinite reverse;
}
.intro-content {
    /* backdrop-filter: blur(34px);
	-webkit-backdrop-filter: blur(34px); */
	position: relative;
}
.intro-content .app-load {
	position: absolute;
	display: none;
	padding: 10px;
	top: 22px;
	right: 5px;
	z-index: 2;
}
.intro-content .app-load svg path {
	transform: 0.3s;
}
.intro-content .app-load:hover svg path {
	stroke: #007bff;
}
.intro-content:after {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	-webkit-backdrop-filter: blur(80px);
	backdrop-filter: blur(80px);
	background: rgba(33,33,33,0.5);
}

.intro-content-img {
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	background-image: url(../images/intro-bottom.png);
	background-size: 74% auto;
	background-repeat: no-repeat;
	background-position: center top;
	z-index: 1;
}
.intro-content .container {
	position: relative;
	z-index: 2;
	text-align: center;
}

.intro-content .container .row {
	flex-direction: column;
}

.intro-icon {
	margin-top: -60px;
	margin-bottom: 1rem;
}
.intro-icon img {
	width: 120px;
    border-radius: 16px;
}

.intro-title {
	margin-bottom: 1rem;
}
.intro-title h3 {
	letter-spacing: -0.7px;
	font-weight: 600;
	margin-bottom: 4px;
}
.intro-title p {
	opacity: 0.5;
	letter-spacing: -0.7px;
}

.intro-button {
	margin-bottom: 1rem;
}
.intro-button .btn{
	width: 315px;
	font-size: 1.2rem;
	line-height: 1;
	font-weight: 700;
	padding: 16px 24px;
	letter-spacing: 2px;
	border-radius: var(--b-rad-md);
}

.intro-stats {
	margin-bottom: 10px;
}
.intro-stats ul {
	margin: 0 auto;
	max-width: 320px;
	display: flex;
	justify-content: center;
	align-items: flex-start;
}
.intro-stats > ul {
	align-items: stretch;
}
.intro-stats > ul > li {
	width: 90px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: relative;
}
.intro-stats > ul > li:nth-child(2):before{
	content: "";
	height: calc(100% - 26px);
	width: 1px;
	background: var(--theme-gray);
	left: -12px;
	top: 13px;
	position: absolute;
	display: block;
}
.intro-stats > ul > li:nth-child(2):after{
	content: "";
	height: calc(100% - 26px);
	width: 1px;
	background: var(--theme-gray);
	right: -12px;
	top: 13px;
	position: absolute;
	display: block;
}
.intro-stats > ul > li:not(:last-child) {
	margin-right: 25px;
}
.stats-rating img{
	width: 14px;
	display: block;
}
.stats-rating li:not(:last-child) {
	margin-right: 2px;
}
.stats-top {
	text-transform: uppercase;
	font-weight: 600;
	font-size: 12px;
	line-height: 1.2;
	opacity: 0.72;
	color: var(--theme-white);
}
.stats-main {
	margin: 7px 0;
	opacity: 0.6;
	font-size: 22px;
	font-weight: 600;
	text-transform: uppercase;
}
.stats-bottom {
	font-size: 12px;
	line-height: 1.2;
	font-weight: 400;
	text-transform: uppercase;
	color: #EBEBF5;
	opacity: 0.6;
}

.btn-down {
	background: transparent;
	display: block;
	padding: 0;
	border-radius: 0;
	margin: 20px auto;
	position: relative;
	z-index: 2;
	transition: 0.3s;
}
.btn-down:hover svg {
	transform: translateY(10px);
}
.btn-down svg , 
.btn-down svg path {
	transition: 0.3s;
}
.btn-down:hover svg path {
	stroke: var(--theme-blue)
}


@media screen and (max-width: 991px) {
	.intro {
		padding: 30px 0;
	}
	.intro-img {
		height: 150px;
		background-image: none;
		background-size: 130% auto;
		background-repeat: no-repeat;
		background-position: center bottom;
	}
	.intro-img::after {
		font-size: 80px;
		bottom: 5%;
		left: 5%;
	}
	.intro-img::before {
		font-size: 70px;
		bottom: 10%;
		right: 10%;
	}
	.intro-content-img {
		background-image: url(../images/intro-bottom-mob.png);
		background-size: 130% auto;
		background-position: center top;
	}
	.coin-float {
		font-size: 35px;
		opacity: 0.35;
	}
	.gift-float {
		font-size: 40px;
		opacity: 0.3;
	}
	.intro-img::after {
		font-size: 100px;
		opacity: 0.3;
	}
	.intro-img::before {
		font-size: 90px;
		opacity: 0.3;
	}
	.btn-down {
		margin: 15px auto;
	}
	.intro-content .app-load {
		display: block;
	}
}