@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
	--font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	--font-title: 'Outfit', var(--font-sans);

	/* Theme Palette - Ultra Dark Premium Space */
	--bg-raw: #05070f;
	--bg-primary: #080b16;
	--bg-glass: rgba(9, 13, 26, 0.6);
	--bg-glass-heavy: rgba(7, 10, 20, 0.85);
	--bg-glass-hover: rgba(18, 25, 48, 0.7);
	--border-glass: rgba(255, 255, 255, 0.05);
	--border-glass-hover: rgba(255, 255, 255, 0.12);

	/* Text colors */
	--text-primary: #f8fafc;
	--text-secondary: #94a3b8;
	--text-muted: #64748b;

	/* Accents & Glows - HSL tailored */
	--accent-purple: #8B5CF6;
	--accent-purple-glow: rgba(139, 92, 246, 0.25);
	--accent-purple-dark: #6D28D9;
	
	--accent-emerald: #10B981;
	--accent-emerald-glow: rgba(16, 185, 129, 0.2);
	
	--accent-gold: #F59E0B;
	--accent-gold-glow: rgba(245, 158, 11, 0.2);

	--accent-blue: #3B82F6;
	--accent-blue-glow: rgba(59, 130, 246, 0.25);

	--accent-red: #EF4444;
	--accent-red-glow: rgba(239, 68, 68, 0.2);

	/* Shadows */
	--shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
	--shadow-glow: 0 0 20px var(--accent-purple-glow);

	/* Transition speed */
	--transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
	--transition-fast: all 0.15s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Base resets & styles */

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

body {
	font-family: var(--font-sans);
	background-color: var(--bg-raw);
	background-image: 
		radial-gradient(at 0% 0%, rgba(139, 92, 246, 0.08) 0px, transparent 50%),
		radial-gradient(at 50% 0%, rgba(16, 185, 129, 0.04) 0px, transparent 50%),
		radial-gradient(at 100% 0%, rgba(59, 130, 246, 0.08) 0px, transparent 50%);
	background-attachment: fixed;
	color: var(--text-primary);
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

/* Faint background grid overlay for high-tech premium feel */

body::before {
	content: '';
	position: fixed;
	inset: 0;
	z-index: -1;
	background-image: linear-gradient(rgba(255, 255, 255, 0.003) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.003) 1px, transparent 1px);
	background-size: 40px 40px;
	pointer-events: none;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-title);
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--text-primary);
}

a {
	color: var(--accent-purple);
	text-decoration: none;
	transition: var(--transition-smooth);
}

a:hover {
	color: #a78bfa;
}

/* Scrollbar styles */

::-webkit-scrollbar {
	width: 6px;
	height: 6px;
}

::-webkit-scrollbar-track {
	background: rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb {
	background: rgba(255, 255, 255, 0.1);
	border-radius: 3px;
	transition: var(--transition-smooth);
}

::-webkit-scrollbar-thumb:hover {
	background: rgba(255, 255, 255, 0.25);
}

/* Ambient Blur Blobs */

.ambient-blob {
	position: absolute;
	width: 300px;
	height: 300px;
	border-radius: 50%;
	filter: blur(120px);
	opacity: 0.15;
	z-index: -2;
	pointer-events: none;
	animation: pulseGlow 10s ease-in-out infinite alternate;
}

.blob-purple { background: var(--accent-purple); top: 10%; left: 5%; }

.blob-emerald { background: var(--accent-emerald); top: 60%; right: 5%; }

.blob-blue { background: var(--accent-blue); top: 30%; left: 50%; }

@keyframes pulseGlow {
	0% { transform: scale(1) translate(0, 0); opacity: 0.12; }
	100% { transform: scale(1.3) translate(30px, -20px); opacity: 0.2; }
}

/* Page transitions */

.fade-in-up {
	animation: fadeInUp 0.5s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.scale-in {
	animation: scaleIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

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

@keyframes scaleIn {
	from { opacity: 0; transform: scale(0.95); }
	to { opacity: 1; transform: scale(1); }
}

/* Glassmorphism primitives */

.glass-panel {
	background: var(--bg-glass);
	backdrop-filter: blur(20px) saturate(180%);
	-webkit-backdrop-filter: blur(20px) saturate(180%);
	border: 1px solid var(--border-glass);
	border-radius: 12px;
	box-shadow: var(--shadow-glass);
	padding: 1.5rem;
	transition: var(--transition-smooth);
	position: relative;
	overflow: hidden;
}

.glass-panel:hover {
	border-color: var(--border-glass-hover);
	background: var(--bg-glass-hover);
	box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.6);
	transform: translateY(-2px);
}

/* Glowing container card */

.glass-card-glow {
	position: relative;
}

.glass-card-glow::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 12px;
	padding: 1px;
	background: linear-gradient(to bottom right, var(--accent-purple), transparent);
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
	opacity: 0.3;
	transition: var(--transition-smooth);
}

.glass-card-glow:hover::before {
	opacity: 0.8;
	background: linear-gradient(to bottom right, var(--accent-purple), var(--accent-emerald));
}

/* Inputs & Form Styling */

input, select, textarea {
	width: 100%;
	font-family: var(--font-sans);
	font-size: 0.95rem;
	padding: 0.75rem 1rem;
	background: rgba(0, 0, 0, 0.35);
	border: 1px solid var(--border-glass);
	border-radius: 8px;
	color: var(--text-primary);
	outline: none;
	transition: var(--transition-smooth);
}

input:hover, select:hover, textarea:hover {
	border-color: var(--border-glass-hover);
	background: rgba(0, 0, 0, 0.45);
}

input:focus, select:focus, textarea:focus {
	border-color: var(--accent-purple);
	background: rgba(0, 0, 0, 0.55);
	box-shadow: 0 0 0 3px var(--accent-purple-glow);
}

label {
	display: block;
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--text-secondary);
	margin-bottom: 0.5rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

/* Form Helper Text */

.form-help {
	font-size: 0.8rem;
	color: var(--text-muted);
	margin-top: 0.4rem;
}

/* Buttons with premium styling & hover animations */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-sans);
	font-weight: 600;
	font-size: 0.88rem;
	padding: 0.7rem 1.25rem;
	border-radius: 8px;
	border: 1px solid transparent;
	cursor: pointer;
	transition: var(--transition-smooth);
	white-space: nowrap;
	gap: 0.5rem;
	position: relative;
	overflow: hidden;
}

.btn:active {
	transform: scale(0.98) !important;
}

.btn-primary {
	background: var(--accent-purple);
	color: #fff;
	box-shadow: 0 4px 14px 0 var(--accent-purple-glow);
}

.btn-primary:hover:not(:disabled) {
	background: var(--accent-purple-dark);
	transform: translateY(-1px);
	box-shadow: 0 6px 20px 0 rgba(139, 92, 246, 0.4);
}

.btn-secondary {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid var(--border-glass);
	color: var(--text-primary);
}

.btn-secondary:hover:not(:disabled) {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.2);
	transform: translateY(-1px);
}

.btn-emerald {
	background: var(--accent-emerald);
	color: #fff;
	box-shadow: 0 4px 14px 0 var(--accent-emerald-glow);
}

.btn-emerald:hover:not(:disabled) {
	background: #059669;
	transform: translateY(-1px);
	box-shadow: 0 6px 20px 0 rgba(16, 185, 129, 0.35);
}

.btn-danger {
	background: rgba(239, 68, 68, 0.1);
	border: 1px solid rgba(239, 68, 68, 0.2);
	color: #fca5a5;
}

.btn-danger:hover:not(:disabled) {
	background: rgba(239, 68, 68, 0.2);
	border-color: rgba(239, 68, 68, 0.4);
	color: #fff;
	transform: translateY(-1px);
}

.btn:disabled {
	opacity: 0.4;
	cursor: not-allowed;
	transform: none !important;
	box-shadow: none !important;
}

/* Alerts */

.alert {
	padding: 1rem;
	border-radius: 8px;
	font-size: 0.9rem;
	margin-bottom: 1.5rem;
	display: flex;
	align-items: center;
	gap: 0.75rem;
	border: 1px solid transparent;
	backdrop-filter: blur(8px);
}

.alert-success {
	background: rgba(16, 185, 129, 0.08);
	border-color: rgba(16, 185, 129, 0.15);
	color: #34d399;
	box-shadow: 0 4px 20px rgba(16, 185, 129, 0.05);
}

.alert-error {
	background: rgba(239, 68, 68, 0.08);
	border-color: rgba(239, 68, 68, 0.15);
	color: #f87171;
	box-shadow: 0 4px 20px rgba(239, 68, 68, 0.05);
}

/* Magic: The Gathering Card Rarity Glows */

.rarity-common {
	border-color: var(--border-glass);
}

.rarity-uncommon {
	border-color: rgba(59, 130, 246, 0.25) !important;
	box-shadow: 0 0 12px rgba(59, 130, 246, 0.12);
}

.rarity-rare {
	border-color: rgba(245, 158, 11, 0.35) !important;
	box-shadow: 0 0 15px rgba(245, 158, 11, 0.15);
}

.rarity-mythic {
	border-color: rgba(239, 68, 68, 0.45) !important;
	box-shadow: 0 0 20px rgba(239, 68, 68, 0.22);
}

/* Spinner */

.spinner {
	width: 24px;
	height: 24px;
	border: 2px solid rgba(255, 255, 255, 0.1);
	border-top-color: var(--accent-purple);
	border-radius: 50%;
	animation: spin 0.8s linear infinite;
}

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

/* Skeleton Loading Animation */

.skeleton {
	background: linear-gradient(90deg, rgba(255,255,255,0.02) 25%, rgba(255,255,255,0.07) 50%, rgba(255,255,255,0.02) 75%);
	background-size: 200% 100%;
	animation: loading 1.5s infinite;
	border-radius: 4px;
}

@keyframes loading {
	0% { background-position: 200% 0; }
	100% { background-position: -200% 0; }
}

/* Common Layout Helper Classes */

.container {
	max-width: 2500px;
	width: 92%;
	margin: 0 auto;
	padding: 2rem 0;
	box-sizing: border-box;
}

@media (max-width: 768px) {
	.container {
		width: 100%;
		padding: 1.5rem 1.25rem;
	}
}

.text-center {
	text-align: center;
}

.flex-between {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.grid-cols-2 {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
}

.grid-cols-3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.grid-cols-4 {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
}

/* 3D hover effects utility */

.card-3d {
	transition: transform 0.25s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.card-3d:hover {
	transform: translateY(-4px) scale(1.02);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Custom Text Gradient styling */

.text-gradient-purple {
	background: linear-gradient(135deg, #a78bfa, #c084fc);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.text-gradient-emerald {
	background: linear-gradient(135deg, #34d399, #059669);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

@media (max-width: 1024px) {
	.grid-cols-4 { grid-template-columns: repeat(3, 1fr); }
	.container { padding: 1.5rem; }
}

@media (max-width: 768px) {
	.grid-cols-3, .grid-cols-4 { grid-template-columns: repeat(2, 1fr); }
	.grid-cols-2 { grid-template-columns: 1fr; }
	.flex-between { flex-direction: column; align-items: stretch; gap: 1rem; }
}

@media (max-width: 480px) {
	.grid-cols-2, .grid-cols-3, .grid-cols-4 { grid-template-columns: 1fr; }
	.container { padding: 1rem; }
}

	.navbar.svelte-12qhfyh {
		position: sticky;
		top: 0;
		z-index: 100;
		background: rgba(10, 14, 26, 0.7);
		backdrop-filter: blur(20px) saturate(180%);
		-webkit-backdrop-filter: blur(20px) saturate(180%);
		border-bottom: 1px solid var(--border-glass);
		box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
	}
	.nav-container.svelte-12qhfyh {
		max-width: 2500px;
		width: 92%;
		margin: 0 auto;
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 0.85rem 0;
		gap: 1.5rem;
	}

	@media (max-width: 768px) {
		.nav-container.svelte-12qhfyh {
			width: 100%;
			padding: 0.85rem 1.25rem;
		}
	}
	.nav-brand.svelte-12qhfyh {
		font-family: var(--font-title);
		font-weight: 800;
		font-size: 1.45rem;
		color: var(--text-primary);
		text-decoration: none;
		letter-spacing: -0.03em;
		display: flex;
		align-items: center;
		gap: 0.5rem;
		transition: var(--transition-smooth);
	}
	.nav-brand.svelte-12qhfyh:hover {
		transform: scale(1.02);
		text-shadow: 0 0 15px var(--accent-purple-glow);
	}
	.accent-text.svelte-12qhfyh {
		background: linear-gradient(135deg, var(--accent-purple), var(--accent-emerald));
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
	}
	.nav-links.svelte-12qhfyh {
		display: flex;
		align-items: center;
		gap: 1.5rem;
	}
	.nav-links.svelte-12qhfyh a:where(.svelte-12qhfyh) {
		color: var(--text-secondary);
		transition: var(--transition-smooth);
		text-decoration: none;
		font-weight: 500;
		font-size: 0.95rem;
		position: relative;
		padding: 0.25rem 0;
	}
	.nav-links.svelte-12qhfyh a:where(.svelte-12qhfyh):hover, .nav-links.svelte-12qhfyh a.active:where(.svelte-12qhfyh) {
		color: var(--text-primary);
	}
	.nav-links.svelte-12qhfyh a.active:where(.svelte-12qhfyh)::after {
		content: '';
		position: absolute;
		bottom: -2px;
		left: 0;
		right: 0;
		height: 2px;
		background: linear-gradient(90deg, var(--accent-purple), var(--accent-emerald));
		border-radius: 2px;
	}
	.nav-auth.svelte-12qhfyh {
		display: flex;
		align-items: center;
		gap: 1.25rem;
	}
	.username.svelte-12qhfyh {
		color: var(--text-secondary);
		font-size: 0.9rem;
		font-weight: 600;
		transition: var(--transition-smooth);
	}
	.username.svelte-12qhfyh:hover, .username.active.svelte-12qhfyh {
		color: var(--text-primary);
		text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
	}
	.btn-logout.svelte-12qhfyh {
		background: rgba(255, 255, 255, 0.04);
		border: 1px solid var(--border-glass);
		padding: 0.45rem 1rem;
		border-radius: 6px;
		color: var(--text-primary);
		font-size: 0.85rem;
		font-weight: 600;
		transition: var(--transition-smooth);
	}
	.btn-logout.svelte-12qhfyh:hover {
		background: rgba(239, 68, 68, 0.15);
		border-color: rgba(239, 68, 68, 0.3);
		color: #fecaca;
	}
	.btn-login.svelte-12qhfyh {
		background: var(--accent-purple);
		color: white !important;
		padding: 0.45rem 1.25rem;
		border-radius: 6px;
		font-size: 0.85rem;
		font-weight: 600;
		text-align: center;
		box-shadow: 0 4px 10px var(--accent-purple-glow);
		transition: var(--transition-smooth);
	}
	.btn-login.svelte-12qhfyh:hover {
		background: var(--accent-purple-dark);
		box-shadow: 0 6px 15px rgba(139, 92, 246, 0.4);
	}
	.page-container.svelte-12qhfyh {
		min-height: calc(100vh - 60px);
	}
	.lang-toggle-btn.svelte-12qhfyh {
		display: flex;
		align-items: center;
		gap: 0.45rem;
		background: rgba(255, 255, 255, 0.04);
		border: 1px solid var(--border-glass);
		padding: 0.45rem 0.85rem;
		border-radius: 6px;
		color: var(--text-primary);
		font-family: var(--font-sans);
		font-size: 0.85rem;
		font-weight: 600;
		cursor: pointer;
		transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
		outline: none;
	}
	.lang-toggle-btn.svelte-12qhfyh:hover {
		background: rgba(255, 255, 255, 0.08);
		border-color: rgba(255, 255, 255, 0.2);
		transform: translateY(-1px);
		box-shadow: 0 4px 12px rgba(139, 92, 246, 0.15);
	}
	.lang-toggle-btn.svelte-12qhfyh:active {
		transform: translateY(0);
	}
	.flag-icon.svelte-12qhfyh {
		font-size: 1rem;
		line-height: 1;
	}
	.lang-text.svelte-12qhfyh {
		color: var(--text-secondary);
		transition: color 0.2s ease;
	}
	.lang-toggle-btn.svelte-12qhfyh:hover .lang-text:where(.svelte-12qhfyh) {
		color: var(--text-primary);
	}

	/* Dropdown Menu */
	.lang-dropdown.svelte-12qhfyh {
		position: relative;
		display: inline-block;
	}
	.arrow-icon.svelte-12qhfyh {
		font-size: 0.55rem;
		opacity: 0.6;
		margin-left: 0.15rem;
	}
	.dropdown-menu.svelte-12qhfyh {
		position: absolute;
		top: calc(100% + 8px);
		right: 0;
		background: rgba(10, 14, 26, 0.9);
		backdrop-filter: blur(20px) saturate(180%);
		-webkit-backdrop-filter: blur(20px) saturate(180%);
		border: 1px solid var(--border-glass);
		border-radius: 8px;
		padding: 0.4rem;
		display: flex;
		flex-direction: column;
		gap: 0.2rem;
		min-width: 140px;
		box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
		z-index: 1000;
		animation: svelte-12qhfyh-dropdownFade 0.25s cubic-bezier(0.16, 1, 0.3, 1);
	}
	@keyframes svelte-12qhfyh-dropdownFade {
		from { opacity: 0; transform: translateY(-4px); }
		to { opacity: 1; transform: translateY(0); }
	}
	.dropdown-item.svelte-12qhfyh {
		display: flex;
		align-items: center;
		gap: 0.5rem;
		padding: 0.5rem 0.75rem;
		background: transparent;
		border: none;
		border-radius: 6px;
		color: var(--text-secondary);
		font-family: var(--font-sans);
		font-size: 0.85rem;
		font-weight: 500;
		text-align: left;
		cursor: pointer;
		width: 100%;
		transition: all 0.2s ease;
	}
	.dropdown-item.svelte-12qhfyh:hover, .dropdown-item.active.svelte-12qhfyh {
		background: rgba(255, 255, 255, 0.06);
		color: var(--text-primary);
	}
	.dropdown-item.active.svelte-12qhfyh {
		border: 1px solid rgba(139, 92, 246, 0.2);
		background: rgba(139, 92, 246, 0.08);
	}
	.item-flag.svelte-12qhfyh {
		font-size: 1rem;
	}
	.item-name.svelte-12qhfyh {
		flex: 1;
	}

	/* Mobile navigation controls */
	.hamburger-btn.svelte-12qhfyh {
		display: none;
		flex-direction: column;
		justify-content: space-between;
		width: 20px;
		height: 14px;
		background: transparent;
		border: none;
		cursor: pointer;
		padding: 0;
		z-index: 1001;
	}
	.hamburger-line.svelte-12qhfyh {
		width: 100%;
		height: 2px;
		background-color: var(--text-primary);
		transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
		border-radius: 2px;
	}
	.hamburger-line.open.svelte-12qhfyh:nth-child(1) {
		transform: translateY(6px) rotate(45deg);
	}
	.hamburger-line.open.svelte-12qhfyh:nth-child(2) {
		opacity: 0;
	}
	.hamburger-line.open.svelte-12qhfyh:nth-child(3) {
		transform: translateY(-6px) rotate(-45deg);
	}

	/* Drawer Backdrop */
	.mobile-drawer-backdrop.svelte-12qhfyh {
		position: fixed;
		inset: 0;
		background: rgba(0, 0, 0, 0.65);
		backdrop-filter: blur(8px);
		z-index: 999;
	}

	/* Drawer */
	.mobile-drawer.svelte-12qhfyh {
		position: fixed;
		top: 0;
		right: 0;
		width: 280px;
		height: 100%;
		background: rgba(10, 14, 26, 0.95);
		backdrop-filter: blur(24px);
		-webkit-backdrop-filter: blur(24px);
		border-left: 1px solid var(--border-glass);
		padding: 1.5rem;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		z-index: 1000;
		box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
		animation: svelte-12qhfyh-drawerSlide 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
	}
	@keyframes svelte-12qhfyh-drawerSlide {
		from { transform: translateX(100%); }
		to { transform: translateX(0); }
	}

	.drawer-header.svelte-12qhfyh {
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin-bottom: 2.5rem;
	}
	.drawer-close-btn.svelte-12qhfyh {
		background: transparent;
		border: none;
		font-size: 1.25rem;
		color: var(--text-secondary);
		cursor: pointer;
		transition: color 0.2s;
	}
	.drawer-close-btn.svelte-12qhfyh:hover {
		color: var(--text-primary);
	}
	
	.drawer-links.svelte-12qhfyh {
		display: flex;
		flex-direction: column;
		gap: 1.25rem;
		flex-grow: 1;
	}
	.drawer-links.svelte-12qhfyh a:where(.svelte-12qhfyh) {
		font-family: var(--font-title);
		font-size: 1.15rem;
		font-weight: 600;
		color: var(--text-secondary);
		text-decoration: none;
		display: flex;
		align-items: center;
		gap: 0.75rem;
		padding: 0.4rem 0.75rem;
		border-radius: 8px;
		transition: var(--transition-smooth);
	}
	.drawer-links.svelte-12qhfyh a:where(.svelte-12qhfyh):hover, .drawer-links.svelte-12qhfyh a.active:where(.svelte-12qhfyh) {
		color: var(--text-primary);
		background: rgba(255, 255, 255, 0.04);
	}
	.drawer-links.svelte-12qhfyh a.active:where(.svelte-12qhfyh) {
		border: 1px solid var(--border-glass);
		background: rgba(139, 92, 246, 0.08);
	}

	.drawer-footer.svelte-12qhfyh {
		display: flex;
		flex-direction: column;
		gap: 1.5rem;
		border-top: 1px solid var(--border-glass);
		padding-top: 1.5rem;
	}
	.mobile-lang-row.svelte-12qhfyh {
		display: flex;
		gap: 0.5rem;
		justify-content: space-between;
	}
	.mobile-lang-btn.svelte-12qhfyh {
		flex: 1;
		font-size: 1.2rem;
		padding: 0.4rem 0;
		background: rgba(255, 255, 255, 0.03);
		border: 1px solid var(--border-glass);
		border-radius: 6px;
		cursor: pointer;
		transition: var(--transition-smooth);
	}
	.mobile-lang-btn.svelte-12qhfyh:hover, .mobile-lang-btn.active.svelte-12qhfyh {
		background: rgba(255, 255, 255, 0.08);
		border-color: rgba(255, 255, 255, 0.2);
	}
	.mobile-lang-btn.active.svelte-12qhfyh {
		background: rgba(139, 92, 246, 0.1);
		border-color: var(--accent-purple);
	}
	.mobile-profile-link.svelte-12qhfyh {
		font-weight: 600;
		color: var(--text-primary);
		text-align: center;
		padding: 0.5rem;
		border-radius: 8px;
		border: 1px solid var(--border-glass);
		background: rgba(255, 255, 255, 0.02);
	}

	/* Responsive Utilities */
	.desktop-only.svelte-12qhfyh {
		display: flex;
	}
	.mobile-only.svelte-12qhfyh {
		display: none;
	}

	@media (max-width: 900px) {
		.desktop-only.svelte-12qhfyh {
			display: none !important;
		}
		.mobile-only.svelte-12qhfyh {
			display: flex !important;
		}
		.hamburger-btn.svelte-12qhfyh {
			display: flex;
		}
		.nav-container.svelte-12qhfyh {
			padding: 0.85rem 1.25rem;
		}
	}
