/* Стили для печати */
@media print {
    /* Скрываем ненужные элементы */
    .header,
    .footer,
    .theme-toggle,
    .font-controls,
    .nav,
    .ads,
    .comments,
    .social-share {
        display: none !important;
    }
    
    /* Базовые настройки */
    body {
        background: white !important;
        color: black !important;
        font-size: 12pt !important;
        line-height: 1.4 !important;
    }
    
    .container {
        max-width: none !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* Улучшаем читаемость текста */
    h1, h2, h3, h4, h5, h6 {
        color: black !important;
        page-break-after: avoid;
    }
    
    p, li {
        color: black !important;
    }
    
    /* Разрывы страниц */
    article {
        page-break-before: always;
    }
    
    /* Ссылки */
    a {
        color: black !important;
        text-decoration: underline !important;
    }
    
    a[href^="http"]::after {
        content: " (" attr(href) ")";
        font-size: 10pt;
        color: #666;
    }
    
    /* Изображения */
    img {
        max-width: 100% !important;
        height: auto !important;
        page-break-inside: avoid;
    }
    
    /* Код и примеры */
    pre, code {
        background: #f8f8f8 !important;
        border: 1px solid #ddd !important;
        color: black !important;
    }
}