.description__countdown
{   margin-top: 5%;
    font-size: 35px;
    font-weight: 500;
    color: #ff7b00;
    opacity: .55;
    margin-bottom: 5%;
}

@media screen and (max-width: 1200px) {
    .description__countdown {
        font-size: 34px;
        margin-bottom: 30px
    }
}

@media screen and (max-width: 768px) {
    .description__countdown {
        font-size: 35px
    }
}

@media screen and (max-width: 576px) {
    .description__countdown {
        font-size: 31px
    }
}







/* assets/news.css */

/* assets/news.css */

/* Основной контейнер новости */

.news__item {
    text-decoration: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    margin: 20px auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Заголовок новости */
.news-title {
    text-align: center; /* Центрирование заголовка */
    font-size: 24px;
    color: #ff2600;
    margin-bottom: 15px;
}

.news-title a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.news-title a:hover {
    color: #e07b0a;
}

/* Дата новости */
.news-date {
    text-align: center; /* Центрирование даты */
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 10px;
}

/* Текст новости */
.news-content {
    text-align: center; /* Центрирование текста */
    font-size: 18px;
    color: #a5a3a3;
    line-height: 1.5;
    margin-bottom: 15px;
}



/* Футер новости */
.news-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* Рейтинг */
.news-rating {
    display: flex;
    align-items: center;
}

.rating-buttons {
    display: flex;
    align-items: center;
}

.rating-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
    margin-right: 5px;
    transition: transform 0.2s;
}

.rating-btn:hover {
    transform: scale(1.2);
}

.rating-btn.active {
    color: #FF8D0C;
}

.rating-count {
    font-size: 16px;
    margin-right: 15px;
    color: #555;
}

/* Комментарии */
.news-comments {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #555;
}

.comments-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.comments-link:hover {
    color: #FF8D0C;
}

.comments-link::before {
    content: "💬";
    margin-right: 5px;
}

/* Сообщение для неавторизованных пользователей */
.auth-message {
    text-align: center;
    font-size: 14px;
    color: #888;
    margin-top: 10px;
}

/* Форма комментариев */
.comment-form {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.comment-textarea {
    width: 100%;
    max-width: 600px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    resize: vertical;
    font-size: 14px;
    margin-bottom: 10px;
}

.comment-actions {
    width: 100%;
    max-width: 600px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.submit-btn {
    padding: 8px 16px;
    background-color: #FF8D0C;
    border: none;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #e07b0a;
}

.comment-count {
    font-size: 12px;
    color: #666;
}

/* Адаптивность */
@media screen and (max-width: 768px) {
    .news-title {
        font-size: 20px;
    }

    .news-content {
        font-size: 14px;
    }

    .news-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .news-comments {
        margin-top: 10px;
    }

    .rating-count {
        margin-right: 10px;
    }
}

@media screen and (max-width: 480px) {
    .news-item {
        padding: 15px;
    }

    .news-title {
        font-size: 18px;
    }

    .news-content {
        font-size: 13px;
    }

    .rating-btn {
        font-size: 18px;
    }

    .comments-link {
        font-size: 14px;
    }
}





.auth-message {
    border-top: 3px solid #706e6e;
    border-bottom: 3px solid #706e6e;
    padding: 15px 20px;
    font-size: 1.5em;
    color: orange;
    margin: 20px 0;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
    transition: opacity 0.3s ease;          
    opacity: 1;                               
}


.clan-name{font-size:12px;color:white;text-decoration: none;}

