.download-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background-color: #0063B2;
    color: #dfe4e7;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.download-button:hover {
    background-color: #2d7a1d;
    color: #fff;
}

.download-button i {
    font-size: 1.2em;
}

article ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 1em;
}

article h2 {
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}

article code {
    background-color: #e9ecef; /* Светлый фон для выделения */
    padding: 2px 5px;
    border-radius: 4px;
    font-family: "Courier New", Courier, monospace; /* Моноширинный шрифт */
    font-size: 1.1em; /* Увеличенный шрифт */
    color: #c7254e;   /* Розово-красный цвет текста */
    font-weight: bold;
}

.screenshots-title {
    margin-top: 2em;
    border-top: 1px solid #ddd;
    padding-top: 1em;
}

.screenshot-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 1em;
    margin-bottom: 2em;
}

.screenshot-item {
    display: block;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.screenshot-item:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.screenshot-item img {
    width: 100%;
    height: auto;
    display: block;
}
