/* === БАЗА === */
body {
    font-family: Consolas, "Liberation Mono", Menlo, monospace;
    font-size: 15px;
    line-height: 1.5;
    background: #f8fafc;
    color: #0f172a;
    margin: 0;
    padding: 0;
}

/* Контейнер */
.container {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 2.5rem 3rem;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    margin-top: 2.5rem;
    margin-bottom: 3rem;
}

/* === ТЕКСТ === */
h1, h2, h3 {
    font-weight: 700;
    color: #1e293b;
    margin-top: 2rem;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 1.9rem;
    border-bottom: 2px solid #38bdf8;
    padding-bottom: 0.3rem;
}

h2 {
    font-size: 1.35rem;
    border-left: 4px solid #38bdf8;
    padding-left: 0.5rem;
}

h3 {
    font-size: 1.15rem;
    color: #334155;
}

p {
    margin: 0.5rem 0;
}

/* Ссылки */
a {
    color: #2563eb;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

/* === ТАБЛИЦЫ === */
table {
    border-collapse: collapse;
    width: 100%;
    margin: 1rem 0;
    font-size: 0.9rem;
}
th, td {
    border: 1px solid #cbd5e1;
    padding: 0.4rem 0.6rem;
    text-align: left;
}
th {
    background: #e2e8f0;
    font-weight: 600;
}

/* === КОД И ЦИТАТЫ === */
code {
    background-color: #f1f5f9;
    padding: 0.15rem 0.3rem;
    border-radius: 4px;
    font-family: Consolas, "Liberation Mono", monospace;
    font-size: 0.9rem;
}

pre {
    background-color: #0f172a;
    color: #e2e8f0;
    padding: 0.9rem;
    border-radius: 8px;
    overflow-x: auto;
    font-family: Consolas, "Liberation Mono", monospace;
    font-size: 0.9rem;
}

blockquote {
    border-left: 4px solid #38bdf8;
    background: #f0f9ff;
    color: #0c4a6e;
    padding: 0.6rem 1rem;
    margin: 1rem 0;
    border-radius: 4px;
    font-size: 0.9rem;
}

/* === СПИСКИ === */
ul, ol {
    margin-left: 1.5rem;
}

/* === FOOTER === */
footer {
    text-align: center;
    color: #64748b;
    margin-top: 2rem;
    font-size: 0.85rem;
}
