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

:root {
    --bg-dark: #050a14;
    --bg-card: #0f172a;
    --accent-cyan: #00d4ff;
    --accent-green: #34d399;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-dark);
    color: #e2e8f0;
    margin: 0;
    overflow-x: hidden;
}

.text-gradient {
    background: linear-gradient(135deg, #00d4ff 0%, #0072ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glass {
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.glass:hover {
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 10px 30px -10px rgba(0, 212, 255, 0.2);
}

.stats-card {
    background: linear-gradient(145deg, #0f172a, #1e293b);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.stats-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-cyan);
}

.badge {
    background: rgba(0, 212, 255, 0.1);
    color: var(--accent-cyan);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(0, 212, 255, 0.2);
    display: inline-block;
}

.section-padding {
    padding: 100px 0;
}

.cursor-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
    z-index: -1;
}

/* Sidebar navigation */
.sidebar {
    background: rgba(5, 10, 20, 0.95);
    backdrop-filter: blur(10px);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-link {
    color: #94a3b8;
    transition: color 0.3s ease;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 1.5rem;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-cyan);
}

.big-number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--accent-cyan);
    font-family: var(--font-display);
    line-height: 1;
}

.chart-container {
    position: relative;
    max-width: 150px;
    margin: 0 auto;
}

canvas {
    max-width: 100%;
}

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

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

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

details > summary::-webkit-details-marker {
    display: none;
}

.text-justify {
    text-justify: inter-word;
}
