body {
	margin: 0;
	font-family: 'Inter', serif;
	background: linear-gradient(to right, #667eea, #764ba2);
	color: white;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	text-align: center;
	padding: 1rem;
}

.blob {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 500px;
    height: 500px;
    border-radius: 100%;
    background: linear-gradient(rgba(255,255,255,0.5), transparent);
    filter: blur(100px);
    transition: all 250ms ease-out;
    position: fixed;
    pointer-events: none;
    left: 0;
    top: 0;
    transform: translate(calc(-50%), -50%);
    z-index: -1;
}

.container {
	background: rgba(255, 255, 255, 0.1);
	padding: 2rem;
	border-radius: 1.5rem;
	box-shadow: 0 8px 16px rgba(0,0,0,0.2);
	backdrop-filter: blur(10px);
	max-width: 500px;
	width: 100%;
}
h1 {
	font-size: 2rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
}
.countdown {
	display: flex;
	justify-content: space-around;
	gap: 1rem;
	font-size: 1.75rem;
	font-weight: 600;
}
.countdown div {
	flex: 1;
}
.label {
	font-size: 0.9rem;
	font-weight: 400;
	margin-top: 0.3rem;
	color: #e0e0e0;
}
@media (max-width: 480px) {
	.countdown {
		flex-direction: column;
		align-items: center;
		gap: 1rem;
	}
        .blob {
                width: 250px;
                height: 250px;
                filter: blur(50px);
        }
}
