.dqw-widget {
	max-width: 700px;
	margin: 20px auto;
	background: #ffffff;
	border: 1px solid #bfe0f5;
	border-radius: 14px;
	padding: 24px 28px 22px;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
	box-sizing: border-box;
}
.dqw-widget * { box-sizing: border-box; }

.dqw-header {
	display: flex;
	align-items: flex-start;
	gap: 14px;
}
.dqw-icon {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #f5821f;
	color: #fff;
	font-size: 22px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
}
.dqw-heading h3 {
	margin: 0;
	font-size: 22px;
	font-weight: 800;
	letter-spacing: 0.3px;
}
.dqw-heading-black { color: #14213d; }
.dqw-heading-orange { color: #f5821f; }
.dqw-subtext {
	margin: 4px 0 0;
	color: #6b7280;
	font-size: 14px;
}

.dqw-tagline {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	color: #f5821f;
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 1px;
	margin: 16px 0;
	padding-top: 12px;
	border-top: 1px dashed #e5b98b;
}
.dqw-dot { color: #f5821f; font-size: 10px; }

.dqw-question {
	font-size: 16px;
	font-weight: 700;
	color: #14213d;
	margin-bottom: 14px;
}

.dqw-options {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 20px;
}
.dqw-option {
	display: flex;
	align-items: center;
	gap: 12px;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	padding: 12px 14px;
	cursor: pointer;
	transition: border-color 0.15s ease, background 0.15s ease;
}
.dqw-option:hover { border-color: #f5821f; }
.dqw-option input[type="radio"] { display: none; }
.dqw-radio-circle {
	width: 18px;
	height: 18px;
	border-radius: 50%;
	border: 2px solid #cbd5e1;
	flex-shrink: 0;
	position: relative;
}
.dqw-option input:checked ~ .dqw-radio-circle {
	border-color: #f5821f;
}
.dqw-option input:checked ~ .dqw-radio-circle::after {
	content: '';
	position: absolute;
	top: 3px;
	left: 3px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #f5821f;
}
.dqw-option-letter {
	font-weight: 700;
	color: #14213d;
	width: 16px;
}
.dqw-option-text {
	color: #1f2937;
	font-size: 15px;
}
.dqw-option.dqw-correct {
	border-color: #22c55e;
	background: #f0fdf4;
}
.dqw-option.dqw-wrong {
	border-color: #ef4444;
	background: #fef2f2;
}

.dqw-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 18px;
}
.dqw-submit-btn {
	background: #14213d;
	color: #fff;
	border: none;
	border-radius: 8px;
	padding: 13px 30px;
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 0.5px;
	cursor: pointer;
	transition: background 0.15s ease;
}
.dqw-submit-btn:hover { background: #1f2f57; }
.dqw-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }

.dqw-share-btn {
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	padding: 11px 20px;
	font-weight: 700;
	font-size: 14px;
	color: #14213d;
	display: flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
}
.dqw-share-btn:hover { border-color: #f5821f; color: #f5821f; }

.dqw-result {
	text-align: center;
	font-weight: 700;
	padding: 10px;
	border-radius: 8px;
	margin-bottom: 18px;
}
.dqw-result.correct { background: #f0fdf4; color: #16a34a; }
.dqw-result.wrong { background: #fef2f2; color: #dc2626; }

.dqw-banner {
	display: flex;
	align-items: center;
	gap: 12px;
	background: #fff8ee;
	border: 1px solid #fbe3c0;
	border-radius: 10px;
	padding: 12px 16px;
	flex-wrap: wrap;
}
.dqw-gift { font-size: 20px; flex-shrink: 0; }
.dqw-banner-text {
	flex: 1;
	font-size: 14px;
	color: #78350f;
	font-weight: 600;
	min-width: 200px;
}
.dqw-banner-btn {
	background: #2563eb;
	color: #fff !important;
	text-decoration: none;
	padding: 10px 18px;
	border-radius: 8px;
	font-weight: 700;
	font-size: 13px;
	white-space: nowrap;
}
.dqw-banner-btn:hover { background: #1d4ed8; }

@media (max-width: 480px) {
	.dqw-widget { padding: 18px 16px; }
	.dqw-actions { flex-direction: column; gap: 12px; align-items: stretch; }
	.dqw-submit-btn, .dqw-share-btn { width: 100%; justify-content: center; }
	.dqw-banner { flex-direction: column; align-items: flex-start; }
	.dqw-banner-btn { width: 100%; text-align: center; }
}
