/* ======================
   RESET & BASE STYLES
   ====================== */
   * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
      Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}
.coming-soon-container {
	min-height: 100vh;
	background: linear-gradient(135deg, #1a1c2c 0%, #2a3c54 100%);
	color: #fff;
	padding: 4rem 2rem;
	text-align: center;
}

.content-wrapper {
	max-width: 1200px;
	margin: 0 auto;
	padding: 2rem;
}

.page-title {
	font-size: 3.5rem;
	margin-bottom: 1rem;
	background: linear-gradient(45deg, #00f7ff, #ff00e6);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: glow 2s ease-in-out infinite alternate;
}

.page-subtitle {
	font-size: 1.5rem;
	color: #a8b2d1;
	margin-bottom: 3rem;
}

.countdown {
	display: flex;
	justify-content: center;
	gap: 2rem;
	margin-bottom: 4rem;
}

.countdown-item {
	background: rgba(255, 255, 255, 0.1);
	padding: 1.5rem;
	border-radius: 15px;
	min-width: 120px;
	backdrop-filter: blur(10px);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.countdown-number {
	font-size: 2.5rem;
	font-weight: bold;
	margin-bottom: 0.5rem;
	color: #fff;
}

.countdown-label {
	font-size: 1rem;
	color: #a8b2d1;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.promo-message {
	background: rgba(255, 255, 255, 0.05);
	padding: 2rem;
	border-radius: 20px;
	margin-top: 3rem;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.promo-message h2 {
	font-size: 2rem;
	margin-bottom: 1rem;
	color: #fff;
}

.promo-message p {
	color: #a8b2d1;
	margin-bottom: 1rem;
	font-size: 1.1rem;
	line-height: 1.6;
}

.cta-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
	margin-top: 2rem;
}

.btn-explore, .btn-notify {
	padding: 1rem 2rem;
	border-radius: 30px;
	font-size: 1.1rem;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
}

.btn-explore {
	background: linear-gradient(45deg, #00f7ff, #2196f3);
	color: #fff;
	border: none;
}

.btn-notify {
	background: transparent;
	color: #fff;
	border: 2px solid #00f7ff;
}

.btn-explore:hover, .btn-notify:hover {
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(0, 247, 255, 0.3);
}

@keyframes glow {
	from {
		text-shadow: 0 0 10px rgba(0, 247, 255, 0.5),
					 0 0 20px rgba(0, 247, 255, 0.3),
					 0 0 30px rgba(0, 247, 255, 0.2);
	}
	to {
		text-shadow: 0 0 20px rgba(0, 247, 255, 0.8),
					 0 0 30px rgba(0, 247, 255, 0.5),
					 0 0 40px rgba(0, 247, 255, 0.3);
	}
}

@media (max-width: 768px) {
	.countdown {
		flex-wrap: wrap;
		gap: 1rem;
	}
	
	.countdown-item {
		min-width: 100px;
		padding: 1rem;
	}
	
	.page-title {
		font-size: 2.5rem;
	}
	
	.page-subtitle {
		font-size: 1.2rem;
	}
	
	.cta-buttons {
		flex-direction: column;
	}
}