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

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    color: #fff;
    padding: 10px;
}

.game-container {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 100vw;
}

h1 {
    margin-bottom: 10px;
    font-size: 2em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

#gameCanvas {
    border: 3px solid #fff;
    border-radius: 10px;
    background: #87CEEB;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    width: 100%;
    height: auto;
}

.controls {
    margin-top: 10px;
    font-size: 0.9em;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.controls p {
    margin: 5px 0;
}
