/* Core Layout Settings */
html {
    scroll-behavior: smooth;
}

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

/* Engineering Monospace Font for Technical Details */
font-mono {
    font-family: 'Fira Code', 'Courier New', monospace;
}

/* Selection highlight color */
::selection {
    background: rgba(6, 182, 212, 0.4);
    color: white;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #0b0f1a;
}
::-webkit-scrollbar-thumb {
    background: #1e293b;
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: #0891b2;
}

/* Image optimization for GitHub Cards */
img {
    border-radius: 8px;
    max-width: 100%;
    height: auto;
}