/* /css/style.css */
:root {
    --bg-color: #ffffff;
    --text-primary: #000000;
    --text-secondary: #313131;
    --text-tertiary: #646464;
    --brand-color: #000000;
    --divider-color: #ffffff;
}

@media (prefers-color-scheme: dark) {
    :root {
        --bg-color: #000000;
        --text-primary: #d6d6d6;
        --text-secondary: #dbdbdb;
        --text-tertiary: #bbbbbb;
        --brand-color: #ffffff;
        --divider-color: #000000;
    }
}

body {
    font-family: system-ui, -apple-system, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    padding: 0 0 20px 0;
    margin: 0;
    line-height: 1.6;
}

.container {
    padding: 0 24px;
}

h1 {
    font-size: 24px;
    margin-top: 48px;
    margin-bottom: 8px;
    color: var(--text-primary);
    text-align: center;
}

.update-time {
    font-size: 12px;
    color: var(--text-tertiary);
    text-align: center;
    margin-bottom: 24px;
}

h2 {
    font-size: 18px;
    margin-top: 16px;
    margin-bottom: 4px;
    color: var(--brand-color);
}

h3 {
    font-size: 16px;
    margin-top: 8px;
    margin-bottom: 8px;
    color: var(--brand-color);
}

p{
    font-size: 15px;
    margin-top: 8px;
    margin-bottom: 8px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

ul {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

ul {
    padding-left: 20px;
}

li {
    margin-bottom: 8px;
}

footer {
    margin-top: 40px;
    font-size: 12px;
    margin-bottom: 16px;
    color: var(--text-tertiary);
    text-align: center;
}