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

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	color: #ffffff;
}

.container {
	text-align: center;
	max-width: 900px;
	animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.logo {
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 1rem;
	background: linear-gradient(45deg, #fff, #f0f0f0);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

h1 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	font-weight: 600;
}

.subtitle {
	font-size: 1.2rem;
	margin-bottom: 3rem;
	opacity: 0.9;
	line-height: 1.6;
}

.countdown {
	display: flex;
	justify-content: center;
	gap: 2rem;
	margin-bottom: 3rem;
	flex-wrap: wrap;
}

.countdown-item {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border-radius: 10px;
	padding: 1.5rem 2rem;
	min-width: 100px;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.countdown-value {
	font-size: 3rem;
	font-weight: 700;
	display: block;
	margin-bottom: 0.5rem;
}

.countdown-label {
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	opacity: 0.8;
}

.notify-form {
	display: flex;
	gap: 1rem;
	max-width: 500px;
	margin: 0 auto 2rem;
	flex-wrap: wrap;
	justify-content: center;
}

.email-input {
	flex: 1;
	min-width: 250px;
	padding: 1rem 1.5rem;
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 50px;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	color: #ffffff;
	font-size: 1rem;
	outline: none;
	transition: all 0.3s ease;
}

.email-input::placeholder {
	color: rgba(255, 255, 255, 0.6);
}

.email-input:focus {
	border-color: rgba(255, 255, 255, 0.6);
	background: rgba(255, 255, 255, 0.15);
}

.notify-button {
	padding: 1rem 2.5rem;
	background: #ffffff;
	color: #667eea;
	border: none;
	border-radius: 50px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	white-space: nowrap;
}

.notify-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.notify-button:active {
	transform: translateY(0);
}

.social-links {
	display: flex;
	justify-content: center;
	gap: 1.5rem;
	margin-top: 2rem;
}

.social-link {
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border-radius: 50%;
	color: #ffffff;
	text-decoration: none;
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: all 0.3s ease;
}

.social-link:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: translateY(-3px);
}

.message {
	margin-top: 1rem;
	padding: 1rem;
	border-radius: 10px;
	display: none;
}

.message.success {
	background: rgba(72, 187, 120, 0.2);
	border: 1px solid rgba(72, 187, 120, 0.5);
	display: block;
}

.message.error {
	background: rgba(245, 101, 101, 0.2);
	border: 1px solid rgba(245, 101, 101, 0.5);
	display: block;
}

@media (max-width: 768px) {
	.logo {
		font-size: 2rem;
	}

	h1 {
		font-size: 2rem;
	}

	.subtitle {
		font-size: 1rem;
	}

	.countdown {
		gap: 1rem;
	}

	.countdown-item {
		padding: 1rem 1.5rem;
		min-width: 80px;
	}

	.countdown-value {
		font-size: 2rem;
	}

	.notify-form {
		flex-direction: column;
		align-items: stretch;
	}

	.email-input,
	.notify-button {
		width: 100%;
		min-width: auto;
	}
}