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

:root {
    --bg-primary: #000000;
    --bg-secondary: #09090b;
    --border-color: #27272a;
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --accent-cyan: #22d3ee;
    --accent-blue: #3b82f6;
    --accent-purple: #a855f7;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.mono {
    font-family: 'JetBrains Mono', monospace;
}

/* Background Texture Overlay */
.bg-grid {
    position: fixed;
    inset: 0;
    background-image: radial-gradient(rgba(39, 39, 42, 0.4) 1px, transparent 1px);
    background-size: 24px 24px;
    z-index: -1;
    pointer-events: none;
}

/* Modern Glass Card */
.glass-card {
    background: rgba(9, 9, 11, 0.4);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    border-color: rgba(34, 211, 238, 0.2);
    background: rgba(12, 12, 15, 0.6);
    transform: translateY(-2px);
}

/* Navbar Style */
.nav-blur {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
}

/* Typography Gradient */
.text-gradient {
    background: linear-gradient(135deg, #ffffff 0%, #a1a1aa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-accent-gradient {
    background: linear-gradient(135deg, #22d3ee 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Interactive Elements */
.btn-primary {
    background: #ffffff;
    color: #000000;
    font-weight: 600;
    padding: 0.625rem 1.25rem;
    border-radius: 8px;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    background: #e4e4e7;
    transform: scale(1.02);
}

.btn-secondary {
    background: rgba(39, 39, 42, 0.5);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.625rem 1.25rem;
    border-radius: 8px;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary:hover {
    border-color: var(--text-secondary);
    background: rgba(63, 63, 70, 0.5);
}

/* Badge styles */
.badge {
    padding: 0.25rem 0.625rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
    font-family: 'JetBrains Mono', monospace;
    border-width: 1px;
}

.badge-cyan {
    background: rgba(34, 211, 238, 0.1);
    color: #22d3ee;
    border-color: rgba(34, 211, 238, 0.2);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: #3f3f46;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #52525b;
}

/* Layer Specific Colors */
.layer-l1 { border-left: 4px solid #22d3ee; }
.layer-l2 { border-left: 4px solid #22c55e; }
.layer-l3 { border-left: 4px solid #3b82f6; }
.layer-l4 { border-left: 4px solid #a855f7; }
.layer-l5 { border-left: 4px solid #ec4899; }
.layer-l6 { border-left: 4px solid #f43f5e; }
.layer-l7 { border-left: 4px solid #f97316; }
.layer-l8 { border-left: 4px solid #eab308; }
.layer-l9 { border-left: 4px solid #14b8a6; }
.layer-l10 { border-left: 4px solid #6366f1; }
