body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            line-height: 1.6;
            background-color: #121212;
            color: #e0e0e0;
            margin: 2rem;
        }
        .game-wrapper {
            display: flex;
            gap: 2rem;
            max-width: 1440px;
            margin: 0 auto;
        }
        .container {
            background: #1e1e1e;
            border: 1px solid #333;
            border-radius: 8px;
            padding: 1.5rem;
            flex: 1;
        }
        #inventory-panel {
            background: #1e1e1e;
            border: 1px solid #333;
            border-radius: 8px;
            padding: 1.5rem;
            width: 200px;
        }
        #inventory-panel h2 {
            color: #bb86fc;
            text-align: center;
            margin-bottom: 1.5rem;
            margin-top: 0;
        }
        #inventory-panel ul {
            list-style: none;
            padding: 0;
            margin: 0;
            color: #aaa;
        }
        #inventory-panel li {
            margin-bottom: 0.5rem;
        }
        #map-container {
            background: #1e1e1e;
            border: 1px solid #333;
            border-radius: 8px;
            padding: 1.5rem;
            width: 200px;
            height: 200px;
        }
        #map {
            width: 100%;
            height: 100%;
        }
        h1 {
            color: #bb86fc;
            text-align: center;
            margin-bottom: 1.5rem;
        }
        p {
            margin-bottom: 1.5rem;
        }
        .message {
            padding: 0.75rem;
            border-radius: 4px;
            border: 1px solid;
        }
        .message.error {
            color: #cf6679;
            background: #332222;
            border-color: #553333;
        }
        .message.success {
            color: #66cf79;
            background: #223322;
            border-color: #335533;
        }
        .prompt, .commands, .inventory {
            margin-top: 1.5rem;
        }
        .commands p, .inventory p {
            margin-bottom: 0.5rem;
            color: #aaa;
        }
        .commands ul, .inventory ul {
            list-style: none;
            padding: 0;
            margin: 0;
            color: #aaa;
        }
        .commands li, .inventory li {
            display: inline;
        }
        .commands li:not(:last-child)::after, .inventory li:not(:last-child)::after {
            content: ", ";
        }
        input[type="text"] {
            width: 100%;
            background-color: #333;
            color: #e0e0e0;
            border: 1px solid #555;
            border-radius: 4px;
            padding: 0.75rem;
            font-size: 1rem;
            box-sizing: border-box;
        }
        input[type="text"]:focus {
            outline: none;
            border-color: #bb86fc;
        }
        .commands a {
            color: #bb86fc;
            text-decoration: none;
        }
        .commands a:hover {
            text-decoration: underline;
        }