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

        body {
            font-family: 'Open Sans', sans-serif;
            color: #e0d9c0;
            height: 100vh;
            overflow: hidden;
            position: relative;
        }

        body::before {
            content: "";
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('img/b/buero.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            filter: brightness(0.9) contrast(1.1);
            z-index: -2;
        }

        body::after {
            content: "";
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(10,14,26,0.15) 0%, rgba(10,14,26,0.1) 100%);
            z-index: -1;
        }

        .app {
            display: flex;
            height: 100vh;
            flex-direction: column;
            position: relative;
            z-index: 1;
        }

        .header {
            background: rgba(5, 7, 15, 0.7);
            backdrop-filter: blur(8px);
            border-bottom: 1px solid rgba(212, 175, 55, 0.3);
            padding: 0.8rem 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .logo-small {
            font-family: 'Cinzel', serif;
            font-size: 1.2rem;
            color: #d4af37;
        }

        .player-stats {
            display: flex;
            gap: 1.5rem;
        }

        .stat {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(0, 0, 0, 0.4);
            padding: 0.4rem 1rem;
            border-radius: 20px;
        }

        .stat-value {
            font-weight: bold;
            color: #d4af37;
        }

        .guest-badge {
            background: rgba(212, 175, 55, 0.2);
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            cursor: pointer;
        }

        .main-content {
            flex: 1;
            display: flex;
            overflow: hidden;
            padding: 1rem;
            gap: 1rem;
        }

        .ships-panel {
            width: 320px;
            background: rgba(10, 14, 26, 0.55);
            backdrop-filter: blur(8px);
            border-radius: 16px;
            border: 1px solid rgba(212, 175, 55, 0.2);
            display: flex;
            flex-direction: column;
            overflow-y: auto;
            padding: 1rem;
        }

        .panel-title {
            font-family: 'Cinzel', serif;
            color: #d4af37;
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }

        .ship-card {
            background: rgba(0, 0, 0, 0.35);
            border-radius: 12px;
            padding: 1rem;
            margin-bottom: 1rem;
            cursor: pointer;
            transition: all 0.3s;
            border: 1px solid rgba(212, 175, 55, 0.2);
        }

        .ship-card:hover {
            background: rgba(212, 175, 55, 0.15);
            transform: translateX(5px);
        }

        .ship-card.active {
            border-color: #d4af37;
            background: rgba(212, 175, 55, 0.2);
        }

        .ship-name {
            font-weight: bold;
            font-size: 1.1rem;
        }

        .ship-location {
            display: flex;
            justify-content: space-between;
            font-size: 0.8rem;
            margin: 0.5rem 0;
        }

        .ship-cargo {
            background: rgba(0, 0, 0, 0.3);
            border-radius: 6px;
            padding: 0.5rem;
            font-size: 0.8rem;
        }

        .cargo-items {
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem;
            margin-top: 0.3rem;
        }

        .cargo-item {
            background: rgba(212, 175, 55, 0.2);
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.2s;
        }

        .cargo-item:hover {
            background: rgba(212, 175, 55, 0.4);
            transform: scale(1.05);
        }

        .capacity-bar {
            height: 4px;
            background: rgba(255,255,255,0.2);
            border-radius: 2px;
            margin-top: 0.5rem;
            overflow: hidden;
        }

        .capacity-fill {
            height: 100%;
            background: #d4af37;
            width: 0%;
        }

        .small-btn {
            padding: 0.2rem 0.5rem;
            font-size: 0.7rem;
            background: rgba(212, 175, 55, 0.3);
            color: #d4af37;
            border: none;
            border-radius: 4px;
            cursor: pointer;
        }

        .city-panel {
            flex: 1;
            display: flex;
            flex-direction: column;
            overflow-y: auto;
            background: rgba(10, 14, 26, 0.55);
            backdrop-filter: blur(8px);
            border-radius: 16px;
            border: 1px solid rgba(212, 175, 55, 0.2);
            padding: 1.5rem;
        }

        .city-header {
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(0, 0, 0, 0.25));
            border-radius: 12px;
            padding: 1rem;
            margin-bottom: 1.5rem;
        }

        .city-title {
            font-family: 'Cinzel', serif;
            font-size: 1.8rem;
            color: #d4af37;
        }

        .market-table {
            background: rgba(0, 0, 0, 0.35);
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 1.5rem;
        }

        .market-header {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            background: rgba(212, 175, 55, 0.15);
            padding: 0.8rem 1rem;
            font-weight: bold;
            color: #d4af37;
        }

        .market-row {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            padding: 0.8rem 1rem;
            border-bottom: 1px solid rgba(212, 175, 55, 0.1);
            cursor: pointer;
            transition: background 0.2s;
        }

        .market-row:hover {
            background: rgba(212, 175, 55, 0.1);
        }

        .price-buy { color: #4caf50; }
        .price-sell { color: #ff9800; }

        .warehouse-panel {
            background: rgba(0, 0, 0, 0.35);
            border-radius: 12px;
            padding: 1rem;
        }

        .warehouse-goods {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            margin-top: 0.5rem;
        }

        .warehouse-item {
            background: rgba(0, 0, 0, 0.5);
            padding: 0.5rem 1rem;
            border-radius: 8px;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            cursor: pointer;
            transition: all 0.2s;
        }

        .warehouse-item:hover {
            background: rgba(212, 175, 55, 0.3);
            transform: scale(1.02);
        }

        .notifications {
            position: fixed;
            top: 80px;
            right: 1rem;
            width: 300px;
            z-index: 1000;
        }

        .notification {
            background: rgba(0, 0, 0, 0.9);
            border-left: 4px solid #d4af37;
            padding: 0.8rem;
            margin-bottom: 0.5rem;
            border-radius: 6px;
            animation: slideIn 0.3s ease;
        }
        .fullscreen-btn {
            cursor: pointer;
            transition: all 0.3s;
        }

        .fullscreen-btn:hover {
            background: rgba(212, 175, 55, 0.3);
            transform: scale(1.05);
        }
        .nav-buttons {
            display: flex;
            gap: 0.5rem;
            margin-left: 1rem;
        }

        .nav-btn {
            background: rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(212, 175, 55, 0.3);
            color: #d4af37;
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s;
            font-family: 'Cinzel', serif;
        }

        .nav-btn:hover {
            background: rgba(212, 175, 55, 0.2);
            border-color: #d4af37;
            transform: translateY(-2px);
        }
        @keyframes slideIn {
            from { transform: translateX(100%); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }

        @media (max-width: 768px) {
            .ships-panel { width: 260px; }
            .market-header, .market-row { font-size: 0.75rem; }
            .city-title { font-size: 1.2rem; }
            .header {
                flex-wrap: wrap;
            }
            .nav-buttons {
                order: 2;
                width: 100%;
                justify-content: center;
                margin: 0.5rem 0;
            }
            .player-stats {
                order: 1;
            }
        }
