:root {
    --bg-primary: #0a0c0b;
    --red-main: #770d0e;
    --red-light: #c43133;
    --green-100: #219256;
    --blue: #3f86b8;
    --text-muted: rgba(255, 255, 255, 0.72);
    --border-subtle: rgba(255, 255, 255, 0.08);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.55;
    color: #fff;
    background: var(--bg-primary);
    min-height: 100vh;
    overflow-x: hidden;
}

a {
    color: var(--green-100);
    text-decoration: none;
    border-bottom: 1px solid rgba(33, 146, 86, 0.35);
    transition: color 0.2s ease, border-color 0.2s ease;
}

a:hover {
    color: #2db56a;
    border-bottom-color: rgba(45, 181, 106, 0.55);
}

.page {
    max-width: 800px;
    margin: 0 auto;
    padding: 48px 24px 80px;
}

.brand {
    font-family: "Audiowide", cursive;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--red-light);
    margin-bottom: 8px;
}

h1 {
    font-family: "Manrope", "Inter", sans-serif;
    font-size: clamp(28px, 5vw, 40px);
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.updated {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.intro {
    color: var(--text-muted);
    margin-bottom: 36px;
    font-size: 15px;
}

h2 {
    font-family: "Manrope", "Inter", sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin: 36px 0 14px;
    color: #fff;
    letter-spacing: -0.01em;
}

h2:first-of-type {
    margin-top: 0;
}

p {
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.88);
}

ul {
    margin: 0 0 16px 1.1em;
    color: rgba(255, 255, 255, 0.88);
}

li {
    margin-bottom: 8px;
}

li::marker {
    color: var(--red-main);
}

.contact-box {
    margin-top: 40px;
    padding: 20px 22px;
    border-radius: 14px;
    border: 1px solid var(--border-subtle);
    background: rgba(15, 17, 16, 0.85);
}

.contact-box p {
    margin-bottom: 0;
    font-size: 15px;
}

.contact-box strong {
    color: #fff;
    font-weight: 600;
}

.footer-note {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid var(--border-subtle);
    font-size: 13px;
    color: var(--text-muted);
}
