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

body {
    background: #0a0a14;
    color: #e0e0e0;
    font-family: 'Consolas', 'Courier New', monospace;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

#game-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

#top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 800px;
}

#top-bar h1 {
    color: #e94560;
    font-size: 1.4rem;
}

#minimap-container {
    border: 2px solid #333;
    border-radius: 4px;
    overflow: hidden;
    line-height: 0;
}

#minimap {
    display: block;
    background: #111;
}

#game-canvas {
    display: block;
    border: 2px solid #1a1a3e;
    border-radius: 6px;
    cursor: crosshair;
}

#game-log {
    color: #666;
    font-size: 0.85rem;
    margin-top: 8px;
    height: 1.2em;
}
