:root {
    /* Farver */
    --bg: #0e1117;
    --bg-alt: #161b22;

    --text: #e6edf3;
    --text-muted: #c2c9d1;

    --accent: #70a5ff;       /* blød blå */
    --accent-hover: #8bb6ff;

    --separator: #2a3140;

    --badge-bg: #1a2230;
    --badge-border: #2c3546;

    --highlight: #ffae57;    /* orange accent (diskret) */
}

/* Basis */
body {
    margin: 0;
    padding: 2rem;
    font-family: system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    max-width: 700px;
    margin-inline: auto;
}

/* Overskrifter */
h1, h3 {
    font-weight: 500;
    margin-top: 2rem;
    margin-bottom: .5rem;
    color: var(--text);
}

h1 {
    font-size: 2rem;
    margin-top: 0;
}

/* Brødtekst */
p {
    margin: 1rem 0;
}

/* Lister */
ul {
    margin: .5rem 0 1.5rem 1.25rem;
    padding: 0;
}

li {
    margin: .25rem 0;
}

/* Links */
a {
    color: var(--accent);
    text-decoration: none;
}

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

/* Skillere */
h3::before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: var(--separator);
    margin: 2rem 0 .75rem;
}

h3:first-of-type::before {
    display: none;
}

/* Meta badges */
.meta {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
    margin: 1rem 0;
}

.meta span {
    background: var(--badge-bg);
    padding: .4rem .8rem;
    border-radius: 6px;
    font-size: .9rem;
    color: var(--text-muted);
    border: 1px solid var(--badge-border);
    letter-spacing: .3px;
}

/* Ekstra valgfrit (hvis du vil bruge orange accent et sted)
   Eksempel: accent på h1 */
h1 span {
    color: var(--highlight);
}
