.quiz-capillaire-9606 {
	font-family: inherit;
	max-width: 800px;
	margin: 0 auto;
	padding: 20px;
	background: #ffffff;
	color: #333333;
}

/* Progress Bar */
.quiz-progress-container-9606 {
	margin-bottom: 40px;
	text-align: center;
}
.quiz-progress-bar-9606 {
	width: 100%;
	height: 2px;
	background-color: #eee;
	margin-bottom: 15px;
	border-radius: 2px;
	overflow: hidden;
}
.quiz-progress-bar-fill-9606 {
	height: 100%;
	background-color: #000;
	width: 0%;
	transition: width 0.4s ease-in-out;
}
.quiz-progress-text-9606 {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #666;
}

/* Questions */
.quiz-question-title-9606 {
	text-align: center;
	font-size: 28px;
	font-weight: 300;
	margin-bottom: 40px;
}

/* Answers Grid */
.quiz-answers-grid-9606 {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
}
.quiz-answer-card-9606 {
	cursor: pointer;
	border: 1px solid #eee;
	border-radius: 8px;
	padding: 15px;
	text-align: center;
	transition: all 0.3s ease;
	background: #fafafa;
}
.quiz-answer-card-9606:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0,0,0,0.05);
	border-color: #000;
}
.quiz-answer-img-9606 {
	max-width: 100%;
	height: auto;
	border-radius: 4px;
	margin-bottom: 15px;
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.quiz-answer-text-9606 {
	display: block;
	font-size: 16px;
	font-weight: 500;
}

/* Form */
.quiz-form-container-9606 {
	max-width: 500px;
	margin: 0 auto;
}
.quiz-input-group-9606 {
	margin-bottom: 20px;
	text-align: left;
}
.quiz-input-group-9606 label {
	display: block;
	margin-bottom: 8px;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}
.quiz-input-group-9606 input {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid #ccc;
	border-radius: 4px;
	font-size: 16px;
	transition: border-color 0.3s;
}
.quiz-input-group-9606 input:focus {
	border-color: #000;
	outline: none;
}
.quiz-submit-btn-9606 {
	width: 100%;
	padding: 15px;
	background: #000;
	color: #fff;
	border: none;
	border-radius: 4px;
	font-size: 16px;
	text-transform: uppercase;
	letter-spacing: 1px;
	cursor: pointer;
	transition: background 0.3s;
}
.quiz-submit-btn-9606:hover {
	background: #333;
}
.quiz-form-message-9606 {
	margin-top: 15px;
	text-align: center;
	color: #e74c3c;
}

/* Restart */
.quiz-restart-area-9606 {
	text-align: center;
	margin-top: 40px;
}
.quiz-restart-btn-9606 {
	background: none;
	border: none;
	color: #666;
	text-decoration: underline;
	cursor: pointer;
	font-size: 14px;
}
.quiz-restart-btn-9606:hover {
	color: #000;
}

/* Animations */
.fade-in-9606 {
	animation: fadeIn9606 0.5s ease-in-out;
}
@keyframes fadeIn9606 {
	from { opacity: 0; transform: translateY(10px); }
	to { opacity: 1; transform: translateY(0); }
}