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

:root {
    --bg-color: #0f0f13;
    --card-bg: #1c1c24;
    --primary: #7c3aed;
    --primary-hover: #6d28d9;
    --accent: #22d3ee;
    --text-main: #ffffff;
    --text-muted: #9ca3af;
    --success: #10b981;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    margin: 0;
    padding-bottom: 80px; /* Space for bottom nav */
}

/* Transitions */
.page-transition {
    animation: fadeIn 0.3s ease-in-out;
}

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

/* Glassmorphism Utilities */
.glass {
    background: rgba(28, 28, 36, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-color);
}
::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 3px;
}

/* Navigation Active State */
.nav-item.active {
    color: var(--primary);
}
.nav-item.active svg {
    stroke: var(--primary);
}