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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: -0.02em;
}

.glass-card {
    background: rgba(17, 24, 39, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.input-dark {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 12px 16px;
    border-radius: 12px;
    width: 100%;
    outline: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.875rem;
}

.input-dark:focus {
    border-color: #eab308;
    background: rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 0 4px rgba(234, 179, 8, 0.08);
}

.btn-primary {
    background: #eab308;
    color: #0b0f1a;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(234, 179, 8, 0.2);
    font-weight: 900;
}

.btn-primary:hover {
    background: #facc15;
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(234, 179, 8, 0.3);
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 12px;
    color: #94a3b8;
    font-size: 0.8rem;
    font-weight: 700;
    transition: all 0.2s ease;
    letter-spacing: -0.01em;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

.nav-link.active {
    background: rgba(234, 179, 8, 0.12);
    color: #eab308;
}

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

.animate-fade-in {
    animation: fadeIn 0.35s ease-out forwards;
}

/* Hide scrollbar */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

/* Stats bars */
.stat-bar { height: 8px; background: rgba(255,255,255,0.05); border-radius: 4px; overflow: hidden; }
.stat-fill { height: 100%; border-radius: 4px; transition: width 1s cubic-bezier(0.4,0,0.2,1); }

/* Tab buttons reset */
.tab-btn { border-bottom: 2px solid transparent; transition: all 0.2s ease; }

/* Status dot */
.status-dot { width: 6px; height: 6px; border-radius: 50%; }

/* Mobile sidebar */
@media (max-width: 768px) {
    aside { position: relative; width: 100%; }
}
