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

html,
body {
	height: 100vh;
	width: 100vw;
	font-family: 'Roboto', sans-serif;
	background: #1a4200;
	overflow: hidden;
}

.body {
	display: flex;
	align-items: center;
	justify-content: center;
}

.background {
	position: fixed;
	inset: 0;
	background: url('./bg.png') center/cover no-repeat;
	filter: blur(18px) saturate(1.1) contrast(1.1);
	z-index: 1;
	animation: bgMove 10s linear infinite;
}

@keyframes bgMove {

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

	50% {
		transform: scale(1.2) translate(-10px, 10px);
	}
}

.phone {
	position: absolute;
	width: min(92vw, 420px);
	aspect-ratio: 600/1154;
	margin: 0 auto;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 3;
}

@keyframes float {

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

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

.big {
	font-size: 2rem;
	color: #adff5e;
	font-weight: 700;
	animation: glow 1s ease-in-out infinite alternate;
}

@keyframes glow {
	0% {
		color: #adff5e;
	}

	50% {
		color: #fff;
	}
}

.phone::before {
	content: "";
	position: absolute;
	inset: 0;
	background: url('./mob1.png') center/contain no-repeat;
	pointer-events: none;
	z-index: 4;
	filter: drop-shadow(0 20px 40px rgba(0, 0, 0, .45));
}

.screen {
	position: absolute;
	z-index: 5;
	left: 7.6%;
	right: 7.6%;
	top: 9.8%;
	bottom: 11.2%;
	border-radius: 7.5%/7.5%;
	overflow: auto;
	background: linear-gradient(180deg, #001a33 0%, #000 100%);
	color: #fff;
	padding: 24px 18px 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;

}

.brand {
	margin-bottom: 1rem;
}

.brand-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 10px;
	animation: spin 8s linear infinite;
}

@keyframes spin {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

.brand h1 {
	font-size: 2.5rem;
	color: #fff;
	font-weight: 700;
}

.brand h1 span {
	color: #ffd700;
}

.trigger {
	font-size: 1.7rem;
	margin-top: 0.6rem;
	color: #ffda45;
	font-weight: 600;
	text-shadow: 0 0 10px rgba(255, 215, 0, .4);
}

.timer-box {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: rgba(255, 255, 255, .08);
	border: 1px solid rgba(255, 215, 0, .35);
	border-radius: 10px;
	color: #ffd700;
	padding: 12px 14px;
	font-size: 1.1rem;
	margin: 1rem 0;
	font-weight: 700;
}

.cta {
	display: block;
	width: 100%;
	text-align: center;
	background: linear-gradient(180deg, #ffd700, #b8860b);
	color: #000;
	padding: 24px 0;
	border-radius: 12px;
	font-weight: 900;
	text-transform: uppercase;
	text-decoration: none;
	box-shadow: 0 0 25px rgba(255, 215, 0, .4);
	font-size: 2rem;
	transition: transform .2s, box-shadow .2s;
	margin-bottom: 24px;
}

.cta:hover {
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 0 40px rgba(255, 215, 0, .8);
}

.cta:active {
	transform: scale(.97);
}

footer {
	text-align: center;
	font-size: 0.8rem;
	color: #bbb;
	line-height: 1.4;
}