
        /* Убираем подчеркивание у ссылок */
        a {
            text-decoration: none;
            color: inherit;
        }


        /* Обновленные классы футера */
        .new-footer-container {
            width: 100vw;
            height: 100vh;
            background-color: black;
            color: white;
            border: none;
            border-radius: 0;
            padding: 40px;
            display: flex;
            flex-direction: column-reverse; /* Изменено */
            justify-content: space-evenly; /* Изменено */
            text-align: left;
            position: relative;
        }
        

        .footer-links {
    display: flex
;
    gap: 20px;}
        .new-footer-top {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .new-footer-brand {
            grid-column: 1 / 2;
        }

        .new-footer-logo {
            font-size: 2.5rem;
            font-weight: bold;
            letter-spacing: -1px;
            margin-bottom: 10px;
        }
        
        .new-footer-slogan {
            font-size: 1.1rem;
            line-height: 1.4;
        }

        .new-footer-services,
        .new-footer-cities,
        .new-footer-contacts {
            grid-column: span 1;
        }
        
        .new-footer-title {
            font-size: 1.3rem;
            font-weight: 500;
            margin-bottom: 15px;
        }
        
        .new-footer-top ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .new-footer-top ul li {
            margin-bottom: 10px;
            font-size: 1.1rem;
        }

        .new-footer-top ul li a {
            position: relative;
            display: inline-block;
            transition: color 0.3s ease;
        }
        
        .new-footer-top ul li a:hover {
            color: #ccc;
        }

        /* Вау-эффект: анимация подчеркивания */
        .new-footer-top ul li a::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -5px;
            width: 0;
            height: 2px;
            background-color: white;
            transition: width 0.3s ease;
        }
        
        .new-footer-top ul li a:hover::after {
            width: 100%;
        }

        /* Классы для игры и соцсетей не менялись */
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 10px;
        }

        .social-icon {
            display: inline-block;
            width: 30px;
            height: 30px;
            transition: transform 0.3s ease;
        }
        
        /* Иконки для соцсетей (вернули оригинальные) */
        .social-icon.wa-icon {
            background-image: url('https://upload.wikimedia.org/wikipedia/commons/6/6b/WhatsApp.svg');
            background-size: contain;
        }
        .social-icon.tg-icon {
            background-image: url('https://upload.wikimedia.org/wikipedia/commons/8/82/Telegram_logo.svg');
            background-size: contain;
        }
        .social-icon.vk-icon {
            background-image: url('https://upload.wikimedia.org/wikipedia/commons/2/21/VK.com-logo.svg');
            background-size: contain;
        }
        
        .social-icon:hover {
            transform: scale(1.1);
        }

        /* Новый стиль для блока с важными ссылками */
        .new-footer-legal {
            background-color: white;
            color: black;
            padding: 20px 40px;
            border-radius: 30px;
            /* margin-bottom: 40px; */
            display: flex;
            justify-content: flex-end;
            align-items: center;
            flex-wrap: wrap;
            font-size: 1.1rem;
        }
        .copyright {
            opacity: 0.5;
            text-align: center;
        }
        
        .new-footer-legal a {
            color: black;
            /* font-size: 1.3rem; */
            transition: opacity 0.3s ease;
        }

        .new-footer-legal a:hover {
            opacity: 0.7;
        }

        /* Стили для игры */
        .game-container {
            display: flex;
            justify-content: center;
            align-items: center;
            grid-column: 2 / 4;
            grid-row: 1 / 3;
            max-width: 100%;
            max-height: 100%;
            overflow: hidden;
            position: relative;
        }

        #game-canvas {
            background-color: black;
            border: 2px solid white;
            border-radius: 10px;
            cursor: pointer;
            width: 100%;
            height: auto;
            max-width: 400px;
            max-height: 300px;
        }

        /* Адаптация для мобильных устройств */
        @media (max-width: 768px) {
            .new-footer-container {
                padding: 20px;
            }

            .new-footer-top {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .new-footer-logo {
                font-size: 2rem;
            }
            
            .new-footer-title {
                font-size: 1.2rem;
            }
            
            .new-footer-slogan, .new-footer-top ul li {
                font-size: 1rem;
            }

            /* Адаптивные стили для блока с важными ссылками */
            .new-footer-legal {
                flex-direction: column-reverse;
                align-items: flex-start;
                gap: 15px;
                padding: 20px;
                font-size: 1rem;
                    margin-bottom: 40px;
    margin-top: 40px;
            }
            .footer-links {
                    flex-direction: column-reverse;
            }

            .new-footer-legal a {
                font-size: 1.1rem;
            }
            
            .game-container {
                grid-column: 1 / 2;
                grid-row: auto;
            }

            .copyright {
                    font-size: 0.8rem;
    text-align: center;
    margin-bottom: 33px;
    opacity: 0.7;
            }

        }