/* ==========================================
   TRENDFOLD PREMIUM GLASS STYLE
   FINAL VERSION
========================================== */

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
}

html {
	scroll-behavior: smooth;
}

:root {

	--primary: #5d6cff;
	--secondary: #8f6fff;

	--dark: #18264b;
	--text: #6f7f9c;

	--glass: rgba(255, 255, 255, .55);
	--glass-border: rgba(255, 255, 255, .85);

}

body {
	background: #f7f8fc;
	min-height: 100vh;
	padding: 40px 15px;
	overflow-x: hidden;
	position: relative;
}

/* =========================
BACKGROUND BLOBS
========================= */

.bg-shape {
	position: fixed;
	border-radius: 50%;
	filter: blur(120px);
	z-index: -1;
	opacity: .7;
	pointer-events: none;
}

.shape1 {
	width: 320px;
	height: 320px;
	background: #d9b9ff;
	left: -120px;
	top: 80px;
}

.shape2 {
	width: 350px;
	height: 350px;
	background: #a9e3ff;
	right: -120px;
	bottom: 50px;
}

.shape3 {
	width: 220px;
	height: 220px;
	background: #d6dbff;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

/* =========================
CONTAINER
========================= */

.container {
	width: 100%;
	max-width: 820px;
	margin: auto;
}

.card {

	background: var(--glass);

	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);

	border: 1px solid var(--glass-border);

	border-radius: 45px;

	padding: 55px 45px;

	box-shadow:
		0 20px 70px rgba(0, 0, 0, .06);

	position: relative;
	overflow: hidden;
}

/* =========================
LOGO AREA
========================= */

.logo-wrapper {
	position: relative;
	width: 180px;
	height: 180px;
	margin: auto;
	display: flex;
	justify-content: center;
	align-items: center;
}

.orbit {
	position: absolute;
	border-radius: 50%;
	border: 2px dashed rgba(93, 108, 255, .18);
}

.orbit1 {
	width: 180px;
	height: 180px;
	animation: spin 12s linear infinite;
}

.orbit2 {
	width: 130px;
	height: 130px;
	animation: spinReverse 8s linear infinite;
}

.logo-box {
	position: relative;
	z-index: 5;
}

.logo {
	width: 110px;
	height: 110px;
	background: white;
	border-radius: 50%;

	display: flex;
	justify-content: center;
	align-items: center;

	font-size: 65px;
	font-weight: 800;

	background:
		linear-gradient(135deg,
			#7058ff,
			#4ca3ff);

	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;

	box-shadow:
		0 10px 35px rgba(0, 0, 0, .08);
}

.verified {

	position: absolute;

	right: -5px;
	bottom: 10px;

	width: 34px;
	height: 34px;

	border-radius: 50%;

	background: #4d7dff;

	display: flex;
	justify-content: center;
	align-items: center;

	color: white;
	font-size: 14px;
}

/* =========================
TEXT
========================= */

h1 {
	text-align: center;
	font-size: 68px;
	font-weight: 800;
	color: var(--dark);
	line-height: 1.1;
}

.tagline {
	text-align: center;
	margin-top: 18px;

	letter-spacing: 5px;
	font-size: 14px;

	color: #7382a1;
}

.services {
	text-align: center;

	margin-top: 20px;

	font-size: 22px;
	line-height: 1.7;

	color: #7080a0;
}

/* =========================
VIDEO
========================= */

.video-box {

	margin-top: 35px;

	overflow: hidden;
	border-radius: 30px;

	position: relative;

	background: white;

	box-shadow:
		0 10px 30px rgba(0, 0, 0, .04);
}

.video-box img {
	width: 100%;
	display: block;
}

.play-btn {

	position: absolute;

	top: 50%;
	left: 50%;

	transform: translate(-50%, -50%);

	width: 75px;
	height: 75px;

	border-radius: 50%;

	background: white;

	display: flex;
	justify-content: center;
	align-items: center;

	font-size: 24px;

	color: var(--primary);

	box-shadow:
		0 15px 35px rgba(0, 0, 0, .15);
}

/* =========================
STATS
========================= */

.mini-stats {

	display: grid;
	grid-template-columns: repeat(4, 1fr);

	gap: 15px;

	margin-top: 30px;
	margin-bottom: 35px;
}

.mini-box {

	background: white;

	padding: 22px 15px;

	border-radius: 22px;

	text-align: center;

	transition: .25s ease;
}

.mini-box:hover {

	transform: translateY(-5px);

	box-shadow:
		0 10px 25px rgba(93, 108, 255, .12);
}

.mini-box i {

	font-size: 20px;
	margin-bottom: 10px;

	color: var(--primary);
}

.mini-box span {

	display: block;

	font-size: 28px;
	font-weight: 700;

	color: var(--primary);
}

.mini-box p {

	font-size: 14px;
	color: #7d8ba6;
	margin-top: 4px;
}

/* =========================
BUTTONS
========================= */

.link-card {

	display: flex;
	align-items: center;

	gap: 18px;

	padding: 18px;

	margin-bottom: 18px;

	border-radius: 26px;

	background: rgba(255, 255, 255, .82);

	text-decoration: none;

	transition: .22s ease;
}

.link-card:hover {

	transform: translateY(-4px);

	box-shadow:
		0 12px 25px rgba(93, 108, 255, .12);
}

.icon {

	width: 65px;
	height: 65px;

	border-radius: 18px;

	display: flex;
	justify-content: center;
	align-items: center;

	flex-shrink: 0;

	font-size: 24px;
	color: white;
}

.zee {
	background: linear-gradient(135deg,
			#ffa55b,
			#ebec7f);
}


.freebies {
	background: linear-gradient(135deg,
			#770824,
			#ff9aaf);
}


.purple {
	background:
		linear-gradient(135deg,
			#845dff,
			#b16cff);
}

.blue {
	background:
		linear-gradient(135deg,
			#4cc6ff,
			#4d8fff);
}

.green {
	background:
		linear-gradient(135deg,
			#34e26f,
			#1ac95b);
}

.text {
	flex: 1;
}

.text h3 {

	font-size: 22px;
	font-weight: 700;

	color: #202940;
}

.text p {

	margin-top: 4px;

	font-size: 14px;
	color: #74839f;
}

.arrow {

	font-size: 20px;

	color: var(--primary);
}

/* =========================
SOCIALS
========================= */

h4 {

	text-align: center;

	margin-top: 35px;
	margin-bottom: 20px;

	letter-spacing: 3px;

	font-size: 14px;

	color: #8190ab;
}

.socials {

	display: flex;
	justify-content: center;
	flex-wrap: wrap;

	gap: 14px;
}

.socials a {

	width: 58px;
	height: 58px;

	border-radius: 18px;

	background: white;

	display: flex;
	justify-content: center;
	align-items: center;

	font-size: 20px;

	color: var(--primary);

	text-decoration: none;

	transition: .22s ease;
}

.socials a:hover {

	transform: translateY(-4px);

	box-shadow:
		0 10px 25px rgba(93, 108, 255, .15);
}

/* =========================
FOOTER
========================= */

footer {

	margin-top: 45px;

	padding-top: 35px;

	border-top:
		1px solid rgba(0, 0, 0, .06);
}

/* =========================
FOOTER
========================= */

footer {

	margin-top: 30px;

	padding-top: 25px;

	border-top:
		1px solid rgba(0, 0, 0, .05);
}

/* Redirect Box */

.redirect-box {

	max-width: 420px;

	margin: 0 auto 20px;

	padding: 22px;

	background: white;

	border-radius: 24px;

	text-align: center;

	box-shadow:
		0 10px 30px rgba(0, 0, 0, .04);
}

.redirect-box h4 {

	font-size: 22px;

	line-height: 1.4;

	letter-spacing: 0;

	margin: 0 0 10px;

	color: var(--dark);
}

.redirect-box p {

	font-size: 15px;

	color: var(--text);

	margin-bottom: 15px;
}

#countdown {

	font-weight: 700;

	color: var(--primary);
}

.launch-btn {

	display: inline-flex;

	align-items: center;
	justify-content: center;

	padding: 12px 24px;

	background:
		linear-gradient(135deg,
			#5d6cff,
			#8f6fff);

	color: white;

	font-weight: 600;

	text-decoration: none;

	border-radius: 14px;

	transition: .22s ease;
}

.launch-btn:hover {

	transform: translateY(-3px);

	box-shadow:
		0 10px 20px rgba(93, 108, 255, .15);
}

/* Footer Links */

.footer-links {

	display: flex;

	justify-content: center;

	flex-wrap: wrap;

	gap: 18px;

	margin-bottom: 15px;
}

.footer-links a {

	text-decoration: none;

	font-size: 14px;

	font-weight: 500;

	color: #73819f;
}

/* Copyright */

.copyright {

	margin-top: 10px;

	text-align: center;

	font-size: 13px;

	color: #8b97af;
}


.footer-links {

	display: flex;
	justify-content: center;
	flex-wrap: wrap;

	gap: 25px;

	margin-top: 25px;
}

.footer-links a {

	text-decoration: none;

	font-size: 14px;

	color: #71809d;
}

.copyright {

	margin-top: 30px;

	text-align: center;

	font-size: 14px;

	color: #7f8ca7;
}

/* =========================
ANIMATIONS
========================= */

@keyframes spin {

	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}

}

@keyframes spinReverse {

	from {
		transform: rotate(360deg);
	}

	to {
		transform: rotate(0deg);
	}

}

/* =========================
TABLET
========================= */

@media(max-width:768px) {

	.card {
		padding: 35px 25px;
		border-radius: 35px;
	}

	h1 {
		font-size: 50px;
	}

	.services {
		font-size: 18px;
	}

	.mini-stats {
		grid-template-columns: repeat(2, 1fr);
	}

	.footer-links {
		gap: 15px;
	}

}

/* =========================
MOBILE
========================= */

@media(max-width:480px) {

	body {
		padding: 20px 10px;
	}

	.card {

		padding: 25px 16px;

		border-radius: 28px;
	}

	.logo-wrapper {

		width: 140px;
		height: 140px;
	}

	.orbit1 {
		width: 140px;
		height: 140px;
	}

	.orbit2 {
		width: 100px;
		height: 100px;
	}

	.logo {

		width: 85px;
		height: 85px;

		font-size: 48px;
	}

	h1 {

		font-size: 34px;
	}

	.tagline {

		font-size: 12px;
		letter-spacing: 3px;
	}

	.services {

		font-size: 15px;
	}

	.video-box {

		border-radius: 22px;
	}

	.play-btn {

		width: 60px;
		height: 60px;

		font-size: 18px;
	}

	.mini-stats {

		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}

	.mini-box {

		padding: 16px 10px;
	}

	.mini-box span {

		font-size: 22px;
	}

	.link-card {

		padding: 14px;
		gap: 12px;
	}

	.icon {

		width: 55px;
		height: 55px;

		font-size: 20px;
	}

	.text h3 {

		font-size: 17px;
	}

	.text p {

		font-size: 12px;
	}

	.arrow {
		font-size: 16px;
	}

	.socials a {

		width: 50px;
		height: 50px;

		font-size: 18px;
	}

	.footer-brand h3 {

		font-size: 24px;
	}

	.footer-links {

		flex-direction: column;
		gap: 12px;
	}

	.footer-social {

		flex-wrap: wrap;
	}

}


/* ==========================================
END
========================================== */