@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono&display=swap');    
body {
	font-family: 'Inter', sans-serif;
	background-color: #0a0a0a;
	color: #ededed;
}
.mono {
	font-family: 'JetBrains+Mono', monospace;
}
.scrollbar-thin::-webkit-scrollbar {
	width: 6px;
}
.scrollbar-thin::-webkit-scrollbar-track {
	background: transparent;
}
.scrollbar-thin::-webkit-scrollbar-thumb {
	background: #262626;
	border-radius: 10px;
}
.scrollbar-thin::-webkit-scrollbar-thumb:hover {
	background: #404040;
}
.glass-panel {
	background: #111111;
	border: 1px solid #262626;
}
input[type=range] {
	accent-color: #3b82f6;
}
.voice-item:hover {
	background: rgba(255, 255, 255, 0.05);
}
@keyframes pulse-blue {
	0%, 100% { color: #3b82f6; opacity: 1; }
	50% { color: #3b82f6; opacity: 0.5; }
}
.animate-pulse-blue {
	animation: pulse-blue 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}