@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;600;700;800&display=swap');

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #f8fafc;
    color: #1e293b;
    font-size: 16px;
    line-height: 1.6;
}

h1 {
    color: #0f172a;
    font-weight: 800;
    letter-spacing: -1px;
}

h2 {
    color: #0f172a;
    font-weight: 700;
    letter-spacing: -0.5px;
}

h3, h4, h5, h6 {
    color: #1e293b;
    font-weight: 700;
}

p {
    color: #475569;
    font-weight: 400;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-blur {
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.card-shadow {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.btn-primary {
    background-color: #2563eb;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.stat-card {
    border-left: 4px solid #2563eb;
}

/* Chart Placeholder Animation */
@keyframes grow {
    from { height: 0; opacity: 0; }
    to { height: 100%; opacity: 1; }
}

.bar-anim {
    animation: grow 1.5s ease-out forwards;
}

