/* Modern Vision Resource Collection Styles */
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

html {
	font-size: 16px;
	scroll-behavior: smooth;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
	line-height: 1.6;
	color: #ffffff;
	background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
	overflow-x: hidden;
	min-height: 100vh;
}

/* Container */
.page {
	max-width: 850px;
	margin: 0 auto;
	padding: 10px 15px;
	/* Reduced padding */
	background: #ffffff;
	border-radius: 16px;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
	margin-top: 10px;
	/* Reduced margin */
	margin-bottom: 10px;
	/* Reduced margin */
	animation: fadeInUp 0.8s ease-out;
}

/* Header */
header {
	position: relative;
	margin-bottom: 10px;
	/* Reduced margin */
	text-align: center;
}

/* Inline header content */
.header-content {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	/* Reduced gap */
	margin-bottom: 10px;
	/* Reduced margin */
}

.logo-inline {
	width: 60px;
	height: 60px;
	border-radius: 12px;
	object-fit: contain;
}

.page-cover-image {
	width: 100%;
	height: 180px;
	object-fit: cover;
	border-radius: 16px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.page-header-icon {
	position: absolute;
	bottom: -16px;
	/* Adjusted position */
	left: 16px;
	/* Adjusted position */
	width: 60px;
	height: 60px;
	background: white;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

.page-header-icon img {
	width: 60px;
	height: 60px;
	border-radius: 10px;
}

/* Typography */
.page-title {
	font-size: 3.2rem;
	font-weight: 800;
	color: #0a0a0a;
	margin: 0;
	letter-spacing: -0.04em;
	line-height: 1.1;
}

.page-title-sub {
	font-size: 2rem;
	font-weight: 800;
	color: #0a0a0a;
	margin: 0;
	letter-spacing: -0.04em;
	line-height: 1.1;
}

.page-description {
	font-size: 1.2rem;
	color: #6b7280;
	margin-bottom: 20px;
	/* Reduced margin */
	text-align: center;
	font-weight: 400;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

/* Content */
.page-body {
	padding-top: 10px;
	/* Reduced padding */
}

/* Grid Layout for Links */
.links-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 10px;
	/* Reduced gap */
	margin: 0px 0;
	/* Reduced margin */
}

.page-body>p:first-child {
	font-size: 1.2rem;
	color: #666;
	margin-bottom: 20px;
	/* Reduced margin */
	text-align: center;
	font-weight: 400;
}

/* Dividers */
hr {
	border: none;
	height: 2px;
	background: linear-gradient(90deg, transparent, #e5e7eb 20%, #e5e7eb 80%, transparent);
	margin: 20px 0;
	/* Reduced margin */
	border-radius: 1px;
}

/* Link Cards */
.link-to-page {
	margin: 0px 0;
	/* Reduced margin */
	transition: all 0.3s ease;
	animation: fadeInUp 0.6s ease-out;
	animation-fill-mode: both;
}

.link-to-page:nth-child(1) {
	animation-delay: 0.05s;
}

.link-to-page:nth-child(2) {
	animation-delay: 0.1s;
}

.link-to-page:nth-child(3) {
	animation-delay: 0.15s;
}

.link-to-page:nth-child(4) {
	animation-delay: 0.2s;
}

.link-to-page:nth-child(5) {
	animation-delay: 0.25s;
}

.link-to-page:nth-child(6) {
	animation-delay: 0.3s;
}

.link-to-page:nth-child(7) {
	animation-delay: 0.35s;
}

.link-to-page:nth-child(8) {
	animation-delay: 0.4s;
}

.link-to-page a {
	display: flex;
	align-items: center;
	padding: 15px 20px;
	/* Reduced padding */
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	text-decoration: none;
	color: #111827;
	font-weight: 600;
	font-size: 1.1rem;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s ease, color 0.3s ease;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
	position: relative;
	overflow: hidden;
}

.link-to-page a::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(147, 51, 234, 0.05));
	opacity: 0;
	transition: opacity 0.3s ease;
}

.link-to-page a:hover {
	transform: translateY(-3px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
	border-color: #d1d5db;
}

.link-to-page a:hover::before {
	opacity: 1;
}

.link-to-page .icon {
	width: 28px;
	height: 28px;
	margin-right: 10px;
	/* Reduced margin */
	opacity: 0.8;
	filter: brightness(0.5) contrast(1.2);
	flex-shrink: 0;
	transition: all 0.3s ease;
	position: relative;
	z-index: 1;
}

.link-to-page a span {
	position: relative;
	z-index: 2;
}

.link-to-page a:hover .icon {
	opacity: 1;
	filter: brightness(0.3) contrast(1.4);
	transform: scale(1.1);
}

/* Footer Contact Section */
.page-body>p:nth-last-child(2) {
	margin-top: 15px;
	/* Reduced margin */
	padding: 5px;
	/* Reduced padding */
	background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
	border-radius: 16px;
	text-align: center;
	font-size: 1.05rem;
	line-height: 1.8;
	color: #4b5563;
	border: 1px solid #e5e7eb;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.page-body>p:nth-last-child(2) a {
	color: #3b82f6;
	text-decoration: none;
	font-weight: 700;
	padding: 3px 6px;
	/* Reduced padding */
	border-radius: 6px;
	transition: all 0.3s ease;
	background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(147, 51, 234, 0.1));
}

.page-body>p:nth-last-child(2) a:hover {
	background: linear-gradient(135deg, #3b82f6, #8b5cf6);
	color: white;
	text-decoration: none;
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

/* Loading spinner styles */
.loading-spinner {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 40px 20px;
	color: #9ca3af;
}

.spinner {
	width: 40px;
	height: 40px;
	border: 4px solid #374151;
	border-top: 4px solid #60a5fa;
	border-radius: 50%;
	animation: spin 1s linear infinite;
	margin-bottom: 16px;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.error-message {
	text-align: center;
	padding: 40px 20px;
	color: #fca5a5;
	background: #2d1b1b;
	border: 1px solid #7f1d1d;
	border-radius: 8px;
	margin: 20px 0;
}

[data-theme="dark"] {
	background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
}

[data-theme="dark"] .page {
	background: #1e1e1e;
	border: 1px solid #333;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .page-title {
	color: #ffffff;
}
[data-theme="dark"] .page-title-sub {
	color: #ffffff;
}


[data-theme="dark"] .page-description {
	color: #a1a1aa;
}

[data-theme="dark"] .link-to-page a {
	background: #2d2d2d;
	border-color: #404040;
	color: #f0f0f0;
}

[data-theme="dark"] .link-to-page a::before {
	background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(147, 51, 234, 0.1));
}

[data-theme="dark"] .link-to-page a:hover {
	border-color: #555;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .link-to-page .icon {
	filter: brightness(1.5) contrast(0.8);
}

[data-theme="dark"] .link-to-page a:hover .icon {
	filter: brightness(2) contrast(1);
}

[data-theme="dark"] hr {
	background: linear-gradient(90deg, transparent, #404040 20%, #404040 80%, transparent);
}

[data-theme="dark"] .page-body>p:nth-last-child(2) {
	background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
	border-color: #404040;
	color: #9ca3af;
}

[data-theme="dark"] .page-body>p:nth-last-child(2) a {
	color: #60a5fa;
	background: linear-gradient(135deg, rgba(96, 165, 250, 0.15), rgba(168, 85, 247, 0.15));
}

[data-theme="dark"] .page-body>p:nth-last-child(2) a:hover {
	background: linear-gradient(135deg, #60a5fa, #a855f7);
	box-shadow: 0 4px 12px rgba(96, 165, 250, 0.4);
}

/* Scrollable roadmap container */
.roadmap-scroll-container {
	position: relative;
	height: calc(100vh - 300px);
	/* Adjust for header, navigation, and padding */
	min-height: 400px;
	/* Minimum height for very small screens */
	max-height: 1200px;
	/* Maximum height to prevent it from being too tall */
	margin: 0px 0;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid #e5e7eb;
}

.roadmap-list {
	height: 100%;
	overflow-y: auto;
	padding: 20px;
	scroll-behavior: smooth;
}

/* Custom scrollbar for roadmap list */
.roadmap-list::-webkit-scrollbar {
	width: 6px;
}

.roadmap-list::-webkit-scrollbar-track {
	background: #f1f5f9;
	border-radius: 4px;
}

.roadmap-list::-webkit-scrollbar-thumb {
	background: #cbd5e1;
	border-radius: 4px;
	transition: background 0.3s ease;
}

.roadmap-list::-webkit-scrollbar-thumb:hover {
	background: #94a3b8;
}

/* Dark theme scrollbar for roadmap list */
[data-theme="dark"] .roadmap-list::-webkit-scrollbar-track {
	background: #2a2a2a;
}

[data-theme="dark"] .roadmap-list::-webkit-scrollbar-thumb {
	background: #525252;
}

[data-theme="dark"] .roadmap-list::-webkit-scrollbar-thumb:hover {
	background: #737373;
}



button.resource-item {
	flex: 1; 
	min-width: 120px; 
	color: white;
}

button.resource-item:hover {
	background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(147, 51, 234, 0.1));
}

/* Fade effects */
.fade-top,
.fade-bottom {
	position: absolute;
	left: 0;
	right: 0;
	height: 30px;
	pointer-events: none;
	z-index: 10;
}

.fade-top {
	top: 0;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.fade-bottom {
	bottom: 0;
	background: linear-gradient(to top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

/* Section headers in scrollable list */
.section-header {
	margin: 30px 0 20px 0;
	padding-bottom: 10px;
	border-bottom: 2px solid #e5e7eb;
}

.section-header:first-child {
	margin-top: 0;
}

.section-header .roadmap-title {
	margin: 0;
	font-size: 1.5rem;
}

/* Dark theme for scrollable container */
[data-theme="dark"] .roadmap-scroll-container {
	border-color: #404040;
}

[data-theme="dark"] .fade-top {
	background: linear-gradient(to bottom, rgba(30, 30, 30, 1) 0%, rgba(30, 30, 30, 0) 100%);
}

[data-theme="dark"] .fade-bottom {
	background: linear-gradient(to top, rgba(30, 30, 30, 1) 0%, rgba(30, 30, 30, 0) 100%);
}

[data-theme="dark"] .section-header {
	border-bottom-color: #404040;
}

/* Mobile responsive for scrollable container */
@media (max-width: 768px) {
	.roadmap-scroll-container {
		height: calc(100vh - 250px);
		/* Adjust for mobile header and navigation */
		min-height: 350px;
		/* Minimum height for mobile */
		max-height: 1000px;
		/* Maximum height for mobile */
		margin: 0px 0;
	}

	.roadmap-list {
		padding: 15px;
	}

	.section-header {
		margin: 20px 0 15px 0;
	}
}

@media (max-width: 480px) {
	.roadmap-scroll-container {
		height: calc(100vh - 220px);
		/* Adjust for small mobile */
		min-height: 300px;
		/* Minimum height for small mobile */
		max-height: 800px;
		/* Maximum height for small mobile */
	}

	.roadmap-list {
		padding: 10px;
	}
}

/* Floating Coffee Donation Button */

.floating-coffee-btn {
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: auto;
	height: 50px;
	background: rgba(32, 32, 32, 0.35);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1000;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	text-decoration: none;
	border: 1px solid rgba(64, 64, 64, 0.25);
	overflow: hidden;
	padding: 8px 8px;
}

.floating-coffee-btn:hover {
	transform: translateY(-3px) scale(1.05);
	background: transparent;
}

.floating-coffee-btn img {
	height: 42px;
	width: auto;
	object-fit: contain;
	transition: transform 0.3s ease;
}

.floating-coffee-btn:hover img {
	transform: scale(1.1);
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
	.floating-coffee-btn {
		height: 42px;
		bottom: 15px;
		right: 15px;
		border-width: 2px;
		padding: 6px 12px;
		border-radius: 21px;
	}
	
	.floating-coffee-btn img {
		height: 36px;
	}
	
	.floating-coffee-btn::before {
		border-radius: 21px;
	}
}

@media (max-width: 480px) {
	.floating-coffee-btn {
		height: 38px;
		bottom: 12px;
		right: 12px;
		padding: 5px 10px;
		border-radius: 19px;
	}
	
	.floating-coffee-btn img {
		height: 30px;
	}
	
	.floating-coffee-btn::before {
		border-radius: 19px;
	}
}

/* Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 768px) {
	.page {
		padding: 10px 8px;
		/* Reduced padding */
		margin-top: 8px;
		/* Reduced margin */
		margin-bottom: 8px;
		/* Reduced margin */
		border-radius: 12px;
	}

	.links-grid {
		grid-template-columns: 1fr 1fr;
		gap: 8px;
		/* Reduced gap */
		margin: 0px 0;
		/* Reduced margin */
	}

	.page-title {
		font-size: 2rem;
		margin: 8px 0 8px 0;
		/* Reduced margin */
	}
	
	.page-title-sub {
		font-size: 2rem;
		margin: 8px 0 8px 0;
		/* Reduced margin */
	}

	.page-cover-image {
		height: 140px;
		border-radius: 12px;
	}

	.page-header-icon {
		width: 50px;
		height: 50px;
		left: 8px;
		/* Adjusted position */
		bottom: -15px;
		/* Adjusted position */
	}

	.page-header-icon img {
		width: 35px;
		height: 35px;
	}

	.link-to-page a {
		padding: 12px 10px;
		/* Reduced padding */
		font-size: 1rem;
	}

	.link-to-page .icon {
		width: 24px;
		height: 24px;
		margin-right: 10px;
		/* Reduced margin */
	}

	.page-body>p:nth-last-child(2) {
		padding: 5px;
		/* Reduced padding */
		font-size: 1rem;
		margin-top: 30px;
		/* Reduced margin */
	}

	/* Mobile resource items */
	.resource-item {
		padding: 10px 12px;
		margin-bottom: 6px;
	}

	.resource-title {
		font-size: 1rem;
		gap: 6px;
	}

	.resource-title .resource-creator {
		font-size: 0.8rem;
	}

	.resource-description {
		font-size: 0.85rem;
	}
}

@media (max-width: 480px) {
	.page-title {
		font-size: 1.5rem;
	}
	.page-title-sub {
		font-size: 1.5rem;
	}

	.header-content {
		flex-direction: column;
		gap: 8px;
		/* Reduced gap */
	}

	.logo-inline {
		width: 45px;
		height: 45px;
	}

	.page-description {
		font-size: 1.1rem;
	}

	.links-grid {
		grid-template-columns: 1fr 1fr;
		gap: 6px;
	}

	.link-to-page a {
		padding: 8px 6px;
		/* Reduced padding */
		font-size: 0.85rem;
		flex-direction: column;
		text-align: center;
		gap: 4px;
	}

	.link-to-page .icon {
		width: 20px;
		height: 20px;
		margin-right: 0;
		margin-bottom: 2px;
	}

	/* Very small screens - ultra compact resources */
	.resource-item {
		padding: 8px 10px;
		margin-bottom: 4px;
	}

	.resource-header {
		margin-bottom: 4px;
		gap: 8px;
	}

	.resource-title {
		font-size: 0.95rem;
		line-height: 1.2;
		gap: 4px;
	}

	.resource-title .resource-creator {
		font-size: 0.75rem;
	}

	.resource-description {
		font-size: 0.8rem;
	}

	.external-link-icon svg {
		width: 12px;
		height: 12px;
	}
}

/* Resource page specific styles */
.resources-container {
	margin: 15px 0;
}

.resource-item {
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	padding: 12px 16px;
	margin-bottom: 8px;
	transition: all 0.2s ease;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.resource-item:hover {
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	border-color: #d1d5db;
}

.resource-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin-bottom: 6px;
	gap: 12px;
}

.resource-title {
	margin: 0;
	font-size: 1.1rem;
	font-weight: 600;
	line-height: 1.3;
	flex: 1;
	display: flex;
	align-items: baseline;
	gap: 8px;
	flex-wrap: wrap;
}

.resource-title a {
	color: #1f2937;
	text-decoration: none;
	transition: color 0.3s ease;
}

.resource-title .resource-creator {
	font-size: 0.85rem;
	font-weight: 400;
	color: #6b7280;
	margin: 0;
}

.resource-title a:hover {
	color: #3b82f6;
}

.external-link-icon {
	color: #6b7280;
	transition: color 0.3s ease;
	display: flex;
	align-items: center;
	flex-shrink: 0;
	margin-top: 2px;
}

.external-link-icon:hover {
	color: #3b82f6;
}

.external-link-icon svg {
	width: 14px;
	height: 14px;
}

.resource-description {
	color: #6b7280;
	font-size: 0.9rem;
	line-height: 1.4;
	margin: 0;
}

.no-resources {
	text-align: center;
	padding: 40px 20px;
	color: #6b7280;
}

.navigation {
	margin: 20px 0;
}

.back-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #3b82f6;
	text-decoration: none;
	font-weight: 500;
	padding: 8px 16px;
	border-radius: 8px;
	transition: all 0.3s ease;
	border: 1px solid #3b82f6;
}

.back-link:hover {
	background: #3b82f6;
	color: white;
}

/* Roadmap Section Styles */
.roadmap-section {
	margin: 15px 0;
}

.roadmap-title {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 20px;
	color: #1a1a1a;
}

.roadmap-title .icon {
	width: 24px;
	height: 24px;
}

.roadmap-container {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 16px;
}

.roadmap-item {
	background: #f8f9fa;
	border: 1px solid #e9ecef;
	border-radius: 8px;
	padding: 12px 16px;
	margin-bottom: 8px;
	transition: all 0.2s ease;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.roadmap-item:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	transform: translateY(-1px);
	border-color: #d1d5db;
}

/* Roadmap divider between upcoming and done items */
.roadmap-divider {
	border: none;
	height: 2px;
	background: linear-gradient(90deg, transparent 0%, #e5e7eb 20%, #e5e7eb 80%, transparent 100%);
	margin: 24px 0;
}

.roadmap-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 6px;
	gap: 12px;
}

.roadmap-topic {
	font-size: 1.0rem;
	font-weight: 600;
	color: #1a1a1a;
	margin: 0;
	flex: 1;
	line-height: 1.3;
}

.roadmap-status {
	padding: 4px 12px;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 500;
	white-space: nowrap;
}

.status-upcoming {
	background: #e3f2fd;
	color: #1565c0;
	border: 1px solid #bbdefb;
}

.status-in-progress {
	background: #fff3e0;
	color: #ef6c00;
	border: 1px solid #ffcc02;
}

.status-done {
	background: #e8f5e8;
	color: #2e7d32;
	border: 1px solid #a5d6a7;
}

.roadmap-description {
	color: #4a5568;
	line-height: 1.5;
	margin-bottom: 8px;
	white-space: pre-line;
	font-size: 0.9rem;
}

.roadmap-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}

.roadmap-date {
	font-size: 0.85rem;
	color: #6b7280;
	font-weight: 500;
}

.roadmap-source {
	font-size: 0.85rem;
	color: #3b82f6;
	text-decoration: none;
	font-weight: 500;
}

.roadmap-source:hover {
	text-decoration: underline;
}

.roadmap-link {
	text-align: center;
	margin-top: 20px;
}

.roadmap-link a {
	color: #3b82f6;
	text-decoration: none;
	font-weight: 500;
	padding: 8px 16px;
	border: 1px solid #3b82f6;
	border-radius: 8px;
	transition: all 0.3s ease;
}

.roadmap-link a:hover {
	background: #3b82f6;
	color: white;
}

.no-items,
.error {
	text-align: center;
	color: #6b7280;
	font-style: italic;
	padding: 40px 20px;
}

.error {
	color: #dc2626;
}

/* Dark theme styles for resource items */
[data-theme="dark"] .resource-item {
	background: #2a2a2a;
	border-color: #404040;
}

[data-theme="dark"] .resource-item:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
	border-color: #555;
}

[data-theme="dark"] .resource-title a {
	color: #f9fafb;
}

[data-theme="dark"] .resource-title a:hover {
	color: #60a5fa;
}

[data-theme="dark"] .resource-creator {
	color: #9ca3af;
}

[data-theme="dark"] .resource-description {
	color: #d1d5db;
}

[data-theme="dark"] .external-link-icon {
	color: #9ca3af;
}

[data-theme="dark"] .external-link-icon:hover {
	color: #60a5fa;
}

[data-theme="dark"] .back-link {
	color: #60a5fa;
	border-color: #60a5fa;
}

[data-theme="dark"] .back-link:hover {
	background: #60a5fa;
	color: #1a1a1a;
}

/* Dark theme styles for roadmap */
[data-theme="dark"] .roadmap-title {
	color: #f9fafb;
}

[data-theme="dark"] .roadmap-item {
	background: #2a2a2a;
	border-color: #404040;
}

[data-theme="dark"] .roadmap-item:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .roadmap-topic {
	color: #f9fafb;
}

[data-theme="dark"] .status-upcoming {
	background: #1e3a8a;
	color: #93c5fd;
	border-color: #1e40af;
}

[data-theme="dark"] .status-in-progress {
	background: #92400e;
	color: #fbbf24;
	border-color: #d97706;
}

[data-theme="dark"] .status-done {
	background: #14532d;
	color: #86efac;
	border-color: #16a34a;
}

[data-theme="dark"] .roadmap-description {
	color: #d1d5db;
}

[data-theme="dark"] .roadmap-date {
	color: #9ca3af;
}

[data-theme="dark"] .roadmap-source {
	color: #60a5fa;
}

[data-theme="dark"] .roadmap-link a {
	color: #60a5fa;
	border-color: #60a5fa;
}

[data-theme="dark"] .roadmap-link a:hover {
	background: #60a5fa;
	color: #1a1a1a;
}

[data-theme="dark"] .no-items,
[data-theme="dark"] .error {
	color: #9ca3af;
}

[data-theme="dark"] .error {
	color: #f87171;
}

/* Responsive design for roadmap */
@media (max-width: 768px) {
	.roadmap-header {
		flex-direction: row;
		align-items: flex-start;
		gap: 8px;
	}

	.roadmap-topic {
		font-size: 0.95rem;
	}

	.roadmap-status {
		padding: 3px 8px;
		font-size: 0.75rem;
		flex-shrink: 0;
	}
}

/* Dark theme roadmap divider */
[data-theme="dark"] .roadmap-divider {
	background: linear-gradient(90deg, transparent 0%, #404040 20%, #404040 80%, transparent 100%);
}