.drk-quiz-wrapper {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	background: linear-gradient(135deg, #b8e986 0%, #1d6e8a 100%);
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px;
	box-sizing: border-box;
}

.drk-quiz-wrapper *,
.drk-quiz-wrapper *::before,
.drk-quiz-wrapper *::after {
	box-sizing: border-box;
}

.drk-quiz-container {
	background: white;
	border-radius: 20px;
	box-shadow: 0 20px 60px rgba(29, 110, 138, 0.3);
	max-width: 900px;
	width: 100%;
	padding: 40px;
	position: relative;
	color: #333;
}

.drk-logo {
	text-align: center;
	margin-bottom: 30px;
}

.drk-logo img {
	max-width: 300px;
	width: 100%;
	height: auto;
}

.drk-progress-bar {
	width: 100%;
	height: 8px;
	background: #e0e0e0;
	border-radius: 10px;
	margin-bottom: 30px;
	overflow: hidden;
}

.drk-progress-fill {
	height: 100%;
	width: 0;
	background: linear-gradient(90deg, #b8e986 0%, #1d6e8a 100%);
	border-radius: 10px;
	transition: width 0.3s ease;
}

.drk-page {
	display: none;
}

.drk-page.drk-active {
	display: block;
	animation: drkFadeIn 0.3s ease;
}

@keyframes drkFadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.drk-quiz-container h1 {
	color: #1d6e8a;
	font-size: 28px;
	margin: 0 0 20px;
	text-align: center;
	font-weight: 700;
}

.drk-intro-text {
	color: #666;
	font-size: 16px;
	line-height: 1.6;
	margin: 0 0 30px;
	text-align: center;
}

.drk-question-text {
	color: #333;
	font-size: 20px;
	margin-bottom: 30px;
	font-weight: 500;
}

.drk-question-number {
	color: #1d6e8a;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.drk-options {
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin-bottom: 30px;
}

.drk-option-btn {
	background: white;
	border: 2px solid #e0e0e0;
	padding: 18px 24px;
	border-radius: 12px;
	font-size: 16px;
	cursor: pointer;
	transition: all 0.3s ease;
	text-align: left;
	color: #333;
	font-weight: 500;
	font-family: inherit;
}

.drk-option-btn:hover {
	border-color: #95c11f;
	background: #f5fae8;
	transform: translateX(5px);
}

.drk-option-btn.drk-selected {
	background: #95c11f;
	border-color: #95c11f;
	color: #ffffff;
}

.drk-nav-buttons {
	display: flex;
	justify-content: space-between;
	gap: 15px;
}

.drk-btn {
	padding: 15px 30px;
	border: none;
	border-radius: 10px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	font-family: inherit;
}

.drk-btn-primary {
	background: #95c11f;
	color: #ffffff;
	flex: 1;
}

.drk-btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(149, 193, 31, 0.4);
	background: #84ad1c;
}

.drk-btn-primary:disabled {
	opacity: 0.5;
	cursor: not-allowed;
	transform: none;
}

.drk-btn-secondary {
	background: #f0f0f0;
	color: #666;
	padding: 15px 20px;
}

.drk-btn-secondary:hover {
	background: #e0e0e0;
}

.drk-quiz-container input[type="text"],
.drk-quiz-container input[type="email"] {
	width: 100%;
	padding: 15px;
	border: 2px solid #e0e0e0;
	border-radius: 10px;
	font-size: 16px;
	margin-bottom: 15px;
	transition: border-color 0.3s ease;
	font-family: inherit;
	background: white;
	color: #333;
}

.drk-quiz-container input[type="text"]:focus,
.drk-quiz-container input[type="email"]:focus {
	outline: none;
	border-color: #95c11f;
}

.drk-quiz-container label {
	display: block;
	color: #333;
	font-weight: 500;
	margin-bottom: 8px;
}

.drk-result-box {
	background: linear-gradient(135deg, #b8e986 0%, #1d6e8a 100%);
	color: white;
	padding: 30px;
	border-radius: 15px;
	margin-bottom: 25px;
}

.drk-result-box h2 {
	font-size: 24px;
	margin: 0 0 15px;
	color: white;
}

.drk-result-box p {
	font-size: 16px;
	line-height: 1.6;
	opacity: 0.95;
	margin: 0;
}

.drk-cta-text {
	background: #f5fae8;
	color: #1d6e8a;
	padding: 20px;
	border-radius: 10px;
	text-align: center;
	font-weight: 500;
	border: 2px solid #95c11f;
}

.drk-footer-logo {
	text-align: center;
	margin-top: 30px;
}

.drk-footer-logo img {
	max-width: 250px;
	width: 100%;
	height: auto;
	opacity: 0.8;
}

.drk-error {
	color: #c0392b;
	background: #fdecea;
	border: 1px solid #f5b7b1;
	padding: 12px 15px;
	border-radius: 8px;
	margin-bottom: 15px;
	font-size: 14px;
}

@media (max-width: 600px) {
	.drk-quiz-container {
		padding: 30px 20px;
	}

	.drk-quiz-container h1 {
		font-size: 24px;
	}

	.drk-question-text {
		font-size: 18px;
	}

	.drk-logo img {
		max-width: 250px;
	}
}

/* Result illustration styling */
.drk-result-illustration {
    margin: 30px 0;
    text-align: center;
}

.drk-result-illustration svg {
    max-width: 50%;
    height: auto;
}
