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

body {
    background-color: #050505;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

#game-container {
    width: 100%;
    height: 100%;
    max-width: 800px;
    max-height: 1200px;
    box-shadow: 0 0 50px rgba(0, 150, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

canvas {
    display: block;
}
