/* 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;
}

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;
    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); /* Отблеск от света */
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    margin: 20px auto;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 191, 255, 0.6);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}
