.news-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.news-title {
    color: #bac6d2;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(255, 112, 0, 0.5);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.news-card {
    background: #0a1118;
    backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #562401;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 112, 0, 0.3);
}

.news-card.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.news-image {
    position: relative;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card.featured .news-image img {
    height: 400px;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-date {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(255, 112, 0, 0.9);
    color: #bac6d2;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.news-content {
    background: linear-gradient(to top, #0a1118, #18222b);
    padding: 1.5rem;
}

.news-card h2 {
    color: #bac6d2;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-family: 'Orbitron', sans-serif;
}

.news-card h3 {
    color: #bac6d2;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-family: 'Orbitron', sans-serif;
}

.news-card p {
    color: #bac6d2;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.read-more {
    color: #FF7000;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #e66500;
}

.read-more i {
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(5px);
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.page-btn {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #0a1118;
    border-radius: 50%;
    color: #bac6d2;
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-btn:hover,
.page-btn.active {
    background: #FF7000;
}

.page-dots {
    color: #bac6d2;
    margin: 0 0.5rem;
}

/* Адаптивность */
@media (max-width: 1366px) {
    .news-container {
        max-width: 1100px;
    }
    
    .news-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 1024px) {
    .news-container {
        max-width: 900px;
    }
    
    .news-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.2rem;
    }

    .news-card {
        min-height: 300px;
    }

    .news-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .news-container {
        margin: 1rem;
        padding: 0;
    }

    .news-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
    }

    .news-card {
        min-height: 280px;
    }

    .news-content {
        padding: 1rem;
    }

    .news-title {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .news-meta {
        flex-wrap: wrap;
        gap: 0.8rem;
    }
}

@media (max-width: 480px) {
    .news-container {
        margin: 0.5rem;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-card {
        min-height: 250px;
    }

    .news-content {
        padding: 0.8rem;
    }

    .news-title {
        font-size: 1.1rem;
    }

    .news-excerpt {
        font-size: 0.9rem;
    }

    .news-meta span {
        font-size: 0.8rem;
    }

    .footer {
        padding: 0.8rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 360px) {
    .news-container {
        margin: 0.3rem;
    }

    .news-card {
        min-height: 220px;
    }

    .news-content {
        padding: 0.7rem;
    }

    .news-title {
        font-size: 1rem;
    }

    .news-excerpt {
        font-size: 0.85rem;
    }

    .news-meta {
        gap: 0.6rem;
    }

    .news-meta span {
        font-size: 0.75rem;
    }

    .footer {
        padding: 0.7rem;
        font-size: 0.75rem;
    }
}

.logo {
    color: #bac6d2;
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-right: auto;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.logo:hover {
    color: #FF7000;
}

.logo i {
    color: #FF7000;
    font-size: 1.8rem;
}

body {
    min-height: 100vh;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #FF7000 rgba(255, 255, 255, 0.1);
}

body::-webkit-scrollbar {
    width: 8px;
}

body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

body::-webkit-scrollbar-thumb {
    background: #FF7000;
    border-radius: 4px;
}

body::-webkit-scrollbar-thumb:hover {
    background: #e66500;
}

.footer {
    padding: 1rem;
    color: #bac6d2;
    font-size: 0.9rem;
    text-align: center;
    margin-top: 2rem;
} 