/* Custom Theme Animations and Utility Rules */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,600&family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&display=swap');

:root {
	--color-navy-primary: #082A5E;
	--color-navy-dark: #071E3D;
	--color-navy-950: #051833;
	--color-yellow-primary: #FFC107;
	--font-sans: 'Poppins', sans-serif;
	--font-mono: 'JetBrains Mono', monospace;
}

body {
	font-family: var(--font-sans);
	background-color: #051833;
	color: #F8FAFC;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
	width: 8px;
}
::-webkit-scrollbar-track {
	background: #071E3D;
}
::-webkit-scrollbar-thumb {
	background: #082A5E;
	border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
	background: #FFC107;
}

/* Animations */
@keyframes spin {
	to { transform: rotate(360deg); }
}
.animate-spin {
	animation: spin 1s linear infinite;
}

@keyframes pulse {
	50% { opacity: .5; }
}
.animate-pulse {
	animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
