@font-face {
    font-family: 'FiraCode Nerd Font';
    src: url('../fonts/FiraCode/FiraCodeNerdFont-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'FiraCode Nerd Font';
    src: url('../fonts/FiraCade/FiraCodeNerdFont-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

:root {
    --bg-primary: #0a0e14;
    --bg-secondary: #131920;
    --text-primary: #e6b673;
    --text-secondary: #b8a482;
    --accent: #59c2ff;
    --border: #1f2937;
}

body {
    font-family: 'FiraCode Nerd Font', monospace;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 15px;
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
}

h1, h2, h3 {
    color: var(--accent);
    font-weight: normal;
    letter-spacing: 0.05em;
    border-bottom: 1px solid var(--border);
    padding-bottom: 0.3em;
}

h1 { font-size: 2em; }
h2 { font-size: 1.5em; margin-top: 2em; }
h3 { font-size: 1.2em; }

a {
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px dotted var(--accent);
    transition: all 0.2;
}

a:hover {
    color: #8ed4ff;
    border-bottom-style: solid;
}

pre, code {
    font-family: 'FiraCode Nerd Font', monospace;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 2px;
    font-feature-settings: 'calt' 1;
}

pre {
    padding: 16px;
    overflow-x: auto;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3);
}

code {
    padding: 2px 6px;
}

ul {
    list-style: none;
    padding-left: 1.5em;
}

ul li::before {
    content: '> ';
    color: var(--accent);
    margin-left: -1.5em;
    margin-right: 0.5em;
}

hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: 2em 0;
}

::selection {
    background: var(--accent);
    color: var(--bg-primary);
}
