* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Poppins", sans-serif;
	overflow: hidden;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	height: 100vh;
	position: relative;
}

.container {
	position: relative;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1;
}

/* Animated Background */
.bg-animation {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: -1;
}

.circle {
	position: absolute;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	animation: float 20s infinite linear;
}

.circle-1 {
	width: 80px;
	height: 80px;
	top: 10%;
	left: 10%;
	animation-delay: 0s;
}

.circle-2 {
	width: 120px;
	height: 120px;
	top: 20%;
	right: 15%;
	animation-delay: -5s;
}

.circle-3 {
	width: 60px;
	height: 60px;
	bottom: 20%;
	left: 20%;
	animation-delay: -10s;
}

.circle-4 {
	width: 100px;
	height: 100px;
	bottom: 15%;
	right: 20%;
	animation-delay: -15s;
}

.circle-5 {
	width: 40px;
	height: 40px;
	top: 50%;
	left: 50%;
	animation-delay: -7s;
}

@keyframes float {
	0%,
	100% {
		transform: translateY(0) rotate(0deg);
		opacity: 1;
	}
	50% {
		transform: translateY(-20px) rotate(180deg);
		opacity: 0.8;
	}
}

/* Main Content */
.content {
	text-align: center;
	color: white;
	max-width: 600px;
	padding: 20px;
	animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.logo {
	font-size: 4rem;
	margin-bottom: 2rem;
	color: #fff;
}

.spinning {
	animation: spin 3s linear infinite;
}

@keyframes spin {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

.main-title {
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 1rem;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
	background: linear-gradient(45deg, #fff, #f0f0f0);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.subtitle {
	font-size: 1.2rem;
	font-weight: 300;
	margin-bottom: 3rem;
	opacity: 0.9;
	line-height: 1.6;
}

/* Countdown Timer */
.countdown {
	display: flex;
	justify-content: center;
	gap: 2rem;
	margin-bottom: 3rem;
	flex-wrap: wrap;
}

.time-unit {
	background: rgba(255, 255, 255, 0.1);
	border-radius: 15px;
	padding: 1.5rem 1rem;
	min-width: 100px;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: transform 0.3s ease;
}

.time-unit:hover {
	transform: translateY(-5px);
}

.time-unit span {
	display: block;
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	color: #fff;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.time-unit label {
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	opacity: 0.8;
}

/* Email Form */
.notify-section {
	margin-bottom: 3rem;
}

.notify-section h3 {
	font-size: 1.5rem;
	margin-bottom: 1.5rem;
	font-weight: 600;
}

.email-form {
	display: flex;
	max-width: 400px;
	margin: 0 auto 1rem;
	gap: 10px;
	flex-wrap: wrap;
	justify-content: center;
}

.email-form input {
	flex: 1;
	min-width: 250px;
	padding: 15px 20px;
	border: none;
	border-radius: 50px;
	background: rgba(255, 255, 255, 0.9);
	color: #333;
	font-size: 1rem;
	outline: none;
	transition: all 0.3s ease;
}

.email-form input:focus {
	background: rgba(255, 255, 255, 1);
	box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.email-form button {
	padding: 15px 25px;
	border: none;
	border-radius: 50px;
	background: linear-gradient(45deg, #ff6b6b, #ee5a24);
	color: white;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	gap: 8px;
	min-width: 140px;
	justify-content: center;
}

.email-form button:hover {
	background: linear-gradient(45deg, #ee5a24, #ff6b6b);
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

.form-message {
	font-size: 0.9rem;
	margin-top: 1rem;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.form-message.show {
	opacity: 1;
}

.form-message.success {
	color: #4ecdc4;
}

.form-message.error {
	color: #ff6b6b;
}

/* Social Links */
.social-links {
	display: flex;
	justify-content: center;
	gap: 1.5rem;
	margin-bottom: 3rem;
}

.social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	color: white;
	text-decoration: none;
	font-size: 1.2rem;
	transition: all 0.3s ease;
	border: 1px solid rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
}

.social-link:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: translateY(-3px) scale(1.1);
	box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

/* Progress Bar */
.progress-section {
	margin-top: 2rem;
}

.progress-section p {
	font-size: 1rem;
	margin-bottom: 1rem;
	opacity: 0.8;
}

.progress-bar {
	width: 100%;
	height: 10px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 5px;
	overflow: hidden;
	margin-bottom: 0.5rem;
}

.progress-fill {
	height: 100%;
	background: linear-gradient(90deg, #4ecdc4, #44a08d);
	border-radius: 5px;
	transition: width 2s ease-in-out;
	position: relative;
	overflow: hidden;
}

.progress-fill::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background-image: linear-gradient(
		-45deg,
		rgba(255, 255, 255, 0.2) 25%,
		transparent 25%,
		transparent 50%,
		rgba(255, 255, 255, 0.2) 50%,
		rgba(255, 255, 255, 0.2) 75%,
		transparent 75%,
		transparent
	);
	background-size: 20px 20px;
	animation: progressAnimation 2s linear infinite;
}

@keyframes progressAnimation {
	0% {
		background-position: 0 0;
	}
	100% {
		background-position: 20px 20px;
	}
}

.progress-text {
	font-size: 0.9rem;
	font-weight: 600;
	color: #4ecdc4;
}

/* Particles */
.particles {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: -1;
}

.particle {
	position: absolute;
	width: 4px;
	height: 4px;
	background: rgba(255, 255, 255, 0.6);
	border-radius: 50%;
	animation: particleFloat 15s infinite linear;
}

.particle:nth-child(1) {
	left: 10%;
	animation-delay: 0s;
}
.particle:nth-child(2) {
	left: 20%;
	animation-delay: -2s;
}
.particle:nth-child(3) {
	left: 30%;
	animation-delay: -4s;
}
.particle:nth-child(4) {
	left: 40%;
	animation-delay: -6s;
}
.particle:nth-child(5) {
	left: 60%;
	animation-delay: -8s;
}
.particle:nth-child(6) {
	left: 70%;
	animation-delay: -10s;
}
.particle:nth-child(7) {
	left: 80%;
	animation-delay: -12s;
}
.particle:nth-child(8) {
	left: 90%;
	animation-delay: -14s;
}

@keyframes particleFloat {
	0% {
		transform: translateY(100vh) scale(0);
		opacity: 1;
	}
	10% {
		opacity: 1;
		transform: translateY(90vh) scale(1);
	}
	90% {
		opacity: 1;
		transform: translateY(-10vh) scale(1);
	}
	100% {
		transform: translateY(-10vh) scale(0);
		opacity: 0;
	}
}

/* Responsive Design */
@media (max-width: 768px) {
	body {
		overflow-y: auto;
		height: auto;
		min-height: 100vh;
	}

	.container {
		height: auto;
		min-height: 100vh;
		padding: 20px;
	}

	.main-title {
		font-size: 2.2rem;
	}

	.subtitle {
		font-size: 1rem;
		margin-bottom: 2rem;
	}

	.logo {
		font-size: 3rem;
		margin-bottom: 1.5rem;
	}

	.countdown {
		gap: 1rem;
		margin-bottom: 2rem;
	}

	.time-unit {
		padding: 1rem 0.8rem;
		min-width: 80px;
	}

	.time-unit span {
		font-size: 2rem;
	}

	.email-form {
		flex-direction: column;
		align-items: center;
	}

	.email-form input,
	.email-form button {
		width: 100%;
		max-width: 300px;
	}

	.social-links {
		gap: 1rem;
	}

	.social-link {
		width: 45px;
		height: 45px;
		font-size: 1.1rem;
	}
}

@media (max-width: 480px) {
	.main-title {
		font-size: 1.8rem;
	}

	.countdown {
		gap: 0.8rem;
	}

	.time-unit {
		padding: 0.8rem 0.6rem;
		min-width: 70px;
	}

	.time-unit span {
		font-size: 1.5rem;
	}

	.time-unit label {
		font-size: 0.8rem;
	}
}

/* Custom scrollbar for mobile */
::-webkit-scrollbar {
	width: 6px;
}

::-webkit-scrollbar-track {
	background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
	background: rgba(255, 255, 255, 0.3);
	border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
	background: rgba(255, 255, 255, 0.5);
}

.d-none{
    display: none;
}