:root {
    --bg: #111214;
    --surface: #1a1b1e;
    --text: #f5f5f5;
    --text-muted: #a0a0a0;
    --accent: #EC407A;
    --border: #2a2b2e;
}

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

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 17px;
    line-height: 1.6;
    padding: 48px 24px;
}

.container {
    max-width: 720px;
    margin: 0 auto;
}

header {
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
}

.logo {
    display: block;
    width: 96px;
    height: 96px;
    margin-bottom: 16px;
}

h1 {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

h2 {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-top: 40px;
    margin-bottom: 12px;
}

p {
    margin-bottom: 16px;
    color: var(--text);
}

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

a {
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.15s ease;
}

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

ul {
    margin-left: 20px;
    margin-bottom: 16px;
}

li {
    margin-bottom: 8px;
}

strong {
    color: var(--text);
    font-weight: 600;
}

footer {
    margin-top: 64px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 14px;
}

footer a {
    margin-right: 16px;
}
