/* Основные стили проекта */
:root {
    --primary-red: #ffffff;
    --secondary-red: #afd0e6;
    --accent-gold: #FFD700;
    --dark-bg: #1a1a1a;
    --light-bg: #f8f9fa;
    --text-dark: #2c3e50;
    --text-light: #ecf0f1;
    --card-bg: #ffffff;
    --hover-red: #93c9a5;
    --timeline-blue: #3498db;
    --timeline-green: #27ae60;
    --timeline-purple: #9b59b6;
    --timeline-orange: #e67e22;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

/* Общие стили для всех страниц */
.header {
    background: linear-gradient(135deg, #764ba2 30%, #ca5151 100%);
    color: var(--text-light);
    padding: 40px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--accent-gold), #ff6b6b, var(--accent-gold));
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { background-position: -200px 0; }
    100% { background-position: 200px 0; }
}

.header h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.4);
    font-weight: 700;
    letter-spacing: 1px;
}

.header p {
    font-size: 1.4rem;
    opacity: 0.95;
    font-weight: 300;
}

.nav {
    background: var(--dark-bg);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

.nav-links {
    display: flex;
    gap: 5px;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    padding: 18px 24px;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-size: 16px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--accent-gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover::before,
.nav-links a.active::before {
    width: 80%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-gold);
    transform: translateY(-2px);
}

.mobile-menu {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    padding: 10px;
    transition: transform 0.3s;
}

.mobile-menu:hover {
    transform: scale(1.1);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.page-content {
    background: var(--card-bg);
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

.page-content::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(139,0,0,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.page-title {
    color: rgba(39, 39, 39, 0.8);
    font-size: 3rem;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 800;
    position: relative;
}

.book{
    text-align: center;
}
.school{
    text-align: center;
}
.ong{
    text-align: center;
}
.people{
    text-align: center;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--timeline-blue), var(--timeline-green));
    border-radius: 2px;
}

.footer {
    background: linear-gradient(135deg, var(--dark-bg), #2c3e50);
    color: var(--text-light);
    padding: 50px 0 30px;
    text-align: center;
    margin-top: 60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer p {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 300;
}

/* Стили для главной страницы */
.hero {
    background: linear-gradient(135deg, rgba(29, 22, 58, 0.7), rgba(87, 19, 19, 0.8)), 
                url('https://images.unsplash.com/photo-1580136579317-311e4c3cfe6a?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero h2 {
    font-size: 4rem;
    margin-bottom: 25px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
    font-weight: 700;
}

.hero p {
    font-size: 1.6rem;
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 300;
}

.cta-button {
    background: linear-gradient(135deg, var(--timeline-purple), #7eb5c5);
    color: var(--primary-red);
    border: none;
    padding: 18px 45px;
    font-size: 1.2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    font-weight: 600;
    box-shadow: 0 5px 15px #7eb5c5;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background: linear-gradient(135deg, #7eb5c5, var(--timeline-blue));
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px #7eb5c5;
}

.about-site {
    margin: 60px 0;
    text-align: center;
}

.about-site h2 {
    color: var(--primary-red);
    margin-bottom: 40px;
    font-size: 2.5rem;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.about-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.about-card:hover {
    transform: translateY(-5px);
    border-color: var(--forest-green);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.about-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.about-card h3 {
    color: black;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.quick-access {
    margin: 60px 0;
}

.quick-access h2 {
    color: var(--primary-red);
    margin-bottom: 40px;
    text-align: center;
    font-size: 2.5rem;
}

.access-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.access-card {
    background: white;
    padding: 30px 25px;
    border-radius: 15px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.access-card:hover {
    transform: translateY(-5px);
    border-color: var(--forest-green);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    color: inherit;
}

.access-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.access-card h3 {
    color: var(--primary-red);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.access-card p {
    color: var(--text-dark);
    font-size: 0.95rem;
    opacity: 0.8;
}

.symbols-section {
    margin: 60px 0;
    text-align: center;
}

.symbols-section h2 {
    color: var(--primary-red);
    margin-bottom: 40px;
    font-size: 2.5rem;
}

.symbols-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.symbol-card {
    background: linear-gradient(145deg, var(--card-bg), #f8f9fa);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    text-align: center;
}

.symbol-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.symbol-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.symbol-card h3 {
    color: black;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.stats {
    background: linear-gradient(135deg, rgb(97, 32, 97), #4e0d0d);
    color: var(--text-light);
    padding: 70px 0;
    margin: 60px 0;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
}
.cool{
    text-align: center;
}

.stats::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(-20px, -20px) rotate(360deg); }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    text-align: center;
    justify-items: center;
}

.stat-item {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.4s ease;
    text-align: center;
    max-width: 250px;
    width: 100%;
}

.stat-item:hover {
    transform: translateY(-5px) scale(1.05);
}

.stat-item h3 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.stat-item p {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 500;
}

        /* Стили для хронологии */
        .timeline-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
        }

        .timeline-hero {
            text-align: center;
            margin-bottom: 3rem;
            padding: 2rem;
            background: linear-gradient(135deg, var(--secondary-red), var(--timeline-blue));
            color: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .timeline-hero h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .timeline-hero p {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 800px;
            margin: 0 auto;
        }

        .minimal-timeline {
            position: relative;
            margin: 4rem 0;
        }

        .timeline-line {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 3px;
            height: 100%;
            background: linear-gradient(to bottom, 
                var(--timeline-blue), 
                var(--timeline-green), 
                var(--timeline-purple), 
                var(--timeline-orange));
            opacity: 0.5;
        }

        .year-section {
            margin: 5rem 0;
            position: relative;
        }

        .year-marker {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            top: -2.5rem;
            background: var(--card-bg);
            padding: 1rem 2rem;
            border-radius: 50px;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-dark);
            border: 2px solid var(--secondary-red);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            z-index: 10;
        }

        .events-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin-top: 2rem;
        }

        .event-card {
            background: var(--card-bg);
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            border-left: 4px solid;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .event-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: inherit;
            opacity: 0.3;
        }

        .event-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .event-card.left {
            border-left-color: var(--timeline-blue);
        }

        .event-card.right {
            border-left-color: var(--timeline-green);
        }

        .event-date {
            font-size: 0.9rem;
            color: var(--text-dark);
            opacity: 0.7;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .event-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--text-dark);
            line-height: 1.4;
        }

        .event-description {
            color: var(--text-dark);
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }

        .event-details {
            background: rgba(175, 208, 230, 0.1);
            padding: 1.5rem;
            border-radius: 8px;
            margin-top: 1rem;
            border-left: 3px solid var(--secondary-red);
        }

        .event-details h4 {
            color: var(--text-dark);
            margin-bottom: 0.8rem;
            font-size: 1.1rem;
            font-weight: 600;
        }

        .event-details ul {
            list-style: none;
            padding-left: 0;
        }

        .event-details li {
            margin-bottom: 0.5rem;
            padding-left: 1.2rem;
            position: relative;
        }

        .event-details li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--secondary-red);
            font-weight: bold;
        }

        .belarus-highlight {
            background: rgba(52, 152, 219, 0.05);
            border-left: 4px solid var(--timeline-blue);
            padding: 1.5rem;
            margin-top: 1.5rem;
            border-radius: 0 8px 8px 0;
        }

        .belarus-highlight h4 {
            color: var(--timeline-blue);
            margin-bottom: 1rem;
            font-size: 1.1rem;
            font-weight: 600;
        }

        .statistics {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .stat-item {
            text-align: center;
            padding: 1rem;
            background: rgba(175, 208, 230, 0.1);
            border-radius: 8px;
        }

        .stat-number {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--timeline-blue);
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--text-dark);
            opacity: 0.8;
        }

        @media (max-width: 968px) {
            .events-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .timeline-line {
                left: 30px;
            }

            .year-marker {
                left: 30px;
                transform: none;
            }

            .event-card {
                margin-left: 60px;
            }
        }

        @media (max-width: 768px) {
            .timeline-hero h1 {
                font-size: 2rem;
            }

            .year-section {
                margin: 4rem 0;
            }

            .event-card {
                padding: 1.5rem;
                margin-left: 50px;
            }
        }

        @media (max-width: 480px) {
            .timeline-container {
                padding: 1rem;
            }

            .timeline-hero {
                padding: 1.5rem;
            }

            .event-card {
                margin-left: 40px;
                padding: 1rem;
            }

            .year-marker {
                padding: 0.8rem 1.5rem;
                font-size: 1.2rem;
            }
        }

/* Стили для галереи */
.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin: 40px 0 20px;
    padding: 25px;
    background: var(--birch-white);
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border: 2px solid var(--forest-green);
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px 25px;
    border: 2px solid var(--forest-green);
    background: transparent;
    color: var(--forest-green);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 15px;
    position: relative;
    overflow: hidden;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--forest-green);
    color: rgb(71, 71, 71);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(34, 139, 34, 0.3);
}

.filter-icon {
    font-size: 18px;
}

.filter-count {
    background: rgba(255,255,255,0.2);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
}

.filter-btn.active .filter-count {
    background: rgba(255,255,255,0.3);
}

.active-filter-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 20px 0 30px;
    padding: 20px;
    background: linear-gradient(135deg, var(--primary-red), var(--forest-green));
    color: rgb(58, 58, 58);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    animation: slideInDown 0.5s ease;
}

.indicator-label {
    font-weight: 600;
    opacity: 0.9;
}

.indicator-value {
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.indicator-count {
    background: rgba(255,255,255,0.2);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gallery-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.gallery-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 2px solid transparent;
}

.gallery-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: var(--forest-green);
}

.gallery-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-card:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-category {
    position: absolute;
    top: 15px;
    left: 15px;
    color: rgb(158, 157, 157);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.gallery-category.veterans { background: var(--primary-red); }
.gallery-category.memorials { background: var(--forest-green); }
.gallery-category.archival { background: var(--accent-gold); color: #333; }
.gallery-category.modern { background: var(--primary-red); }

.gallery-content {
    padding: 25px;
}

.gallery-content h3 {
    color: black;
    margin-bottom: 12px;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
}

.gallery-content p {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 1rem;
}

.gallery-date {
    color: var(--accent-gold);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gallery-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.gallery-modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-gallery-content {
    max-width: 90%;
    max-height: 90%;
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    position: relative;
}

.modal-gallery-image {
    width: 100%;
    max-height: 70vh;
    object-fit: contain;
    display: block;
}

.modal-gallery-info {
    padding: 30px;
    background: linear-gradient(135deg, var(--card-bg), #f8f9fa);
}

.modal-gallery-title {
    font-size: 2rem;
    color: var(--primary-red);
    margin-bottom: 15px;
    font-weight: 700;
    text-align: center;
}

.modal-gallery-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-dark);
    text-align: center;
}

.modal-gallery-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-red);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.modal-gallery-close:hover {
    background: var(--hover-red);
    transform: scale(1.1);
}

.modal-gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(139, 0, 0, 0.8);
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.modal-gallery-nav:hover {
    background: var(--primary-red);
    transform: translateY(-50%) scale(1.1);
}

.modal-gallery-prev {
    left: 20px;
}

.modal-gallery-next {
    right: 20px;
}

/* Стили для страницы писателей */
        .writers-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
        }

        .writers-hero {
            text-align: center;
            margin-bottom: 3rem;
            padding: 2rem;
            background: var(--card-bg);
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            border: 1px solid rgba(0,0,0,0.08);
        }

        .writers-hero h1 {
            font-size: 2.2rem;
            margin-bottom: 1rem;
            font-weight: 600;
            color: var(--text-dark);
        }

        .writers-hero p {
            font-size: 1.1rem;
            color: var(--text-dark);
            opacity: 0.8;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .writers-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }

        .writer-card {
            background: var(--card-bg);
            border-radius: 12px;
            padding: 2rem;
            box-shadow: 0 2px 12px rgba(0,0,0,0.06);
            border: 1px solid rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .writer-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }

        .writer-header {
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .writer-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: var(--secondary-red);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: var(--text-dark);
            font-weight: 600;
            flex-shrink: 0;
        }

        .writer-info {
            flex: 1;
        }

        .writer-name {
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
            line-height: 1.3;
        }

        .writer-years {
            font-size: 0.9rem;
            color: var(--text-dark);
            opacity: 0.6;
            margin-bottom: 0.5rem;
        }

        .writer-role {
            display: inline-block;
            background: rgba(175, 208, 230, 0.2);
            color: var(--text-dark);
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
        }

        .writer-bio {
            color: var(--text-dark);
            line-height: 1.6;
            margin-bottom: 1.5rem;
            opacity: 0.9;
        }

        .writer-works {
            background: rgba(175, 208, 230, 0.08);
            padding: 1.2rem;
            border-radius: 8px;
            border-left: 3px solid var(--secondary-red);
        }

        .works-title {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 0.8rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .works-title::before {
            content: '📚';
            font-size: 1rem;
        }

        .works-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .works-list li {
            padding: 0.3rem 0;
            color: var(--text-dark);
            opacity: 0.8;
            position: relative;
            padding-left: 1rem;
        }

        .works-list li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--secondary-red);
            font-weight: bold;
        }

        .writers-categories {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin: 2rem 0 3rem;
            flex-wrap: wrap;
        }



        /* Статистика */
        .writers-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin: 3rem 0;
            padding: 2rem;
            background: var(--card-bg);
            border-radius: 12px;
            border: 1px solid rgba(0,0,0,0.08);
        }

        .stat-item {
            text-align: center;
            padding: 1.5rem;
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--text-dark);
            opacity: 0.7;
        }

        @media (max-width: 768px) {
            .writers-container {
                padding: 1rem;
            }

            .writers-hero {
                padding: 1.5rem;
            }

            .writers-hero h1 {
                font-size: 1.8rem;
            }

            .writers-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .writer-header {
                flex-direction: column;
                text-align: center;
                gap: 1rem;
            }

            .writer-avatar {
                align-self: center;
            }

            .writers-categories {
                gap: 0.5rem;
            }

            .category-btn {
                padding: 0.6rem 1.2rem;
                font-size: 0.9rem;
            }
        }

        @media (max-width: 480px) {
            .writers-hero h1 {
                font-size: 1.6rem;
            }

            .writer-card {
                padding: 1.5rem;
            }

            .writer-avatar {
                width: 60px;
                height: 60px;
                font-size: 1.4rem;
            }

            .writer-name {
                font-size: 1.2rem;
            }

            .writers-stats {
                grid-template-columns: 1fr;
                padding: 1.5rem;
            }
        }

/* Стили для страницы фильмов и музыки */
        .media-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
        }

        .media-hero {
            text-align: center;
            margin-bottom: 3rem;
            padding: 2rem;
            background: var(--card-bg);
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            border: 1px solid rgba(0,0,0,0.08);
        }

        .media-hero h1 {
            font-size: 2.2rem;
            margin-bottom: 1rem;
            font-weight: 600;
            color: var(--text-dark);
        }

        .media-hero p {
            font-size: 1.1rem;
            color: var(--text-dark);
            opacity: 0.8;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .media-section {
            margin: 4rem 0;
        }

        .section-title {
            font-size: 1.8rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--secondary-red);
            display: inline-block;
        }

        .films-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .film-card {
            background: var(--card-bg);
            border-radius: 12px;
            padding: 2rem;
            box-shadow: 0 2px 12px rgba(0,0,0,0.06);
            border: 1px solid rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .film-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }

        .film-header {
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .film-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--secondary-red);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--text-dark);
            font-weight: 600;
            flex-shrink: 0;
        }

        .film-info {
            flex: 1;
        }

        .film-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
            line-height: 1.3;
        }

        .film-meta {
            font-size: 0.9rem;
            color: var(--text-dark);
            opacity: 0.6;
            margin-bottom: 0.5rem;
        }

        .film-description {
            color: var(--text-dark);
            line-height: 1.6;
            margin-bottom: 1.5rem;
            opacity: 0.9;
        }

        .film-details {
            background: rgba(175, 208, 230, 0.08);
            padding: 1.2rem;
            border-radius: 8px;
            border-left: 3px solid var(--secondary-red);
        }

        .details-title {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 0.8rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .details-title::before {
            content: '🎬';
            font-size: 1rem;
        }

        .details-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .details-list li {
            padding: 0.3rem 0;
            color: var(--text-dark);
            opacity: 0.8;
            position: relative;
            padding-left: 1rem;
        }

        .details-list li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--secondary-red);
            font-weight: bold;
        }

        .music-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
            margin-bottom: 3rem;
        }

        .music-card {
            background: var(--card-bg);
            border-radius: 12px;
            padding: 1.5rem;
            box-shadow: 0 2px 12px rgba(0,0,0,0.06);
            border: 1px solid rgba(0,0,0,0.08);
            transition: all 0.3s ease;
        }

        .music-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .music-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .music-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--secondary-red);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: var(--text-dark);
            flex-shrink: 0;
        }

        .music-info {
            flex: 1;
        }

        .music-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 0.3rem;
        }

        .music-author {
            font-size: 0.9rem;
            color: var(--text-dark);
            opacity: 0.6;
        }

        .music-description {
            color: var(--text-dark);
            line-height: 1.5;
            font-size: 0.95rem;
            opacity: 0.8;
            margin-bottom: 1rem;
        }

        .audio-player {
            width: 100%;
            margin-top: 1rem;
            border-radius: 25px;
            background: rgba(175, 208, 230, 0.1);
        }

        .documentary-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 2rem;
        }

        .doc-card {
            background: var(--card-bg);
            border-radius: 12px;
            padding: 1.5rem;
            box-shadow: 0 2px 12px rgba(0,0,0,0.06);
            border: 1px solid rgba(0,0,0,0.08);
        }

        .doc-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 1rem;
        }

        .video-placeholder {
            background: rgba(175, 208, 230, 0.1);
            border-radius: 8px;
            height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            border: 2px dashed rgba(0,0,0,0.1);
        }

        .video-placeholder span {
            color: var(--text-dark);
            opacity: 0.5;
            font-size: 1rem;
        }

        .media-categories {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin: 2rem 0 3rem;
            flex-wrap: wrap;
        }

        .category-btn {
            background: var(--card-bg);
            border: 1px solid rgba(0,0,0,0.1);
            padding: 0.8rem 1.5rem;
            border-radius: 25px;
            color: var(--text-dark);
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .category-btn:hover,
        .category-btn.active {
            background: var(--secondary-red);
            color: var(--text-dark);
            border-color: var(--secondary-red);
        }

        .media-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin: 3rem 0;
            padding: 2rem;
            background: var(--card-bg);
            border-radius: 12px;
            border: 1px solid rgba(0,0,0,0.08);
        }

        .stat-item {
            text-align: center;
            padding: 1.5rem;
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--text-dark);
            opacity: 0.7;
        }

        @media (max-width: 768px) {
            .media-container {
                padding: 1rem;
            }

            .media-hero {
                padding: 1.5rem;
            }

            .media-hero h1 {
                font-size: 1.8rem;
            }

            .films-grid,
            .music-grid,
            .documentary-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .film-header {
                flex-direction: column;
                text-align: center;
                gap: 1rem;
            }

            .film-icon {
                align-self: center;
            }

            .media-categories {
                gap: 0.5rem;
            }

            .category-btn {
                padding: 0.6rem 1.2rem;
                font-size: 0.9rem;
            }
        }

        @media (max-width: 480px) {
            .media-hero h1 {
                font-size: 1.6rem;
            }

            .film-card,
            .music-card,
            .doc-card {
                padding: 1.5rem;
            }

            .film-icon {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }

            .music-icon {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }

            .section-title {
                font-size: 1.5rem;
            }

            .media-stats {
                grid-template-columns: 1fr;
                padding: 1.5rem;
            }
        }

/* Стили для страницы о проекте */
.project-info {
    max-width: 1000px;
    margin: 0 auto;
}

.info-section {
    margin-bottom: 50px;
    padding: 30px;
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.info-section h2 {
    color: rgb(48, 48, 48);
    margin-bottom: 20px;
    font-size: 2rem;
    border-bottom: 3px solid var(--accent-gold);
    padding-bottom: 10px;
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.goal-item {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border-left: 4px solid rgb(44, 44, 44);
}

.goal-item:hover {
    transform: translateY(-5px);
}

.goal-item h3 {
    color: black;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.importance-content {
    display: grid;
    gap: 20px;
}

.importance-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid rgb(44, 44, 44);
}

.importance-item h4 {
    color: rgb(34, 34, 34);
    margin-bottom: 10px;
}

.achievements {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 25px;
}

.achievement {
    text-align: center;
    padding: 20px;
}

.achievement-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(31, 31, 31, 0.664);
    margin-bottom: 10px;
}

.achievement-text {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.participation-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.participation-list li {
    padding: 12px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid #eee;
}

/* Стили для страницы статистики */
.additional-stats {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid var(--accent-gold);
}

.additional-stats h2 {
    text-align: center;
    color: var(--primary-red);
    margin-bottom: 30px;
    font-size: 2.2rem;
}

.additional-stats .stats-grid {
    justify-items: center;
}

/* Стили для страницы героев */
.heroes-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
        }

        .heroes-hero {
            text-align: center;
            margin-bottom: 3rem;
            padding: 2rem;
            background: var(--card-bg);
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            border: 1px solid rgba(0,0,0,0.08);
        }

        .heroes-hero h1 {
            font-size: 2.2rem;
            margin-bottom: 1rem;
            font-weight: 600;
            color: var(--text-dark);
        }

        .heroes-hero p {
            font-size: 1.1rem;
            color: var(--text-dark);
            opacity: 0.8;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .heroes-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }

        .hero-card {
            background: var(--card-bg);
            border-radius: 12px;
            padding: 2rem;
            box-shadow: 0 2px 12px rgba(0,0,0,0.06);
            border: 1px solid rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .hero-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }

        .hero-header {
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .hero-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: var(--secondary-red);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: var(--text-dark);
            font-weight: 600;
            flex-shrink: 0;
        }

        .hero-info {
            flex: 1;
        }

        .hero-name {
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
            line-height: 1.3;
        }

        .hero-years {
            font-size: 0.9rem;
            color: var(--text-dark);
            opacity: 0.6;
            margin-bottom: 0.5rem;
        }

        .hero-role {
            display: inline-block;
            background: rgba(175, 208, 230, 0.2);
            color: var(--text-dark);
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
        }

        .hero-bio {
            color: var(--text-dark);
            line-height: 1.6;
            margin-bottom: 1.5rem;
            opacity: 0.9;
        }

        .hero-feat {
            background: rgba(175, 208, 230, 0.08);
            padding: 1.2rem;
            border-radius: 8px;
            border-left: 3px solid var(--secondary-red);
            margin-bottom: 1rem;
        }

        .feat-title {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 0.8rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .feat-title::before {
            content: '⭐';
            font-size: 1rem;
        }

        .feat-description {
            color: var(--text-dark);
            line-height: 1.5;
            opacity: 0.8;
        }

        .hero-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 0.8rem;
            margin-top: 1rem;
        }

        .stat-item {
            text-align: center;
            padding: 0.8rem;
            background: rgba(175, 208, 230, 0.1);
            border-radius: 6px;
        }

        .stat-number {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--timeline-blue);
            margin-bottom: 0.3rem;
        }

        .stat-label {
            font-size: 0.8rem;
            color: var(--text-dark);
            opacity: 0.7;
        }

        .heroes-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin: 3rem 0;
            padding: 2rem;
            background: var(--card-bg);
            border-radius: 12px;
            border: 1px solid rgba(0,0,0,0.08);
        }

        .hero-stat-item {
            text-align: center;
            padding: 1.5rem;
        }

        .hero-stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
        }

        .hero-stat-label {
            font-size: 0.9rem;
            color: var(--text-dark);
            opacity: 0.7;
        }

        @media (max-width: 768px) {
            .heroes-container {
                padding: 1rem;
            }

            .heroes-hero {
                padding: 1.5rem;
            }

            .heroes-hero h1 {
                font-size: 1.8rem;
            }

            .heroes-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .hero-header {
                flex-direction: column;
                text-align: center;
                gap: 1rem;
            }

            .hero-avatar {
                align-self: center;
            }

            .heroes-categories {
                gap: 0.5rem;
            }

            .category-btn {
                padding: 0.6rem 1.2rem;
                font-size: 0.9rem;
            }

            .hero-stats {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .heroes-hero h1 {
                font-size: 1.6rem;
            }

            .hero-card {
                padding: 1.5rem;
            }

            .hero-avatar {
                width: 60px;
                height: 60px;
                font-size: 1.4rem;
            }

            .hero-name {
                font-size: 1.2rem;
            }

            .heroes-stats {
                grid-template-columns: 1fr;
                padding: 1.5rem;
            }
        }

/* Стили для страницы памяти */
.memory-content h2 {
    color: #a6afb8;
    margin: 30px 0 15px;
    font-size: 2rem;
    font-weight: 700;
}

.memory-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.memory-item {
    margin: 30px 0;
    overflow: hidden;
}

.memory-item img {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.memory-content ul {
    margin: 20px 0;
    padding-left: 20px;
}

.memory-content li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.modal {
    backdrop-filter: blur(10px);
}

.modal-content {
    background: linear-gradient(145deg, var(--card-bg), #f8f9fa);
    border: none;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    border-radius: 20px;
    overflow: hidden;
}

.close-modal {
    background: var(--primary-red) !important;
    color: white !important;
    border-radius: 50% !important;
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
}

.close-modal:hover {
    background: var(--hover-red) !important;
    transform: scale(1.1) !important;
}

@media (max-width: 768px) {
    .header h1 {
        font-size: 2.5rem;
    }
    
    .header p {
        font-size: 1.2rem;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--dark-bg);
        padding: 20px;
        gap: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 15px 20px;
        text-align: center;
        border-radius: 10px;
    }

    .mobile-menu {
        display: block;
    }

    .hero {
        height: 400px;
        margin-bottom: 40px;
    }

    .hero h2 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .timeline {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gallery-grid-modern {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .timeline-year {
        font-size: 2.2rem;
    }

    .page-content {
        padding: 30px 20px;
    }

    .page-title {
        font-size: 2.2rem;
    }

    .war-timeline-item {
        flex-direction: column;
    }
    
    .war-year {
        min-width: 100%;
        padding: 20px;
    }
    
    .goals-grid {
        grid-template-columns: 1fr;
    }
    
    .achievements {
        flex-direction: column;
        align-items: center;
    }
    
    .modal-gallery-content {
        max-width: 95%;
        max-height: 95%;
    }
    
    .modal-gallery-nav {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .modal-gallery-title {
        font-size: 1.5rem;
    }
    
    .modal-gallery-description {
        font-size: 1rem;
    }

    .symbols-grid {
        grid-template-columns: 1fr;
    }
    
    .writers-grid {
        grid-template-columns: 1fr;
    }
    
    .media-grid {
        grid-template-columns: 1fr;
    }
    
    .music-grid {
        grid-template-columns: 1fr;
    }
    
    .memory-item img {
        float: none !important;
        margin: 0 auto 20px !important;
        display: block;
        max-width: 100% !important;
    }

    .gallery-grid-modern {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gallery-filters {
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .active-filter-indicator {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .gallery-content {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .header h1 {
        font-size: 2rem;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .heroes-grid {
        grid-template-columns: 1fr;
    }

    .year-badge {
        min-width: 100px;
        padding: 15px 20px;
        font-size: 1rem;
    }

    .gallery-image {
        height: 200px;
    }
    
    .gallery-content h3 {
        font-size: 1.2rem;
    }
    
    .filter-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}

@media (max-width: 1200px) {
    .symbols-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}