* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	overflow: hidden;
	background: #0a0a0a;
	color: #f0e6d2;
	font-family: "Georgia", serif;
	text-align: center;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}
canvas {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
}
.scene {
	position: relative;
	z-index: 1;
	padding: 2em;
	backdrop-filter: blur(3px);
	background: rgba(10, 10, 10, 0.5);
	border: 2px solid #333;
	border-radius: 12px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
}
h1 {
	font-size: 3em;
	margin-bottom: 0.2em;
	animation: pulse 2s infinite;
}
.glow {
	color: #fcd34d;
	text-shadow: 0 0 8px #fcd34d, 0 0 16px #fcd34d;
}
h2 {
	margin: 1em 0;
	font-size: 2em;
}
p {
	font-size: 1.2em;
	color: #ccc;
}
#countdown {
	margin-top: 1em;
	font-size: 1.4em;
	color: #fcd34d;
}
@keyframes pulse {
	0%,
	100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
}
