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

body {
    background-color: #1a1a2e; /* ダークブルーの背景 */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: white;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
}

#gameCanvas {
    background-color: #87CEEB; /* 綺麗な空色 */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-radius: 8px; /* 角丸でプレミアムな印象 */
    border: 4px solid #fff; /* 白い枠線 */
    display: block;
}
