*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial,Helvetica,sans-serif;
}

body{
    background:linear-gradient(135deg,#6a11cb,#2575fc);
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
}

.container{
    width:95%;
    max-width:700px;
    background:#fff;
    border-radius:25px;
    padding:25px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.3);
}

h1{
    color:#2575fc;
    margin-bottom:10px;
}

.top-bar{
    display:flex;
    justify-content:space-between;
    margin:20px 0;
    font-size:20px;
    font-weight:bold;
}

#gameArea{
    position:relative;
    width:100%;
    height:400px;
    background:#eef5ff;
    border:3px solid #2575fc;
    border-radius:20px;
    overflow:hidden;
}

#dot{
    position:absolute;
    width:50px;
    height:50px;
    background:#00cc44;
    border-radius:50%;
    display:none;
    cursor:pointer;
}

#startBtn{
    margin-top:20px;
    padding:15px 35px;
    border:none;
    border-radius:50px;
    background:linear-gradient(45deg,cyan,magenta);
    font-size:18px;
    font-weight:bold;
    cursor:pointer;
}

#result{
    margin-top:20px;
    color:#2575fc;
}
