#content-news {
    padding: 20px;
    background-color: #f8f9fa;
}

#content-news h1 {
    font-size: 2em;
    text-align: center;
    color: #0b76d7;
    margin-bottom: 1em;
}

#content-news h2 {
    font-size: 1.5em;
    color: #0b76d7;
    margin-top: 1em;
}

#content-news h3 {
    font-size: 1.3em;
    color: #0b76d7;
    margin-top: 1em;
}

#content-news p, #content-news ul {
    font-size: 1.2em;
    line-height: 1.6;
}

#content-news ul {
    padding-left: 20px;
}

#content-news li {
    margin-bottom: 0.5em;
}

#content-news .download-link {
    font-size: 1.2em;
    color: #00bfff;
    margin-right: 20px;
    text-decoration: none;
    text-shadow: 
        0 0 20px rgba(0, 191, 255, 0.7), 
        0 0 30px rgba(0, 191, 255, 0.5), 
        0 0 40px rgba(0, 191, 255, 0.3);
    transition: color 0.3s ease;
}

#content-news .download-link:hover {
    color: #00ffff;
    font-size: 1.3em;
    margin-right: 20px;
    animation: flameGlowNav 1.5s infinite alternate;
}

#content-news code {
    background-color: #f4f4f4;
    padding: 2px 4px;
    border-radius: 4px;
    font-family: monospace;
    color: #d63384;
}


/* Content Section for News */
#content-news {
    max-width: 800px;
    margin: 30px auto;
    background-color: #252525;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.5);
}

#content-news article {
    margin-bottom: 20px;
}

#content-news h2 {
    margin-top: 0;
}

#content-news h3 {
    margin-top: 20px;
    font-size: 1.6em;
}

#content-news ul {
    margin: 10px 0;
    padding-left: 20px;
    list-style: none; /* Убираем стандартные маркеры списка */
}

#content-news strong {
    color: #00bfff; /* Основной цвет текста */
    text-decoration: none;
}