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

body {
    background-color: #4285F4;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-family: 'Fredoka One', 'Comic Sans MS', cursive;
}

.game-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

#gameCanvas {
    display: block;
    max-width: 100%;
    height: auto;
}
