/* تنظیمات کلی صفحه */
body{
    margin:0;
    padding:0;
    background:#111827;
    font-family:Tahoma, sans-serif;
    text-align:center;
    color:white;
}

/* عنوان */
h1{
    margin-top:20px;
    color:#3b82f6;
}

/* امتیاز */
#score{
    font-size:24px;
    margin:15px;
    font-weight:bold;
}

/* زمین بازی */
canvas{
    background:#444;
    border:5px solid #3b82f6;
    border-radius:10px;
    display:block;
    margin:20px auto;
}

/* دکمه‌ها */
button{
    padding:12px 25px;
    margin:10px;
    font-size:18px;
    cursor:pointer;
    border:none;
    border-radius:10px;
    background:#2563eb;
    color:white;
    transition:0.3s;
}

button:hover{
    background:#1d4ed8;
    transform:scale(1.05);
}

/* دکمه هنگام کلیک */
button:active{
    transform:scale(0.95);
}

/* نسخه موبایل */
@media (max-width:500px){

    canvas{
        width:95%;
        height:auto;
    }

    button{
        width:90%;
        margin:8px auto;
        display:block;
    }

}