/* Основные стили для статей новостей */
body { 
    max-width: 800px; 
    margin: 0 auto; 
    padding: 16px; 
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; 
    background: #f5f5f5; 
    line-height: 1.7; 
}

article { 
    background: #fff; 
    border-radius: 12px; 
    padding: 40px; 
    margin: 20px auto; 
    box-shadow: 0 2px 8px rgba(0,0,0,0.1); 
    max-width: 800px; 
}

.article-header { 
    text-align: center; 
    margin-bottom: 30px; 
    padding-bottom: 20px; 
    border-bottom: 2px solid #e9ecef; 
}

.article-title { 
    font-size: 2.5rem; 
    color: #333; 
    margin-bottom: 10px; 
    font-weight: 700; 
}

.article-date { 
    color: #6c757d; 
    font-size: 1.1rem; 
    font-weight: 500; 
}

.summary { 
    background: #e8f5e8; 
    border: 1px solid #c3e6c3; 
    border-radius: 8px; 
    padding: 20px; 
    margin: 25px 0; 
    color: #155724; 
}

.summary h3 { 
    color: #155724; 
    margin: 0 0 15px; 
}

.update-section { 
    margin: 30px 0; 
    padding: 20px; 
    border-left: 4px solid #007bff; 
    background: #f8f9fa; 
    border-radius: 0 8px 8px 0; 
}

.update-section h3 { 
    color: #007bff; 
    margin: 0 0 15px; 
    font-size: 1.4rem; 
}

.feature-list { 
    list-style: none; 
    padding: 0; 
}

.feature-list li { 
    padding: 8px 0 8px 25px; 
    position: relative; 
}

.feature-list li:before { 
    content: "✅"; 
    position: absolute; 
    left: 0; 
    color: #28a745; 
}

.bug-fix { 
    background: #fff3cd; 
    border: 1px solid #ffeaa7; 
    border-radius: 8px; 
    padding: 15px; 
    margin: 15px 0; 
    color: #856404; 
}

.bug-fix h4 { 
    color: #856404; 
    margin: 0 0 10px; 
}

.stats-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
    gap: 20px; 
    margin: 30px 0; 
}

.stat-card { 
    background: #fff; 
    border: 2px solid #e9ecef; 
    border-radius: 8px; 
    padding: 20px; 
    text-align: center; 
    box-shadow: 0 2px 4px rgba(0,0,0,0.1); 
}

.stat-number { 
    font-size: 2.2rem; 
    font-weight: bold; 
    color: #007bff; 
    margin-bottom: 10px; 
}

.stat-label { 
    color: #6c757d; 
    font-size: 0.9rem; 
}

.social-share { 
    text-align: center; 
    margin: 40px 0; 
    padding: 20px; 
    background: #f8f9fa; 
    border-radius: 8px; 
}

.share-btn { 
    display: inline-block; 
    margin: 0 10px; 
    padding: 12px 24px; 
    background: #007bff; 
    color: #fff; 
    text-decoration: none; 
    border-radius: 6px; 
    font-weight: 500; 
    transition: all 0.3s ease; 
}

.share-btn:hover { 
    background: #0056b3; 
    transform: translateY(-2px); 
}

.share-btn.vk { 
    background: #4C75A3; 
} 

.share-btn.vk:hover { 
    background: #3a5a7a; 
}

.share-btn.telegram { 
    background: #0088cc; 
} 

.share-btn.telegram:hover { 
    background: #006699; 
}

.breadcrumb { 
    margin-bottom: 16px; 
    padding: 8px 0; 
}

/* Адаптивность */
@media (max-width: 768px) { 
    .article-title { 
        font-size: 2rem; 
    } 
    .stats-grid { 
        grid-template-columns: 1fr; 
    } 
    .share-btn { 
        display: block; 
        margin: 10px auto; 
        max-width: 200px; 
    } 
    article {
        padding: 20px;
    }
}