#game-container {
    width: 400px;
    height: 500px;
    background-color: #f39c12;
    display: flex;
    justify-content: center;
    align-items: center;
}

#arena {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    height: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.hand {
    font-size: 80px;
    background: white;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

#player-options {
    display: flex;
    gap: 20px;
}

.rps-btn {
    font-size: 50px;
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    background: white;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.1s;
}

.rps-btn:active {
    transform: scale(0.9);
}

#result-text {
    font-size: 40px;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

#hud-score {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0,0,0,0.5);
    padding: 5px 10px;
    border-radius: 5px;
}
