* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    background: #1a1a2e;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
}
#game-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(255, 183, 77, 0.3);
}
