* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Poppins', sans-serif;
	/* background-color: #431983; */
	color: white;
	min-height: 100vh;
	/* padding: 24px; */
}

.container {
	/* max-width: 1024px;
	margin: 0 auto; */
}

/* Cover Page Styles */
.cover-page {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: calc(100vh - 48px);
	text-align: center;
}

.cover-content {
	background-color: white;
	border-radius: 16px;
	padding: 48px;
	max-width: 720px;
	color: #374151;
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.cover-badge {
	display: inline-block;
	background-color: #ff662e;
	color: white;
	padding: 8px 16px;
	border-radius: 9999px;
	font-size: 0.875rem;
	font-weight: 600;
	margin-bottom: 24px;
}

.cover-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: #431983;
	margin-bottom: 16px;
	line-height: 1.2;
}

.cover-subtitle {
	font-size: 1.25rem;
	color: #6b7280;
	margin-bottom: 32px;
	line-height: 1.6;
}

.cover-stats {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 32px;
	margin-bottom: 40px;
	max-width: 400px;
	margin-left: auto;
	margin-right: auto;
}

.stat-box {
	padding: 24px;
	background-color: #f9fafb;
	border-radius: 8px;
}

.stat-number {
	font-size: 2rem;
	font-weight: 700;
	color: #431983;
	margin-bottom: 4px;
}

.stat-label {
	font-size: 0.875rem;
	color: #6b7280;
}

.cover-description {
	font-size: 1rem;
	color: #374151;
	margin-bottom: 32px;
	line-height: 1.6;
}

.start-button {
	display: inline-block;
	padding: 16px 48px;
	background-color: #431983;
	color: white;
	border: none;
	border-radius: 8px;
	font-size: 1.125rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
	font-family: inherit;
}

.start-button:hover {
	background-color: #5a2aa8;
	transform: translateY(-2px);
	box-shadow: 0 10px 15px -3px rgba(67, 25, 131, 0.3);
}

.time-estimate {
	margin-top: 16px;
	font-size: 0.875rem;
	color: #6b7280;
}

.study-cta {
	margin-top: 32px;
	padding: 20px;
	background-color: #f3f4f6;
	border-radius: 8px;
	font-size: 1rem;
	color: #374151;
}

.study-cta a {
	color: #FF662E;
	text-decoration: none;
	font-weight: 600;
}

.study-cta a:hover {
	text-decoration: underline;
}

.footer-disclaimer {
	margin-top: 48px;
	padding: 24px;
	background-color: #f9fafb;
	border-radius: 8px;
	font-size: 0.75rem;
	color: #6b7280;
	line-height: 1.5;
	text-align: left;
}

.footer-disclaimer strong {
	color: #374151;
}

/* Quiz Header */
.header {
	text-align: left;
	margin-bottom: 32px;
}

.header h1 {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 8px;
}

.header p {
	font-size: 1.125rem;
	opacity: 0.9;
}

.progress-section {
	margin-bottom: 32px;
}

.progress-info {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 8px;
	font-size: 0.875rem;
}

.progress-bar {
	width: 100%;
	background-color: rgba(255, 255, 255, 0.2);
	border-radius: 9999px;
	height: 8px;
}

.progress-fill {
	height: 8px;
	border-radius: 9999px;
	background-color: #ff662e;
	transition: width 0.3s ease;
}

.question-card {
	background-color: white;
	border-radius: 8px;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
	padding: 32px;
	color: #374151;
}

.question-header {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	margin-bottom: 16px;
}

.category {
	font-size: 0.875rem;
	color: #6b7280;
}

.question-text {
	font-size: 1.25rem;
	font-weight: 600;
	line-height: 1.6;
	margin-bottom: 24px;
}

.options {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 24px;
}

.option {
	width: 100%;
	padding: 16px;
	text-align: left;
	border-radius: 8px;
	border: 2px solid #e5e7eb;
	transition: all 0.2s ease;
	cursor: pointer;
	background: white;
	font-family: inherit;
	font-size: inherit;
}

.option:not(.disabled):hover {
	border-color: #d1d5db;
	background-color: #f9fafb;
}

.option.selected {
	border-color: #3b82f6;
	background-color: #eff6ff;
}

.option.selected-correct {
	border-color: #10b981 !important;
	background-color: #d1fae5 !important;
	color: #065f46 !important;
}

.option.selected-incorrect {
	border-color: #ef4444 !important;
	background-color: #fce8e6 !important;
	color: #991b1b !important;
}

.option.correct {
	border-color: #10b981 !important;
	background-color: #d1fae5 !important;
	color: #065f46 !important;
}

.option.incorrect {
	border-color: #ef4444 !important;
	background-color: #fce8e6 !important;
	color: #991b1b !important;
}

.option.disabled {
	border-color: #e5e7eb;
	background-color: #f9fafb;
	color: #6b7280;
	cursor: not-allowed;
}

.option-content {
	display: flex;
	align-items: flex-start;
}

.option-letter {
	font-weight: 500;
	margin-right: 12px;
	flex-shrink: 0;
}

.explanation-section {
	border-top: 1px solid #e5e7eb;
	padding-top: 24px;
	margin-top: 24px;
}

.explanation-title {
	font-weight: 600;
	font-size: 1.125rem;
	margin-bottom: 8px;
	color: #431983;
}

.explanation-text {
	color: #374151;
	margin-bottom: 12px;
	line-height: 1.5;
}

.insight-box {
	padding: 16px;
	border-radius: 8px;
	background-color: #ffa500;
	color: #431983;
}

.insight-label {
	font-weight: 500;
	margin-bottom: 4px;
}

.action-button {
	display: block;
	margin: 24px auto 0;
	padding: 12px 32px;
	border-radius: 8px;
	font-weight: 600;
	border: none;
	cursor: pointer;
	transition: opacity 0.2s ease;
	font-family: inherit;
	font-size: inherit;
}

.action-button:hover:not(:disabled) {
	opacity: 0.9;
}

.action-button.primary {
	background-color: #ff662e;
	color: white;
}

.action-button:disabled {
	background-color: #d1d5db;
	color: #6b7280;
	cursor: not-allowed;
}

.source {
	text-align: center;
	margin-top: 24px;
	font-size: 0.875rem;
	opacity: 0.75;
}

.results {
	text-align: center;
}

.final-score {
	font-size: 4rem;
	font-weight: 700;
	margin-bottom: 16px;
}

.score-excellent { color: #10b981; }
.score-good { color: #f59e0b; }
.score-needs-work { color: #ef4444; }

.results-message {
	font-size: 1.25rem;
	margin-bottom: 24px;
}

.review-section {
	margin-bottom: 32px;
}

.review-title {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 16px;
	color: #431983;
}

.review-item {
	padding: 16px;
	border-radius: 8px;
	border-left: 4px solid;
	margin-bottom: 16px;
}

.review-correct {
	border-left-color: #10b981;
	background-color: #ecfdf5;
}

.review-incorrect {
	border-left-color: #ef4444;
	background-color: #fef2f2;
}

.review-question {
	font-weight: 500;
	margin-bottom: 8px;
	color: #374151;
}

.review-answer {
	font-size: 0.875rem;
	color: #374151;
}

.review-correct .review-answer {
	color: #065f46;
}

.review-incorrect .review-answer {
	color: #991b1b;
}

.correct-answer {
	display: block;
	margin-top: 4px;
	color: #065f46;
}

.cta-section {
	background-color: white;
	border-radius: 8px;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
	padding: 32px;
	color: #374151;
	text-align: center;
	margin-top: 32px;
}

.cta-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: #431983;
	margin-bottom: 16px;
}

.cta-text {
	font-size: 1rem;
	line-height: 1.6;
	margin-bottom: 24px;
}

.cta-button {
	display: inline-block;
	padding: 16px 32px;
	background-color: #431983;
	color: white;
	text-decoration: none;
	border-radius: 8px;
	font-weight: 600;
	font-size: 1rem;
	transition: opacity 0.2s ease;
}

.cta-button:hover {
	opacity: 0.9;
}

/* Mid Quiz CTA Screen */
.mid-quiz-cta-screen {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: calc(100vh - 48px);
	text-align: center;
}

.mid-quiz-cta {
	background-color: white;
	border-radius: 16px;
	padding: 48px;
	color: #374151;
	max-width: 640px;
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.mid-quiz-cta h3 {
	font-size: 1.875rem;
	font-weight: 700;
	margin-bottom: 16px;
	color: #431983;
}

.mid-quiz-cta p {
	font-size: 1.125rem;
	margin-bottom: 32px;
	line-height: 1.6;
	color: #374151;
}

.mid-quiz-cta-button {
	display: inline-block;
	padding: 16px 32px;
	background-color: #ff662e;
	color: white;
	text-decoration: none;
	border-radius: 8px;
	font-weight: 600;
	font-size: 1rem;
	transition: opacity 0.2s ease;
	margin-bottom: 24px;
}

.mid-quiz-cta-button:hover {
	opacity: 0.9;
}

.continue-button {
	display: inline-block;
	padding: 12px 24px;
	background-color: transparent;
	color: #431983;
	border: 2px solid #431983;
	border-radius: 8px;
	font-weight: 600;
	font-size: 0.9rem;
	cursor: pointer;
	transition: all 0.2s ease;
	font-family: inherit;
}

.continue-button:hover {
	background-color: #431983;
	color: white;
}

.progress-indicator {
	margin-top: 24px;
	font-size: 0.875rem;
	color: #6b7280;
}

.hidden {
	display: none;
}