@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: radial-gradient(circle at 20% 30%, #0a0f1e, #03050b);
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Space Grotesk', monospace;
}

#game-container {
    position: relative;
    border: none;
    box-shadow: 0 25px 45px rgba(0,0,0,0.5), 0 0 0 2px rgba(168, 85, 247, 0.2), 0 0 0 6px rgba(0,0,0,0.3);
    border-radius: 28px;
    overflow: hidden;
    transition: transform 0.2s ease;
}

#game-container:hover {
    transform: scale(1.01);
}

canvas {
    display: block;
    border-radius: 24px;
}
#game-container {
    width: 100%;
    max-width: 800px;
    height: auto;
    aspect-ratio: 800 / 600; 
}