.simple-video-quiz {
	max-width: 760px;
	margin: 0 auto;
}

.svq-card {
	background: #ffffff;
	border: 1px solid #d5dee8;
	border-radius: 18px;
	box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
	padding: 24px;
	color: #102a43;
}

.svq-phase-video {
	background: linear-gradient(180deg, #eef7ff 0%, #ffffff 100%);
	border-color: #bfdbf2;
}

.svq-phase-answer {
	background: linear-gradient(180deg, #fff8ec 0%, #ffffff 100%);
	border-color: #ead4b0;
}

.svq-result {
	text-align: center;
}

.svq-result-inner {
	padding: 14px 0;
}

.svq-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 18px;
	flex-wrap: wrap;
}

.svq-progress,
.svq-phase-label {
	font-size: 0.95rem;
	font-weight: 700;
}

.svq-progress {
	color: #1f5f8b;
}

.svq-phase-label {
	padding: 6px 12px;
	border-radius: 999px;
}

.svq-phase-video .svq-phase-label {
	background: #d8ebfb;
	color: #124e78;
}

.svq-phase-answer .svq-phase-label {
	background: #f8e7c8;
	color: #8a4b08;
}

.svq-timer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	background: #102a43;
	color: #ffffff;
	padding: 14px 16px;
	border-radius: 14px;
	margin-bottom: 22px;
	font-weight: 700;
}

.svq-timer-copy {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
}

.svq-timer-label {
	font-size: 0.98rem;
}

.svq-timer-note {
	font-size: 0.86rem;
	line-height: 1.45;
	color: #d9e2ec;
	font-weight: 500;
}

.svq-timer-count {
	display: flex;
	align-items: baseline;
	gap: 6px;
	flex: 0 0 auto;
	padding: 6px 10px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.1);
}

.svq-timer-suffix {
	font-size: 0.9rem;
	color: #f0f4f8;
}

.svq-timer-value {
	font-size: 1.8rem;
	line-height: 1;
	color: #ffd166;
	min-width: 2ch;
	text-align: center;
}

.svq-section-title {
	margin: 0 0 12px;
	font-size: 1.2rem;
	color: #0b3c5d;
}

.svq-video-wrap,
.svq-question-wrap {
	display: grid;
	gap: 14px;
}

.svq-video-frame {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
	border-radius: 14px;
	overflow: hidden;
	background: #d9e2ec;
}

.svq-video-frame iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.svq-question-text {
	font-size: 1.08rem;
	line-height: 1.65;
	margin: 0;
}

.svq-options {
	display: grid;
	gap: 12px;
}

.svq-option {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 16px;
	border: 1px solid #bcccdc;
	border-radius: 14px;
	background: #f8fafc;
	cursor: pointer;
	transition: border-color 0.2s ease, background-color 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
	min-height: 56px;
}

.svq-option:hover {
	border-color: #486581;
	background: #f0f4f8;
	box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
}

.svq-option-selected {
	border-color: #1f5f8b;
	background: #e8f1f8;
	box-shadow: 0 0 0 3px rgba(31, 95, 139, 0.12);
}

.svq-option-disabled {
	opacity: 0.62;
	cursor: not-allowed;
	background: #eef2f6;
	border-color: #c7d2de;
	box-shadow: none;
}

.svq-option input {
	margin: 2px 0 0;
	flex: 0 0 auto;
}

.svq-option-text {
	font-size: 1rem;
	line-height: 1.5;
}

.svq-helper {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.5;
	color: #486581;
}

.svq-helper-muted {
	color: #6b7c93;
	font-size: 0.9rem;
}

.svq-actions {
	display: flex;
	gap: 12px;
	margin-top: 8px;
	flex-wrap: wrap;
}

.svq-button {
	appearance: none;
	border: 0;
	border-radius: 12px;
	padding: 14px 20px;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.2;
	cursor: pointer;
	transition: transform 0.15s ease, opacity 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
	min-height: 48px;
}

.svq-button:hover:not(:disabled) {
	transform: translateY(-1px);
	box-shadow: 0 8px 16px rgba(15, 23, 42, 0.12);
}

.svq-button:disabled {
	cursor: not-allowed;
	opacity: 1;
	background: #cfd8e3;
	color: #6b7c93;
	box-shadow: none;
}

.svq-button-primary {
	background: #1f5f8b;
	color: #ffffff;
}

.svq-button-primary:hover:not(:disabled) {
	background: #17496b;
}

.svq-button-secondary {
	background: #d9e2ec;
	color: #102a43;
}

.svq-button-secondary:hover:not(:disabled) {
	background: #bcccdc;
}

.svq-result-title {
	margin: 0 0 12px;
	font-size: 1.5rem;
	color: #0b3c5d;
}

.svq-result-score {
	margin: 0 0 20px;
	font-size: 1.15rem;
	font-weight: 700;
}

@media (max-width: 640px) {
	.simple-video-quiz {
		max-width: 100%;
	}

	.svq-card {
		padding: 18px;
		border-radius: 14px;
	}

	.svq-header {
		align-items: flex-start;
	}

	.svq-progress,
	.svq-phase-label,
	.svq-helper,
	.svq-option-text {
		font-size: 0.98rem;
	}

	.svq-section-title {
		font-size: 1.1rem;
	}

	.svq-question-text {
		font-size: 1rem;
	}

	.svq-timer {
		flex-direction: column;
		align-items: stretch;
	}

	.svq-timer-count {
		justify-content: center;
	}

	.svq-actions {
		flex-direction: column;
	}

	.svq-button {
		width: 100%;
	}

	.svq-option {
		padding: 14px;
	}
}
