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

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	min-height: 100vh;
	color: #333;
}

/* Top Navigation - Only visible on large screens */
.top-navbar {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	position: sticky;
	top: 0;
	z-index: 1000;
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
	display: none;
	margin-bottom: 20px; 
}

@media (min-width: 992px) {
	.top-navbar {
		display: block;
	}
}

.navbar-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 70px;
}

.navbar-brand {
	font-size: 24px;
	font-weight: bold;
	color: #667eea;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 10px;
}

.navbar-brand i {
	font-size: 28px;
}

.navbar-nav {
	display: flex;
	list-style: none;
	gap: 30px;
	align-items: center;
}

.nav-link {
	text-decoration: none;
	color: #333;
	font-weight: 500;
	padding: 8px 16px;
	border-radius: 25px;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	gap: 8px;
}

.nav-link:hover {
	background: rgba(102, 126, 234, 0.1);
	color: #667eea;
	transform: translateY(-2px);
}

.nav-link.active {
	background: #667eea;
	color: white;
}

/* Main Content */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
}

.single-question {
	max-width: 900px;
	margin: 0 auto;
	padding: 0;
}

.page-header {
	text-align: center;
	margin-bottom: 30px;
	color: white;
}

.page-title {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 10px;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.page-subtitle {
	font-size: 1.2rem;
	opacity: 0.9;
	font-weight: 300;
}

.question-meta {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	padding: 20px;
	border-radius: 15px;
	margin-bottom: 25px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
}

.meta-item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 500;
	color: #555;
}

.meta-item i {
	color: #667eea;
	font-size: 16px;
}

.category-badge {
	background: linear-gradient(45deg, #667eea, #764ba2);
	color: white;
	padding: 8px 16px;
	border-radius: 20px;
	font-size: 14px;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 6px;
}

.navigation-buttons {
	margin-bottom: 25px;
	display: flex;
	gap: 15px;
	justify-content: center;
	flex-wrap: wrap;
}

.btn {
	padding: 12px 24px;
	border-radius: 25px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
}

.btn-primary {
	background: linear-gradient(45deg, #667eea, #764ba2);
	color: white;
	box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.btn-secondary {
	background: rgba(255, 255, 255, 0.9);
	color: #333;
	border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
	background: white;
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-outline {
	background: transparent;
	color: white;
	border: 2px solid rgba(255, 255, 255, 0.7);
}

.btn-outline:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: white;
	transform: translateY(-2px);
}

/* Question Card Styles (keeping original functionality) */
.question-card {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	border-radius: 20px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	overflow: hidden;
	margin-bottom: 30px;
}

.question-header {
	background: linear-gradient(45deg, #667eea, #764ba2);
	color: white;
	padding: 20px 30px;
	text-align: center;
}

.question-title {
	font-size: 1.5rem;
	font-weight: 700;
	margin: 0;
}

.question-content {
	padding: 30px;
}

.question-text {
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 25px;
	line-height: 1.6;
	color: #333;
}

.options {
	list-style: none;
	margin-bottom: 25px;
}

.option {
	margin-bottom: 15px;
	transition: all 0.3s ease;
}

.option label {
	display: flex;
	align-items: center;
	padding: 15px 20px;
	background: #f8f9fa;
	border: 2px solid #e9ecef;
	border-radius: 12px;
	cursor: pointer;
	font-weight: 500;
	transition: all 0.3s ease;
	gap: 15px;
}

.option label:hover {
	background: rgba(102, 126, 234, 0.05);
	border-color: #667eea;
	transform: translateX(5px);
}

.option input[type="radio"] {
	width: 20px;
	height: 20px;
	accent-color: #667eea;
}

.option.correct label {
	background: rgba(40, 167, 69, 0.1);
	border-color: #28a745;
	color: #28a745;
}

.option.incorrect label {
	background: rgba(220, 53, 69, 0.1);
	border-color: #dc3545;
	color: #dc3545;
}

.check-answer-btn {
	width: 100%;
	padding: 15px;
	font-size: 1.1rem;
	border-radius: 12px;
	margin-bottom: 20px;
}

.result {
	padding: 20px;
	border-radius: 12px;
	margin-top: 20px;
	display: none;
}

.result.correct {
	background: rgba(40, 167, 69, 0.1);
	border: 2px solid #28a745;
	color: #28a745;
}

.result.incorrect {
	background: rgba(220, 53, 69, 0.1);
	border: 2px solid #dc3545;
	color: #dc3545;
}

.result-answer {
	font-size: 1.1rem;
	font-weight: 700;
	margin-bottom: 10px;
}

.result-description {
	font-size: 1rem;
	line-height: 1.5;
	opacity: 0.9;
}

/* Text Answer Section for Current Affairs */
.text-answer-section {
	margin-bottom: 25px;
}

.input-group {
	margin-bottom: 20px;
}

.input-group label {
	display: block;
	font-weight: 600;
	margin-bottom: 8px;
	color: #333;
}

.text-answer-input {
	width: 100%;
	padding: 15px 20px;
	border: 2px solid #e9ecef;
	border-radius: 12px;
	font-size: 1rem;
	font-weight: 500;
	background: #f8f9fa;
	transition: all 0.3s ease;
}

.text-answer-input:focus {
	outline: none;
	border-color: #667eea;
	background: white;
	box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.question-source {
	font-size: 12px;
	color: #666;
	font-style: italic;
	margin-left: 8px;
}

/* Share and Related Sections */
.share-buttons {
	text-align: center;
	margin: 30px 0;
}

.share-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0 8px;
	padding: 12px 20px;
	background: rgba(255, 255, 255, 0.9);
	color: #333;
	text-decoration: none;
	border-radius: 25px;
	font-size: 14px;
	font-weight: 600;
	transition: all 0.3s ease;
	border: 1px solid rgba(255, 255, 255, 0.3);
}

.share-btn:hover {
	background: white;
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.related-questions {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	padding: 30px;
	border-radius: 20px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.related-questions h3 {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 20px;
	color: #333;
	text-align: center;
}

.related-question-item {
	margin-bottom: 12px;
	padding: 15px 20px;
	background: rgba(102, 126, 234, 0.05);
	border: 1px solid rgba(102, 126, 234, 0.1);
	border-radius: 12px;
	transition: all 0.3s ease;
}

.related-question-item:hover {
	background: rgba(102, 126, 234, 0.1);
	transform: translateX(5px);
}

.related-question-item a {
	text-decoration: none;
	color: #667eea;
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 10px;
}

.related-question-item a:hover {
	color: #764ba2;
}

/* Responsive Design */
@media (max-width: 768px) {
	.page-title {
		font-size: 2rem;
	}

	.question-meta {
		padding: 15px;
		align-items: flex-start;
	}

	.navigation-buttons {
		flex-direction: column;
		align-items: center;
	}

	.question-content {
		padding: 20px;
	}

	.question-text {
		font-size: 1.1rem;
	}

	.option label {
		padding: 12px 15px;
	}

	.share-buttons {
		margin: 20px 0;
	}

	.share-btn {
		margin: 5px;
		padding: 10px 16px;
		font-size: 13px;
	}

	.related-questions {
		padding: 20px;
	}
}

/* Loading Animation */
.loading {
	display: inline-block;
	width: 20px;
	height: 20px;
	border: 3px solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	border-top-color: #fff;
	animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
	to { transform: rotate(360deg); }
}