@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

body{
    font-family: 'Roboto', sans-serif;
    /* background: linear-gradient(135deg, #f6d365, #fda085); */
    background: linear-gradient(135deg, #6a65f6, #fda085);
    min-height: 100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
}

.container{
    background: rgba(0,0,0,0.1);
    padding: 40px;
    border-radius: 20px;
    text-align:center;
    width: 350px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

h1{ font-size:26px; margin-bottom:10px; }

button{
    padding:12px 18px;
    font-size:16px;
    margin:10px;
    cursor:pointer;
    border:none;
    border-radius:10px;
    font-weight:bold;
    transition: all 0.3s;
}

.choice{
    background:#ff6b81;
    color:#fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.choice:hover{
    transform: translateY(-2px);
    background:#ff4757;
}

.result{
    font-size:20px;
    font-weight:bold;
    margin-top:20px;
    min-height:28px;
}

.scoreboard{
    margin-top:20px;
    text-align:left;
}

.restart-btn{
    width:100%;
    background:#1dd1a1;
    margin-top:20px;
}

.restart-btn:hover{
    background:#10ac84;
}