/* theme.css */
:root {
    color-scheme: light dark;
    --bg: #111315;
    --surface: #1b1d1f;
    --text: #f2f2f2;
    --muted: #b0b3b8;
    --attention: #ff8a7a;
    --attention-bar: #313131;
    --radius: 12px;
    --space-1: 8px;
    --space-2: 16px;
    --space-3: 24px;
    --space-4: 32px;
}

body {
    margin: 0;
    font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.5;
}

* {
    box-sizing: border-box;
}

.page {
    max-width: 760px;
    margin: 24px auto;
    padding: var(--space-3);
    background: var(--surface);
    border-radius: var(--radius);
}

.title {
    margin: 0 0 var(--space-1);
    text-align: center;
    font-size: 32px;
    line-height: 1.1;
    font-weight: 800;
}

.subtitle {
    margin: 0 0 var(--space-3);
    text-align: center;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 700;
}

p {
    margin: 0 0 var(--space-4);
    font-size: 17px;
    color: var(--text);
}

.single-image img {
    width: 30%;
    height: auto;
    display: block;
    border-radius: 10px;
    margin: auto;
}

.attention-row {
    display: flex;
    align-items: stretch;
    gap: var(--space-2);
    margin: 0 0 var(--space-3);
}

.attention-row .bar {
    width: 10px;
    background: var(--attention-bar);
    border-radius: 3px;
    flex: 0 0 5px;
}

.attention-row .text {
    color: var(--attention);
    padding: var(--space-1) 0;
    margin: 0;
}

@media (max-width: 640px) {
    .page {
        margin: 0;
        border-radius: 0;
        min-height: 100vh;
        padding: var(--space-3);
    }

    .title {
        font-size: 28px;
    }

    .subtitle {
        font-size: 20px;
    }

    p {
        font-size: 16px;
    }
}