.angie-quiz-container-9208 {
	max-width: 800px;
	margin: 0 auto;
	font-family: 'Inter', system-ui, sans-serif;
	background: #ffffff;
	border-radius: 16px;
	box-shadow: 0 10px 25px rgba(0,0,0,0.05);
	padding: 32px;
	overflow: hidden;
	position: relative;
}

.angie-quiz-progress-bar {
	height: 8px;
	background: #f0f0f0;
	border-radius: 4px;
	margin-bottom: 24px;
	overflow: hidden;
}

.angie-quiz-progress-fill {
	height: 100%;
	background: linear-gradient(90deg, #4f46e5, #818cf8);
	width: 0%;
	transition: width 0.3s ease;
}

.angie-quiz-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 24px;
}

.angie-quiz-streak {
	background: #fef3c7;
	color: #d97706;
	padding: 4px 12px;
	border-radius: 20px;
	font-weight: 600;
	font-size: 14px;
}

.angie-quiz-points {
	background: #e0e7ff;
	color: #4338ca;
	padding: 4px 12px;
	border-radius: 20px;
	font-weight: 600;
	font-size: 14px;
}

.angie-quiz-question-text {
	font-size: 24px;
	font-weight: 700;
	color: #111827;
	margin-bottom: 32px;
	line-height: 1.3;
}

.angie-quiz-options {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.angie-quiz-option {
	padding: 16px 20px;
	border: 2px solid #e5e7eb;
	border-radius: 12px;
	cursor: pointer;
	font-size: 16px;
	font-weight: 500;
	color: #374151;
	transition: all 0.2s ease;
	display: flex;
	align-items: center;
}

.angie-quiz-option:hover {
	border-color: #818cf8;
	background: #eef2ff;
	transform: translateY(-2px);
}

.angie-quiz-option.selected {
	border-color: #4f46e5;
	background: #4f46e5;
	color: white;
}

.angie-quiz-option.correct {
	border-color: #10b981;
	background: #10b981;
	color: white;
}

.angie-quiz-option.incorrect {
	border-color: #ef4444;
	background: #ef4444;
	color: white;
}

.angie-quiz-controls {
	margin-top: 32px;
	display: flex;
	justify-content: flex-end;
}

.angie-quiz-btn {
	padding: 12px 24px;
	border-radius: 8px;
	font-weight: 600;
	font-size: 16px;
	cursor: pointer;
	transition: all 0.2s ease;
	border: none;
}

.angie-quiz-btn-primary {
	background: #4f46e5;
	color: white;
}

.angie-quiz-btn-primary:hover {
	background: #4338ca;
	transform: translateY(-2px);
}

.angie-quiz-btn-primary:disabled {
	background: #9ca3af;
	cursor: not-allowed;
	transform: none;
}

.angie-quiz-results {
	text-align: center;
}

.angie-quiz-score-circle {
	width: 150px;
	height: 150px;
	border-radius: 50%;
	background: conic-gradient(#4f46e5 var(--p), #f3f4f6 0deg);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 24px;
	position: relative;
}
.angie-quiz-score-circle::after {
	content: '';
	position: absolute;
	width: 130px;
	height: 130px;
	background: white;
	border-radius: 50%;
}
.angie-quiz-score-text {
	position: relative;
	z-index: 10;
	font-size: 32px;
	font-weight: 800;
	color: #111827;
}

@media (max-width: 600px) {
	.angie-quiz-container-9208 {
		padding: 20px;
	}
	.angie-quiz-question-text {
		font-size: 20px;
	}
}
