:root {
    --accent: #b61c52;
    --text-main: #2f2f2f;
    --text-light: #555;
    --text-muted: #777;
    --border-color: #2f2f2f;
    --bg-light: #f8f9fa;
    --bg-card: #ffffff;

    --font-head: 'Roboto Slab', serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    height: 100%;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--text-main);
    background: var(--bg-light);
    background-image: radial-gradient(#d1d1d1 1.5px, transparent 1.5px);
    background-size: 24px 24px;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow-x: hidden;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--accent);
}

.top-nav-bar {
    background: #111;
    color: #fff;
    padding: 8px 20px;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 4px solid var(--accent);
    flex-shrink: 0;
    flex-wrap: wrap;
    gap: 15px;
}

.top-nav-bar nav {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.top-nav-bar nav a {
    color: #fff;
    padding: 5px 0;
}

.top-nav-bar nav a:hover {
    color: var(--accent);
}

.breadcrumbs {
    font-weight: bold;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.breadcrumbs a, .breadcrumbs span {
    color: #fff;
    opacity: 1;
    transition: opacity 0.2s;
}

.breadcrumbs a:not(:last-child), .breadcrumbs span:not(:last-child) {
    opacity: 0.7;
}

.breadcrumbs a:hover {
    opacity: 1;
}

.breadcrumbs .separator {
    margin: 0 2px;
    opacity: 0.5;
}

footer {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 20px 20px;
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-top: auto;
    font-family: var(--font-mono);
    border-top: 4px solid var(--accent);
}

svg.icon {
    height: 1em;
    width: 1em;
    vertical-align: middle;
    fill: currentColor;
    display: inline-block;
}
