/* styles.css */
@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;700&family=Inter:wght@400;700;900&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background-color: #0c1021;
    color: #cdd6f4;
}

.font-mono {
    font-family: 'Fira Code', monospace;
}

/* Retro Glow Effect */
.text-glow {
    text-shadow: 0 0 8px rgba(58, 191, 242, 0.4), 0 0 20px rgba(58, 191, 242, 0.3);
}

/* Custom Scrollbar */
.code-block {
    scrollbar-width: thin;
    scrollbar-color: #2dd4bf #1f2937;
}

.code-block::-webkit-scrollbar {
    height: 8px;
}

.code-block::-webkit-scrollbar-track {
    background: #1f2937;
}

.code-block::-webkit-scrollbar-thumb {
    background-color: #2dd4bf;
    border-radius: 4px;
}

/* Syntax Highlighting */
.comment { color: #6c728e; }
.keyword { color: #cba6f7; }
.string  { color: #a6e3a1; }
.number  { color: #f9e2af; }
