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

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

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

/* Chart Containers */
.chart-container {
    position: relative;
    width: 100%;
    height: 300px;
    margin: 0 auto;
}

/* Console Animation */
.console-line {
    opacity: 0;
    animation: fadeIn 0.3s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Flowchart Styling */
.flow-step {
    position: relative;
    transition: all 0.3s ease;
}

.flow-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.arrow-down::after {
    content: '↓';
    display: block;
    text-align: center;
    font-size: 24px;
    color: #94a3b8;
    margin: 8px 0;
}

@media (min-width: 768px) {
    .arrow-right::after {
        content: '→';
        display: block;
        position: absolute;
        right: -20px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 24px;
        color: #94a3b8;
    }

    .arrow-down::after {
        content: none;
    }
}

/* Syntax Highlighting Mock */
.code-keyword {
    color: #c678dd;
}

/* Purple */
.code-function {
    color: #61afef;
}

/* Blue */
.code-string {
    color: #98c379;
}

/* Green */
.code-comment {
    color: #5c6370;
    font-style: italic;
}

/* Grey */
.code-variable {
    color: #e06c75;
}

/* Red */