:root {
    --bg: #1b1f24;
    --panel: #242a31;
    --accent: #5fb87a;
    --text: #e9edf1;
    --muted: #9aa5b1;
    --border: #38414b;
}
* { box-sizing: border-box; }
html, body {
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: var(--text);
    font-family: 'Roboto', -apple-system, Arial, Helvetica, sans-serif;
    line-height: 1.6;
}
a { color: var(--accent); }
.site-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
    background: var(--panel);
    position: sticky;
    top: 0;
    z-index: 5;
}
.site-header img {
    width: 28px;
    height: 28px;
    border-radius: 6px;
}
.site-header a.brand {
    color: var(--text);
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
}
.site-header nav {
    margin-left: auto;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    font-size: 13px;
}
.site-header nav a {
    color: var(--muted);
    text-decoration: none;
}
.site-header nav a:hover { color: var(--text); }
main {
    max-width: 760px;
    margin: 0 auto;
    padding: 32px 20px 80px;
}
h1 { font-size: 26px; margin: 0 0 6px; }
h2 { font-size: 19px; margin: 32px 0 10px; border-bottom: 1px solid var(--border); padding-bottom: 6px; }
h3 { font-size: 15px; margin: 20px 0 6px; color: var(--text); }
p, li { color: var(--text); font-size: 14.5px; }
.muted { color: var(--muted); font-size: 13px; }
table { width: 100%; border-collapse: collapse; margin: 10px 0 18px; }
th, td { text-align: left; padding: 8px 10px; border-bottom: 1px solid var(--border); font-size: 13.5px; vertical-align: top; }
th { color: var(--muted); font-weight: 600; width: 32%; }
.note { color: var(--muted); font-size: 12px; }
.card {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 18px 20px;
    margin: 16px 0;
}
.discord-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #5865F2;
    color: #fff;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
}
.discord-btn:hover { filter: brightness(1.08); }
.discord-btn svg { width: 18px; height: 18px; }
footer {
    text-align: center;
    padding: 24px 20px 40px;
    color: var(--muted);
    font-size: 12px;
}
.changelog-entry {
    border-left: 2px solid var(--border);
    padding-left: 16px;
    margin-bottom: 22px;
}
.changelog-date {
    color: var(--muted);
    font-size: 12px;
    margin-bottom: 4px;
}
.tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    padding: 2px 8px;
    border-radius: 4px;
    margin-right: 6px;
}
.tag.new { background: rgba(95,184,122,.15); color: var(--accent); }
.tag.fix { background: rgba(240,180,90,.15); color: #f0b45a; }
.tag.change { background: rgba(120,150,220,.15); color: #7ea0e0; }
