body {
	font-family: "Poppins", sans-serif;
}

.quiz-box {
	backdrop-filter: blur(15px);
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 20px;
	box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
	transition: all 0.3s ease;
}
.quiz-box:hover {
	box-shadow: 0 0 40px rgba(0, 255, 255, 0.4);
}

.option {
	transition: all 0.25s ease;
}
.option:hover {
	background: rgba(0, 255, 255, 0.1);
	border-color: rgba(0, 255, 255, 0.5);
	transform: translateY(-2px);
}

.btn {
	background: linear-gradient(90deg, #06b6d4, #3b82f6);
	transition: all 0.3s ease;
}
.btn:hover {
	opacity: 0.9;
	transform: scale(1.03);
}
