/* Подсветка кода — палитра в стиле JetBrains GoLand/Darcula (осветлённая).
   Цвета токенов берутся отсюда, highlight.js только расставляет классы. */

/* контейнер код-блока */
pre {
    margin: 0 0 1.3em;
    border-radius: 10px;
    overflow: hidden;
}
pre code,
pre code.hljs {
    display: block;
    padding: 18px 20px;
    overflow-x: auto;
    background: #313335;            /* фон чуть светлее */
    color: #c5cad1;                 /* базовый текст светлее */
    font-size: 0.9rem;
    line-height: 1.55;
    font-family: "JetBrains Mono", "Fira Code", "Cascadia Code", Consolas, Menlo, Monaco, monospace;
    -webkit-font-smoothing: auto;
}

/* инлайн-код (не внутри pre) */
:not(pre) > code {
    background: #f0f1f6;
    color: #e0506a;                 /* красный заметно светлее и читаемее */
    padding: 2px 6px;
    border-radius: 5px;
    font-size: 0.9em;
    font-family: "JetBrains Mono", "Fira Code", Consolas, Menlo, monospace;
}

/* токены highlight.js — осветлённая Darcula (серые комментарии не трогаем) */
.hljs-comment,
.hljs-quote          { color: #808080; font-style: italic; }   /* серый — без изменений */
.hljs-keyword,
.hljs-selector-tag,
.hljs-built_in,
.hljs-meta,
.hljs-meta .hljs-keyword { color: #e08b50; }                   /* оранжевый светлее */
.hljs-string,
.hljs-doctag,
.hljs-regexp         { color: #9fc880; }                       /* зелёный светлее */
.hljs-number,
.hljs-literal        { color: #82b7dd; }                       /* синий светлее */
.hljs-title,
.hljs-title.function_,
.hljs-section        { color: #ffd479; }                       /* жёлтый светлее */
.hljs-type,
.hljs-title.class_,
.hljs-class .hljs-title { color: #c5cad1; }
.hljs-attr,
.hljs-attribute,
.hljs-variable,
.hljs-template-variable,
.hljs-params         { color: #c8a6da; }                       /* фиолетовый светлее */
.hljs-symbol,
.hljs-bullet,
.hljs-link           { color: #82b7dd; }
.hljs-tag,
.hljs-name           { color: #ecc98a; }
.hljs-deletion       { background: #4a2a2a; }
.hljs-addition       { background: #2a4a2a; }
.hljs-emphasis       { font-style: italic; }
.hljs-strong         { font-weight: bold; }
