/* Google Fonts - Premium Typography */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary-font: 'Outfit', sans-serif;
    --secondary-font: 'Inter', sans-serif;
    --accent-blue: #3b82f6;
    --accent-blue-glow: rgba(59, 130, 246, 0.4);
    --accent-green: #22c55e;
    --accent-green-glow: rgba(34, 197, 94, 0.4);
    --accent-red: #ef4444;
    --accent-red-glow: rgba(239, 104, 104, 0.4);
    --glass-bg: rgba(17, 17, 17, 0.65);
    --glass-border: rgba(255, 255, 255, 0.08);
    --sidebar-width: 280px;
    --header-height: 72px;
}

body {
    font-family: var(--secondary-font);
    letter-spacing: -0.01em;
    -webkit-font-smoothing: antialiased;
    background-color: #0d0d0d;
    color: #ffffff;
}

h1,
h2,
h3,
h4,
.font-bold {
    font-family: var(--primary-font);
}

/* Enhanced Glassmorphism */
.glass-card,
.glass-effect {
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    background-color: var(--glass-bg);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.45);
}

/* High Resolution Gradients */
.bg-gradient-to-br {
    background-image: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
}

.text-transparent {
    background-size: 200% auto;
    animation: shine 4s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

/* Micro-animations */
button {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

button:active {
    transform: scale(0.96);
}

input {
    transition: all 0.3s ease;
}

input:focus {
    box-shadow: 0 0 0 4px var(--accent-glow);
}

/* Custom Scrollbar for High-Res look */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Signal Pulse enhancement */
.animate-pulse {
    animation: premium-pulse 2.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes premium-pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
        filter: brightness(1);
    }

    50% {
        opacity: 0.85;
        transform: scale(0.995);
        filter: brightness(1.1);
    }
}