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

body{
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
}

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

.choices{
    margin-bottom: 30px;
}

.choices button{
    font-size: 3.5em;
    margin: 15px;
    border-radius: 50%;
    background-color: #fff;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.3s ease;

}

.choices button:hover{
    transform: scale(1.1);
    background-color: #e0e0e0;
}

.scoreboard{
    display: flex;
    gap:40px;
    font-size: 1em;
    margin: 20px 0;
}

#playerDisplay,#computerDisplay{
    font-size: 1.8em;

}

#resultDisplay{
    font-size: 2em;
    margin-top: 20px;
    background: rgba(255,255,255,0.1);
    padding: 10px 20px;
    border-radius: 12px;
    animation: fadeIn 0.5s ease;
}
.scoreDisplay{
    font-size: 1.5em;

}

.greenText {
    color: #5ce761;
}

.redText{
    color: #f84940;
}

@keyframes fadeIn{
    form{opacity: 0; transform: scale(0.9);}
    to{opacity: 1; transform: scale(1);}
}