        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            background: #1a1a1a;
            color: #c0c0c0;
            font-family: 'Arial', sans-serif;
            height: 100vh;
            display: flex;
            flex-direction: column;
        }

        /* Верхняя панель */
        .top-bar {
            background: #2d2d2d;
            padding: 10px;
            border-bottom: 2px solid #4a4a4a;
            display: flex;
            justify-content: space-between;
        }

        /* Карта */
        .game-map {
            flex: 1;
            position: relative;
            overflow: hidden;
            background: #121212;
        }

        .map-object {
            position: absolute;
            transition: all 0.3s;
        }

        /* Нижняя панель */
        .bottom-nav {
            background: #2d2d2d;
            padding: 10px;
            border-top: 2px solid #4a4a4a;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 5px;
        }

        .nav-button {
            background: #3d3d3d;
            border: 1px solid #5a5a5a;
            color: #c0c0c0;
            padding: 8px;
            cursor: pointer;
        }

        /* Адаптация под мобильные */
        @media (max-width: 768px) {
            .bottom-nav {
                grid-template-columns: repeat(3, 1fr);
            }
        }