
.ul-event-img img {
	object-fit: unset !important;
}
:root {
 --secondary: #ec4899;
 --bg: #f3f4f6;
}
.cst_quiz {
	font-family: 'Outfit', sans-serif;
	/* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
	margin: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 50vh;
	color: #1f2937;
}
.quiz-card {
	background: rgba(255, 255, 255, 0.95);
	width: 90%;
	max-width: 600px;
	padding: 40px;
	border-radius: 24px;
	box-shadow: 0 20px 40px rgba(0,0,0,0.3);
	backdrop-filter: blur(10px);
	position: relative;
}
.header-info {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 25px;
}
.timer-badge {
	background: #fee2e2;
	color: #ef4444;
	padding: 8px 16px;
	border-radius: 12px;
	font-weight: 700;
	display: flex;
	align-items: center;
	gap: 8px;
}
.progress-container {
	height: 8px;
	background: #e5e7eb;
	border-radius: 10px;
	margin-bottom: 30px;
	overflow: hidden;
}
.progress-fill {
	height: 100%;
	width: 0%;
	background: linear-gradient(to right, var(--ul-primary), #f2cf44);
	transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.question-text {
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 25px;
	line-height: 1.4;
}
.options-grid {
	display: grid;
	gap: 12px;
}
.option-btn {
	background: white;
	border: 2px solid #e5e7eb;
	padding: 16px 20px;
	border-radius: 14px;
	cursor: pointer;
	transition: all 0.2s;
	display: flex;
	align-items: center;
	font-size: 16px;
	font-weight: 500;
}
.option-btn:hover {
	border-color: var(--ul-primary);
	background: #f5f3ff;
}
.option-btn.selected {
	background: var(--ul-primary);
	color: white;
	border-color: var(--ul-primary);
}
.controls {
	display: flex;
	justify-content: space-between;
	margin-top: 35px;
}
.btn {
	padding: 12px 28px;
	border-radius: 12px;
	border: none;
	cursor: pointer;
	font-weight: 600;
	transition: 0.3s;
}
.btn-next {
	background:var(--ul-primary);
	color: white;
}
.btn-prev {
	background: #e5e7eb;
	color: #4b5563;
}
.btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}
#result-screen {
	text-align: center;
	display: none;
}
input {
	width: 100%;
	padding: 14px;
	margin: 10px 0 !important;
	border: 2px solid #e5e7eb;
	border-radius: 12px;
	box-sizing: border-box;
}
.blink-container {display: flex;justify-content: center;align-items: center;margin-bottom:20px;}
.blink {padding: 20px 7.75rem;background-color: #fdd835;color: #d32f2f;font-size: 24px;font-weight: bold;border-radius: 10px;text-align: center;animation: blinkAnim 2s infinite;cursor: pointer;}
@keyframes blinkAnim {0%, 50%, 100% { opacity: 1; }25%, 75% { opacity: 0.3; }}











