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

body {
    font-family: 'Inter', sans-serif;
}

/* Custom scrollbar for think tank menu */
#thinkTankMenu::-webkit-scrollbar {
    width: 6px;
}

#thinkTankMenu::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

#thinkTankMenu::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

#thinkTankMenu::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Animation classes */
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.9; }
}

.pulse-animation {
    animation: pulse 0.3s ease-in-out;
}

/* Capsule styles */
.capsule-label {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Chart bar animations */
.chart-bar {
    transform-origin: bottom;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Historical event lines */
.historical-line {
    stroke-dasharray: 5, 5;
    animation: dash 20s linear infinite;
}

@keyframes dash {
    to {
        stroke-dashoffset: -100;
    }
}

/* Glow effects */
.glow-pink {
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.3);
}

.glow-cyan {
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.3);
}

.glow-purple {
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.3);
}