* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Inter", sans-serif;
	background: #0f172a;
	color: #fff;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 30px;
}

.container {
	max-width: 1100px;
	width: 100%;
}

.card {
	background: linear-gradient(145deg, #1e293b, #0f172a);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 24px;
	overflow: hidden;
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.left {
	padding: 60px;
}

.badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 87, 87, 0.15);
	color: #ff6b6b;
	padding: 10px 18px;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 24px;
}

h1 {
	font-size: 52px;
	line-height: 1.1;
	margin-bottom: 20px;
}

.highlight {
	color: #7c3aed;
}

.description {
	color: #94a3b8;
	font-size: 18px;
	line-height: 1.7;
	margin-bottom: 35px;
}

.actions {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
}

.btn {
	padding: 16px 28px;
	border: none;
	border-radius: 12px;
	cursor: pointer;
	font-weight: 700;
	font-size: 15px;
	transition: 0.25s;
}

.primary {
	background: #7c3aed;
	color: #fff;
}

.primary:hover {
	background: #6d28d9;
}

.secondary {
	background: transparent;
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.15);
}

.secondary:hover {
	background: rgba(255, 255, 255, 0.05);
}

.right {
	background: #111827;
	padding: 50px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.countdown-title {
	color: #94a3b8;
	margin-bottom: 25px;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.timer {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
}

.time-box {
	background: #1e293b;
	border-radius: 16px;
	padding: 20px;
	text-align: center;
}

.time-box h2 {
	font-size: 34px;
	margin-bottom: 5px;
}

.time-box span {
	color: #94a3b8;
	font-size: 13px;
}

.info {
	margin-top: 30px;
	padding: 20px;
	background: rgba(124, 58, 237, 0.1);
	border: 1px solid rgba(124, 58, 237, 0.2);
	border-radius: 16px;
}

.info h3 {
	margin-bottom: 10px;
}

.info p {
	color: #cbd5e1;
	line-height: 1.6;
}

.domain {
	color: #a78bfa;
	font-weight: 700;
}

.footer {
	margin-top: 20px;
	color: #64748b;
	font-size: 14px;
}

@media (max-width: 900px) {
	.card {
		grid-template-columns: 1fr;
	}

	.left {
		padding: 40px 30px;
	}

	h1 {
		font-size: 40px;
	}

	.right {
		padding: 30px;
	}
}

.mb-3 {
	margin-bottom: 0.75rem;
}
